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.
|
|
|
|
*/
|
|
|
|
|
2022-02-22 15:20:20 +00:00
|
|
|
const CACHE_DB_NAME = "declaration-data";
|
|
|
|
const CACHE_DB_VERSION = 1;
|
2022-07-20 23:40:04 +00:00
|
|
|
const CACHE_DB_KEY = "DECLARATIONS_KEY";
|
|
|
|
|
|
|
|
async function fetchModuleData(module) {
|
|
|
|
const moduleDataUrl = new URL(
|
2022-07-21 19:05:19 +00:00
|
|
|
`${SITE_ROOT}/declarations/declaration-data-${module}.bmp`,
|
2022-07-20 23:40:04 +00:00
|
|
|
window.location
|
|
|
|
);
|
|
|
|
const moduleData = await fetch(moduleDataUrl);
|
|
|
|
const moduleDataJson = await moduleData.json();
|
|
|
|
return moduleDataJson;
|
|
|
|
}
|
2022-02-22 15:20:20 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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) {
|
2022-07-20 23:40:04 +00:00
|
|
|
const dataListUrl = new URL(
|
2022-07-21 19:05:19 +00:00
|
|
|
`${SITE_ROOT}/declarations/declaration-data.bmp`,
|
2022-02-22 04:40:14 +00:00
|
|
|
window.location
|
|
|
|
);
|
2022-02-22 15:20:20 +00:00
|
|
|
|
|
|
|
// try to use cache first
|
2022-07-20 23:40:04 +00:00
|
|
|
const data = await fetchCachedDeclarationData().catch(_e => null);
|
2022-02-22 15:20:20 +00:00
|
|
|
if (data) {
|
|
|
|
// if data is defined, use the cached one.
|
|
|
|
DeclarationDataCenter.singleton = new DeclarationDataCenter(data);
|
|
|
|
} else {
|
|
|
|
// undefined. then fetch the data from the server.
|
2022-07-20 23:40:04 +00:00
|
|
|
const dataListRes = await fetch(dataListUrl);
|
|
|
|
const dataListJson = await dataListRes.json();
|
|
|
|
|
|
|
|
// TODO: this is probably kind of inefficient
|
|
|
|
const dataJsonUnflattened = await Promise.all(dataListJson.map(fetchModuleData));
|
|
|
|
|
|
|
|
const dataJson = dataJsonUnflattened.flat();
|
2022-02-22 15:20:20 +00:00
|
|
|
// the data is a map of name (original case) to declaration data.
|
|
|
|
const data = new Map(
|
2022-07-20 23:40:04 +00:00
|
|
|
dataJson.map(({ name, doc, docLink, sourceLink }) => [
|
2022-02-22 07:01:14 +00:00
|
|
|
name,
|
2022-02-22 15:20:20 +00:00
|
|
|
{
|
|
|
|
name,
|
|
|
|
lowerName: name.toLowerCase(),
|
|
|
|
lowerDoc: doc.toLowerCase(),
|
2022-02-22 20:26:20 +00:00
|
|
|
docLink,
|
2022-02-22 15:20:20 +00:00
|
|
|
sourceLink,
|
|
|
|
},
|
|
|
|
])
|
|
|
|
);
|
2022-07-20 23:40:04 +00:00
|
|
|
await cacheDeclarationData(data);
|
2022-02-22 15:20:20 +00:00
|
|
|
DeclarationDataCenter.singleton = new DeclarationDataCenter(data);
|
|
|
|
}
|
2022-02-22 04:40:14 +00:00
|
|
|
}
|
|
|
|
return DeclarationDataCenter.singleton;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for a declaration.
|
|
|
|
* @returns {Array<any>}
|
|
|
|
*/
|
2022-02-22 20:26:20 +00:00
|
|
|
search(pattern, strict = true) {
|
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.get(pattern);
|
|
|
|
return decl ? [decl] : [];
|
|
|
|
} else {
|
|
|
|
return getMatches(this.declarationData, pattern);
|
|
|
|
}
|
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, maxResults = 30) {
|
|
|
|
const lowerPats = pattern.toLowerCase().split(/\s/g);
|
|
|
|
const patNoSpaces = pattern.replace(/\s/g, "");
|
|
|
|
const results = [];
|
2022-02-22 07:01:14 +00:00
|
|
|
for (const {
|
|
|
|
name,
|
|
|
|
lowerName,
|
|
|
|
lowerDoc,
|
2022-02-22 20:26:20 +00:00
|
|
|
docLink,
|
2022-02-22 07:01:14 +00:00
|
|
|
sourceLink,
|
|
|
|
} of declarations.values()) {
|
|
|
|
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,
|
|
|
|
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);
|
|
|
|
}
|
2022-02-22 15:20:20 +00:00
|
|
|
|
|
|
|
// 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 15:20:20 +00:00
|
|
|
*/
|
2022-02-22 21:32:37 +00:00
|
|
|
async function getDeclarationDatabase() {
|
2022-02-22 15:20:20 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const request = indexedDB.open(CACHE_DB_NAME, CACHE_DB_VERSION);
|
2022-02-22 21:32:37 +00:00
|
|
|
|
2022-02-22 15:20:20 +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");
|
2022-02-22 15:20:20 +00:00
|
|
|
};
|
|
|
|
request.onsuccess = function (event) {
|
2022-02-22 21:32:37 +00:00
|
|
|
resolve(event.target.result);
|
2022-02-22 15:20:20 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Store data in indexedDB object store.
|
|
|
|
* @param {Map<string, any>} data
|
|
|
|
*/
|
2022-07-20 23:40:04 +00:00
|
|
|
async function cacheDeclarationData(data) {
|
2022-02-22 21:32:37 +00:00
|
|
|
let db = await getDeclarationDatabase();
|
|
|
|
let store = db
|
|
|
|
.transaction("declaration", "readwrite")
|
|
|
|
.objectStore("declaration");
|
2022-02-22 15:20:20 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
let clearRequest = store.clear();
|
2022-07-20 23:40:04 +00:00
|
|
|
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`));
|
2022-02-22 15:20:20 +00:00
|
|
|
};
|
|
|
|
clearRequest.onerror = function (event) {
|
|
|
|
reject(new Error("fail to clear object store"));
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve data from indexedDB database.
|
|
|
|
* @returns {Promise<Map<string, any>|undefined>}
|
|
|
|
*/
|
2022-07-20 23:40:04 +00:00
|
|
|
async function fetchCachedDeclarationData() {
|
2022-02-22 21:32:37 +00:00
|
|
|
let db = await getDeclarationDatabase();
|
|
|
|
let store = db
|
|
|
|
.transaction("declaration", "readonly")
|
|
|
|
.objectStore("declaration");
|
2022-02-22 15:20:20 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2022-07-20 23:40:04 +00:00
|
|
|
let transactionRequest = store.get(CACHE_DB_KEY);
|
2022-02-22 15:20:20 +00:00
|
|
|
transactionRequest.onsuccess = function (event) {
|
|
|
|
resolve(event.result);
|
|
|
|
};
|
|
|
|
transactionRequest.onerror = function (event) {
|
|
|
|
reject(new Error(`fail to store declaration data`));
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|