1
Fork 0

Add some JSDoc comments to rustdoc JS

This follows the Closure Compiler dialect of JSDoc, so we
can use it to do some basic type checking. We don't plan to
compile with Closure Compiler, just use it to check types. See
https://github.com/google/closure-compiler/wiki/ for details.
This commit is contained in:
Jacob Hoffman-Andrews 2021-12-16 21:17:22 -08:00
parent e100ec5bc7
commit 7ba086c6db
5 changed files with 170 additions and 30 deletions

View file

@ -0,0 +1,15 @@
# Rustdoc JS
These JavaScript files are incorporated into the rustdoc binary at build time,
and are minified and written to the filesystem as part of the doc build process.
We use the [Closure Compiler](https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler)
dialect of JSDoc to comment our code and annotate params and return types.
To run a check:
./x.py doc library/std
npm i -g google-closure-compiler
google-closure-compiler -W VERBOSE \
build/<YOUR PLATFORM>/doc/{search-index*.js,crates*.js} \
src/librustdoc/html/static/js/{search.js,main.js,storage.js} \
--externs src/librustdoc/html/static/js/externs.js >/dev/null

View file

@ -0,0 +1,32 @@
// This file contains type definitions that are processed by the Closure Compiler but are
// not put into the JavaScript we include as part of the documentation. It is used for
// type checking. See README.md in this directory for more info.
/* eslint-disable */
var searchState;
function initSearch(searchIndex){}
/**
* @typedef {{
* raw: string,
* query: string,
* type: string,
* id: string,
* }}
*/
var ParsedQuery;
/**
* @typedef {{
* crate: string,
* desc: string,
* id: number,
* name: string,
* normalizedName: string,
* parent: (Object|null|undefined),
* path: string,
* ty: (Number|null|number),
* type: (Array<?>|null)
* }}
*/
var Row;

View file

