bookshelf-doc/static/declaration-data.js

286 lines
7.5 KiB
JavaScript
Raw Normal View History

2022-02-22 04:40:14 +00:00
/**
* This module is a wrapper that facilitates manipulating the declaration data.
2022-02-22 07:01:14 +00:00
*
2022-02-22 04:40:14 +00:00
* Please see {@link DeclarationDataCenter} for more information.
*/
const CACHE_DB_NAME = "declaration-data";
const CACHE_DB_VERSION = 1;
const CACHE_DB_KEY = "DECLARATIONS_KEY";
2022-02-22 04:40:14 +00:00
/**
* The DeclarationDataCenter is used for declaration searching.
2022-02-22 07:01:14 +00:00
*
2022-02-22 04:40:14 +00:00
* For usage, see the {@link init} and {@link search} methods.
*/
export class DeclarationDataCenter {
/**
2022-02-22 07:01:14 +00:00
* The declaration data. Users should not interact directly with this field.
*
2022-02-22 04:40:14 +00:00
* *NOTE:* This is not made private to support legacy browsers.
*/
2022-02-22 07:01:14 +00:00
declarationData = null;
2022-02-22 04:40:14 +00:00
/**
* Used to implement the singleton, in case we need to fetch data mutiple times in the same page.
*/
static singleton = null;
static requestSingleton = null;
2022-02-22 04:40:14 +00:00
/**
* Construct a DeclarationDataCenter with given data.
2022-02-22 07:01:14 +00:00
*
2022-02-22 04:40:14 +00:00
* Please use {@link DeclarationDataCenter.init} instead, which automates the data fetching process.
* @param {*} declarationData
*/
constructor(declarationData) {
this.declarationData = declarationData;
}
/**
* The actual constructor of DeclarationDataCenter
* @returns {Promise<DeclarationDataCenter>}
*/
static async init() {
if (DeclarationDataCenter.singleton === null) {
if (DeclarationDataCenter.requestSingleton === null) {
DeclarationDataCenter.requestSingleton = DeclarationDataCenter.getData();
}
await DeclarationDataCenter.requestSingleton;
2022-02-22 04:40:14 +00:00
}
return DeclarationDataCenter.singleton;
}
static async getData() {
const dataListUrl = new URL(
`${SITE_ROOT}/declarations/declaration-data.bmp`,
window.location
);
// try to use cache first
const data = await fetchCachedDeclarationData().catch(_e => null);
if (data) {
// if data is defined, use the cached one.
DeclarationDataCenter.singleton = new DeclarationDataCenter(data);
} else {
// undefined. then fetch the data from the server.
const dataListRes = await fetch(dataListUrl);
const data = await dataListRes.json();
await cacheDeclarationData(data);
DeclarationDataCenter.singleton = new DeclarationDataCenter(data);
}
}
2022-02-22 04:40:14 +00:00
/**
* Search for a declaration.
* @returns {Array<any>}
*/
search(pattern, strict = true, allowedKinds=undefined, maxResults=undefined) {
2022-02-22 04:40:14 +00:00
if (!pattern) {
return [];
}
2022-02-22 07:01:14 +00:00
if (strict) {
let decl = this.declarationData.declarations[pattern];
2022-02-22 07:01:14 +00:00
return decl ? [decl] : [];
} else {
return getMatches(this.declarationData.declarations, pattern, allowedKinds, maxResults);
2022-02-22 07:01:14 +00:00
}
2022-02-22 04:40:14 +00:00
}
2022-07-22 14:15:37 +00:00
/**
* Search for all instances of a certain typeclass
* @returns {Array<String>}
*/
instancesForClass(className) {
const instances = this.declarationData.instances[className];
if (!instances) {
return [];
} else {
return instances;
}
}
2022-07-23 13:40:08 +00:00
/**
* Search for all instances that involve a certain type
* @returns {Array<String>}
*/
instancesForType(typeName) {
const instances = this.declarationData.instancesFor[typeName];
if (!instances) {
return [];
} else {
return instances;
}
}
2022-07-22 14:15:37 +00:00
/**
* Analogous to Lean declNameToLink
* @returns {String}
*/
declNameToLink(declName) {
return this.declarationData.declarations[declName].docLink;
}
2022-07-22 14:56:51 +00:00
/**
* Find all modules that imported the given one.
* @returns {Array<String>}
*/
moduleImportedBy(moduleName) {
return this.declarationData.importedBy[moduleName];
}
/**
* Analogous to Lean moduleNameToLink
* @returns {String}
*/
moduleNameToLink(moduleName) {
return this.declarationData.modules[moduleName];
}
2022-02-22 04:40:14 +00:00
}
function isSeparater(char) {
return char === "." || char === "_";
}
2022-02-22 07:01:14 +00:00
// HACK: the fuzzy matching is quite hacky
function matchCaseSensitive(declName, lowerDeclName, pattern) {
2022-02-22 04:40:14 +00:00
let i = 0,
j = 0,
err = 0,
lastMatch = 0;
while (i < declName.length && j < pattern.length) {
2022-02-22 07:01:14 +00:00
if (pattern[j] === declName[i] || pattern[j] === lowerDeclName[i]) {
2022-02-22 04:40:14 +00:00
err += (isSeparater(pattern[j]) ? 0.125 : 1) * (i - lastMatch);
if (pattern[j] !== declName[i]) err += 0.5;
lastMatch = i + 1;
j++;
} else if (isSeparater(declName[i])) {
err += 0.125 * (i + 1 - lastMatch);
lastMatch = i + 1;
}
i++;
}
err += 0.125 * (declName.length - lastMatch);
if (j === pattern.length) {
return err;
}
}
function getMatches(declarations, pattern, allowedKinds = undefined, maxResults = undefined) {
2022-02-22 04:40:14 +00:00
const lowerPats = pattern.toLowerCase().split(/\s/g);
const patNoSpaces = pattern.replace(/\s/g, "");
const results = [];
for (const [_, {
2022-02-22 07:01:14 +00:00
name,
kind,
doc,
2022-02-22 20:26:20 +00:00
docLink,
2022-02-22 07:01:14 +00:00
sourceLink,
}] of Object.entries(declarations)) {
// Apply "kind" filter
if (allowedKinds !== undefined) {
if (!allowedKinds.has(kind)) {
continue;
}
}
const lowerName = name.toLowerCase();
const lowerDoc = doc.toLowerCase();
2022-02-22 07:01:14 +00:00
let err = matchCaseSensitive(name, lowerName, patNoSpaces);
2022-02-22 04:40:14 +00:00
// match all words as substrings of docstring
if (
2022-02-22 07:01:14 +00:00
err >= 3 &&
2022-02-22 04:40:14 +00:00
pattern.length > 3 &&
lowerPats.every((l) => lowerDoc.indexOf(l) != -1)
) {
err = 3;
}
if (err !== undefined) {
2022-02-22 21:32:37 +00:00
results.push({
name,
kind,
doc,
2022-02-22 21:32:37 +00:00
err,
lowerName,
lowerDoc,
docLink,
sourceLink,
});
2022-02-22 04:40:14 +00:00
}
}
return results.sort(({ err: a }, { err: b }) => a - b).slice(0, maxResults);
}
// TODO: refactor the indexedDB part to be more robust
/**
* Get the indexedDB database, automatically initialized.
2022-02-22 21:32:37 +00:00
* @returns {Promise<IDBDatabase>}
*/
2022-02-22 21:32:37 +00:00
async function getDeclarationDatabase() {
return new Promise((resolve, reject) => {
const request = indexedDB.open(CACHE_DB_NAME, CACHE_DB_VERSION);
2022-02-22 21:32:37 +00:00
request.onerror = function (event) {
reject(
new Error(
`fail to open indexedDB ${CACHE_DB_NAME} of version ${CACHE_DB_VERSION}`
)
);
};
request.onupgradeneeded = function (event) {
let db = event.target.result;
// We only need to store one object, so no key path or increment is needed.
2022-02-22 21:32:37 +00:00
db.createObjectStore("declaration");
};
request.onsuccess = function (event) {
2022-02-22 21:32:37 +00:00
resolve(event.target.result);
};
});
}
/**
* Store data in indexedDB object store.
* @param {Map<string, any>} data
*/
async function cacheDeclarationData(data) {
2022-02-22 21:32:37 +00:00
let db = await getDeclarationDatabase();
let store = db
.transaction("declaration", "readwrite")
.objectStore("declaration");
return new Promise((resolve, reject) => {
let clearRequest = store.clear();
let addRequest = store.add(data, CACHE_DB_KEY);
2022-02-22 21:32:37 +00:00
addRequest.onsuccess = function (event) {
resolve();
};
addRequest.onerror = function (event) {
reject(new Error(`fail to store declaration data`));
};
clearRequest.onerror = function (event) {
reject(new Error("fail to clear object store"));
};
});
}
/**
* Retrieve data from indexedDB database.
* @returns {Promise<Map<string, any>|undefined>}
*/
async function fetchCachedDeclarationData() {
2022-02-22 21:32:37 +00:00
let db = await getDeclarationDatabase();
let store = db
.transaction("declaration", "readonly")
.objectStore("declaration");
return new Promise((resolve, reject) => {
let transactionRequest = store.get(CACHE_DB_KEY);
transactionRequest.onsuccess = function (event) {
resolve(event.result);
};
transactionRequest.onerror = function (event) {
reject(new Error(`fail to store declaration data`));
};
});
}