Skip to content

Commit

Permalink
fix(perf): reduced initial start time (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Apr 15, 2023
1 parent faadaf9 commit 8d052e6
Showing 1 changed file with 51 additions and 20 deletions.
71 changes: 51 additions & 20 deletions src/validate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,56 @@ import addAbsolutePathKeyword from "./keywords/absolutePath";

import ValidationError from "./ValidationError";

// Use CommonJS require for ajv libs so TypeScript consumers aren't locked into esModuleInterop (see #110).
const Ajv = require("ajv");
const ajvKeywords = require("ajv-keywords");
/**
* @template T
* @param fn {(function(): any) | undefined}
* @returns {function(): T}
*/
const memoize = (fn) => {
let cache = false;
/** @type {T} */
let result;

return () => {
if (cache) {
return result;
}
result = /** @type {function(): any} */ (fn)();
cache = true;
// Allow to clean up memory for fn
// and all dependent resources
// eslint-disable-next-line no-undefined, no-param-reassign
fn = undefined;

return result;
};
};


const getAjv = memoize(() => {
// Use CommonJS require for ajv libs so TypeScript consumers aren't locked into esModuleInterop (see #110).
const Ajv = require("ajv");
const ajvKeywords = require("ajv-keywords");

const ajv = new Ajv({
allErrors: true,
verbose: true,
$data: true,
});

ajvKeywords(ajv, [
"instanceof",
"formatMinimum",
"formatMaximum",
"patternRequired",
]);

// Custom keywords
addAbsolutePathKeyword(ajv);

return ajv;
});


/** @typedef {import("json-schema").JSONSchema4} JSONSchema4 */
/** @typedef {import("json-schema").JSONSchema6} JSONSchema6 */
Expand Down Expand Up @@ -38,22 +85,6 @@ const ajvKeywords = require("ajv-keywords");
* @property {PostFormatter=} postFormatter
*/

const ajv = new Ajv({
allErrors: true,
verbose: true,
$data: true,
});

ajvKeywords(ajv, [
"instanceof",
"formatMinimum",
"formatMaximum",
"patternRequired",
]);

// Custom keywords
addAbsolutePathKeyword(ajv);

/**
* @param {Schema} schema
* @param {Array<object> | object} options
Expand Down Expand Up @@ -104,7 +135,7 @@ function validate(schema, options, configuration) {
* @returns {Array<SchemaUtilErrorObject>}
*/
function validateObject(schema, options) {
const compiledSchema = ajv.compile(schema);
const compiledSchema = getAjv().compile(schema);
const valid = compiledSchema(options);

if (valid) return [];
Expand Down

0 comments on commit 8d052e6

Please sign in to comment.