@ -420,6 +420,13 @@ function hideThemeButtonState() {
return document.getElementById("help"); return document.getElementById("help");
} }
/**
* Show the help popup.
*
* @param {boolean} display - Whether to show or hide the popup
* @param {Event} ev - The event that triggered this call
* @param {Element} [help] - The help element if it already exists
*/
function displayHelp(display, ev, help) { function displayHelp(display, ev, help) {
if (display) { if (display) {
help = help ? help : getHelpElement(true); help = help ? help : getHelpElement(true);

View file

@ -113,7 +113,15 @@ window.initSearch = function(rawSearchIndex) {
var INPUTS_DATA = 0; var INPUTS_DATA = 0;
var OUTPUT_DATA = 1; var OUTPUT_DATA = 1;
var NO_TYPE_FILTER = -1; var NO_TYPE_FILTER = -1;
var currentResults, index, searchIndex; /**
* @type {Array<Row>}
*/
var searchIndex;
/**
* @type {Array<string>}
*/
var searchWords;
var currentResults;
var ALIASES = {}; var ALIASES = {};
var params = searchState.getQueryStringParams(); var params = searchState.getQueryStringParams();
@ -126,12 +134,15 @@ window.initSearch = function(rawSearchIndex) {
} }
/** /**
* Executes the query and builds an index of results * Executes the query and returns a list of results for each results tab.
* @param {[Object]} query [The user query] * @param {Object} query - The user query
* @param {[type]} searchWords [The list of search words to query * @param {Array<string>} searchWords - The list of search words to query against
* against] * @param {string} [filterCrates] - Crate to search in
* @param {[type]} filterCrates [Crate to search in if defined] * @return {{
* @return {[type]} [A search index of results] * in_args: Array<?>,
* returned: Array<?>,
* others: Array<?>
* }}
*/ */
function execQuery(query, searchWords, filterCrates) { function execQuery(query, searchWords, filterCrates) {
function itemTypeFromName(typename) { function itemTypeFromName(typename) {
@ -847,11 +858,11 @@ window.initSearch = function(rawSearchIndex) {
* This could be written functionally, but I wanted to minimise * This could be written functionally, but I wanted to minimise
* functions on stack. * functions on stack.
* *
* @param {[string]} name [The name of the result] * @param {string} name - The name of the result
* @param {[string]} path [The path of the result] * @param {string} path - The path of the result
* @param {[string]} keys [The keys to be used (["file", "open"])] * @param {string} keys - The keys to be used (["file", "open"])
* @param {[object]} parent [The parent of the result] * @param {Object} parent - The parent of the result
* @return {boolean} [Whether the result is valid or not] * @return {boolean} - Whether the result is valid or not
*/ */
function validateResult(name, path, keys, parent) { function validateResult(name, path, keys, parent) {
for (var i = 0, len = keys.length; i < len; ++i) { for (var i = 0, len = keys.length; i < len; ++i) {
@ -872,8 +883,14 @@ window.initSearch = function(rawSearchIndex) {
return true; return true;
} }
/**
* Parse a string into a query object.
*
* @param {string} raw - The text that the user typed.
* @returns {ParsedQuery}
*/
function getQuery(raw) { function getQuery(raw) {
var matches, type, query; var matches, type = "", query;
query = raw; query = raw;
matches = query.match(/^(fn|mod|struct|enum|trait|type|const|macro)\s*:\s*/i); matches = query.match(/^(fn|mod|struct|enum|trait|type|const|macro)\s*:\s*/i);
@ -974,6 +991,12 @@ window.initSearch = function(rawSearchIndex) {
return tmp; return tmp;
} }
/**
* Render a set of search results for a single tab.
* @param {Array<?>} array - The search results for this tab
* @param {ParsedQuery} query
* @param {boolean} display - True if this is the active tab
*/
function addTab(array, query, display) { function addTab(array, query, display) {
var extraClass = ""; var extraClass = "";
if (display === true) { if (display === true) {
@ -1083,7 +1106,7 @@ window.initSearch = function(rawSearchIndex) {
currentResults = query.id; currentResults = query.id;
var ret_others = addTab(results.others, query); var ret_others = addTab(results.others, query, true);
var ret_in_args = addTab(results.in_args, query, false); var ret_in_args = addTab(results.in_args, query, false);
var ret_returned = addTab(results.returned, query, false); var ret_returned = addTab(results.returned, query, false);
@ -1253,6 +1276,12 @@ window.initSearch = function(rawSearchIndex) {
return undefined; return undefined;
} }
/**
* Perform a search based on the current state of the search input element
* and display the results.
* @param {Event} [e] - The event that triggered this search, if any
* @param {boolean} [forced]
*/
function search(e, forced) { function search(e, forced) {
var params = searchState.getQueryStringParams(); var params = searchState.getQueryStringParams();
var query = getQuery(searchState.input.value.trim()); var query = getQuery(searchState.input.value.trim());
@ -1287,11 +1316,14 @@ window.initSearch = function(rawSearchIndex) {
} }
var filterCrates = getFilterCrates(); var filterCrates = getFilterCrates();
showResults(execSearch(query, index, filterCrates), params.go_to_first); showResults(execSearch(query, searchWords, filterCrates), params["go_to_first"]);
} }
function buildIndex(rawSearchIndex) { function buildIndex(rawSearchIndex) {
searchIndex = []; searchIndex = [];
/**
* @type {Array<string>}
*/
var searchWords = []; var searchWords = [];
var i, word; var i, word;
var currentIndex = 0; var currentIndex = 0;
@ -1304,6 +1336,38 @@ window.initSearch = function(rawSearchIndex) {
var crateSize = 0; var crateSize = 0;
/**
* The raw search data for a given crate. `n`, `t`, `d`, and `q`, `i`, and `f`
* are arrays with the same length. n[i] contains the name of an item.
* t[i] contains the type of that item (as a small integer that represents an
* offset in `itemTypes`). d[i] contains the description of that item.
*
* q[i] contains the full path of the item, or an empty string indicating
* "same as q[i-1]".
*
* i[i], f[i] are a mystery.
*
* `a` defines aliases with an Array of pairs: [name, offset], where `offset`
* points into the n/t/d/q/i/f arrays.
*
* `doc` contains the description of the crate.
*
* `p` is a mystery and isn't the same length as n/t/d/q/i/f.
*
* @type {{
* doc: string,
* a: Object,
* n: Array<string>,
* t: Array<Number>,
* d: Array<string>,
* q: Array<string>,
* i: Array<Number>,
* f: Array<Array<?>>,
* p: Array<Object>,
* }}
*/
var crateCorpus = rawSearchIndex[crate];
searchWords.push(crate); searchWords.push(crate);
// This object should have exactly the same set of fields as the "row" // This object should have exactly the same set of fields as the "row"
// object defined below. Your JavaScript runtime will thank you. // object defined below. Your JavaScript runtime will thank you.
@ -1313,7 +1377,7 @@ window.initSearch = function(rawSearchIndex) {
ty: 1, // == ExternCrate ty: 1, // == ExternCrate
name: crate, name: crate,
path: "", path: "",
desc: rawSearchIndex[crate].doc, desc: crateCorpus.doc,
parent: undefined, parent: undefined,
type: null, type: null,
id: id, id: id,
@ -1324,23 +1388,23 @@ window.initSearch = function(rawSearchIndex) {
currentIndex += 1; currentIndex += 1;
// an array of (Number) item types // an array of (Number) item types
var itemTypes = rawSearchIndex[crate].t; var itemTypes = crateCorpus.t;
// an array of (String) item names // an array of (String) item names
var itemNames = rawSearchIndex[crate].n; var itemNames = crateCorpus.n;
// an array of (String) full paths (or empty string for previous path) // an array of (String) full paths (or empty string for previous path)
var itemPaths = rawSearchIndex[crate].q; var itemPaths = crateCorpus.q;
// an array of (String) descriptions // an array of (String) descriptions
var itemDescs = rawSearchIndex[crate].d; var itemDescs = crateCorpus.d;
// an array of (Number) the parent path index + 1 to `paths`, or 0 if none // an array of (Number) the parent path index + 1 to `paths`, or 0 if none
var itemParentIdxs = rawSearchIndex[crate].i; var itemParentIdxs = crateCorpus.i;
// an array of (Object | null) the type of the function, if any // an array of (Object | null) the type of the function, if any
var itemFunctionSearchTypes = rawSearchIndex[crate].f; var itemFunctionSearchTypes = crateCorpus.f;
// an array of [(Number) item type, // an array of [(Number) item type,
// (String) name] // (String) name]
var paths = rawSearchIndex[crate].p; var paths = crateCorpus.p;
// an array of [(String) alias name // an array of [(String) alias name
// [Number] index to items] // [Number] index to items]
var aliases = rawSearchIndex[crate].a; var aliases = crateCorpus.a;
// convert `rawPaths` entries into object form // convert `rawPaths` entries into object form
var len = paths.length; var len = paths.length;
@ -1406,6 +1470,16 @@ window.initSearch = function(rawSearchIndex) {
return searchWords; return searchWords;
} }
/**
* Callback for when the search form is submitted.
* @param {Event} [e] - The event that triggered this call, if any
*/
function onSearchSubmit(e) {
e.preventDefault();
searchState.clearInputTimeout();
search();
}
function registerSearchEvents() { function registerSearchEvents() {
var searchAfter500ms = function() { var searchAfter500ms = function() {
searchState.clearInputTimeout(); searchState.clearInputTimeout();
@ -1421,11 +1495,7 @@ window.initSearch = function(rawSearchIndex) {
}; };
searchState.input.onkeyup = searchAfter500ms; searchState.input.onkeyup = searchAfter500ms;
searchState.input.oninput = searchAfter500ms; searchState.input.oninput = searchAfter500ms;
document.getElementsByClassName("search-form")[0].onsubmit = function(e) { document.getElementsByClassName("search-form")[0].onsubmit = onSearchSubmit;
e.preventDefault();
searchState.clearInputTimeout();
search();
};
searchState.input.onchange = function(e) { searchState.input.onchange = function(e) {
if (e.target !== document.activeElement) { if (e.target !== document.activeElement) {
// To prevent doing anything when it's from a blur event. // To prevent doing anything when it's from a blur event.
@ -1546,7 +1616,7 @@ window.initSearch = function(rawSearchIndex) {
}; };
} }
index = buildIndex(rawSearchIndex); searchWords = buildIndex(rawSearchIndex);
registerSearchEvents(); registerSearchEvents();
// If there's a search term in the URL, execute the search now. // If there's a search term in the URL, execute the search now.
if (searchState.getQueryStringParams().search) { if (searchState.getQueryStringParams().search) {

View file

@ -55,6 +55,12 @@ function removeClass(elem, className) {
elem.classList.remove(className); elem.classList.remove(className);
} }
/**
* Run a callback for every element of an Array.
* @param {Array<?>} arr - The array to iterate over
* @param {function(?)} func - The callback
* @param {boolean} [reversed] - Whether to iterate in reverse
*/
function onEach(arr, func, reversed) { function onEach(arr, func, reversed) {
if (arr && arr.length > 0 && func) { if (arr && arr.length > 0 && func) {
var length = arr.length; var length = arr.length;
@ -76,6 +82,16 @@ function onEach(arr, func, reversed) {
return false; return false;
} }
/**
* Turn an HTMLCollection or a NodeList into an Array, then run a callback
* for every element. This is useful because iterating over an HTMLCollection
* or a "live" NodeList while modifying it can be very slow.
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLCollection
* https://developer.mozilla.org/en-US/docs/Web/API/NodeList
* @param {NodeList<?>|HTMLCollection<?>} lazyArray - An array to iterate over
* @param {function(?)} func - The callback
* @param {boolean} [reversed] - Whether to iterate in reverse
*/
function onEachLazy(lazyArray, func, reversed) { function onEachLazy(lazyArray, func, reversed) {
return onEach( return onEach(
Array.prototype.slice.call(lazyArray), Array.prototype.slice.call(lazyArray),