123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- "use strict";
- const { HookMap, SyncWaterfallHook, SyncBailHook } = require("tapable");
- class StatsPrinter {
- constructor() {
- this.hooks = Object.freeze({
-
- sortElements: new HookMap(
- () => new SyncBailHook(["elements", "context"])
- ),
-
- printElements: new HookMap(
- () => new SyncBailHook(["printedElements", "context"])
- ),
-
- sortItems: new HookMap(() => new SyncBailHook(["items", "context"])),
-
- getItemName: new HookMap(() => new SyncBailHook(["item", "context"])),
-
- printItems: new HookMap(
- () => new SyncBailHook(["printedItems", "context"])
- ),
-
- print: new HookMap(() => new SyncBailHook(["object", "context"])),
-
- result: new HookMap(() => new SyncWaterfallHook(["result", "context"]))
- });
-
- this._levelHookCache = new Map();
- this._inPrint = false;
- }
-
- _getAllLevelHooks(hookMap, type) {
- let cache = (
- this._levelHookCache.get(hookMap)
- );
- if (cache === undefined) {
- cache = new Map();
- this._levelHookCache.set(hookMap, cache);
- }
- const cacheEntry = cache.get(type);
- if (cacheEntry !== undefined) {
- return cacheEntry;
- }
-
- const hooks = [];
- const typeParts = type.split(".");
- for (let i = 0; i < typeParts.length; i++) {
- const hook = hookMap.get(typeParts.slice(i).join("."));
- if (hook) {
- hooks.push(hook);
- }
- }
- cache.set(type, hooks);
- return hooks;
- }
-
- _forEachLevel(hookMap, type, fn) {
- for (const hook of this._getAllLevelHooks(hookMap, type)) {
- const result = fn(hook);
- if (result !== undefined) return result;
- }
- }
-
- _forEachLevelWaterfall(hookMap, type, data, fn) {
- for (const hook of this._getAllLevelHooks(hookMap, type)) {
- data = fn(hook, data);
- }
- return data;
- }
-
- print(type, object, baseContext) {
- if (this._inPrint) {
- return this._print(type, object, baseContext);
- } else {
- try {
- this._inPrint = true;
- return this._print(type, object, baseContext);
- } finally {
- this._levelHookCache.clear();
- this._inPrint = false;
- }
- }
- }
-
- _print(type, object, baseContext) {
- const context = {
- ...baseContext,
- type,
- [type]: object
- };
- let printResult = this._forEachLevel(this.hooks.print, type, hook =>
- hook.call(object, context)
- );
- if (printResult === undefined) {
- if (Array.isArray(object)) {
- const sortedItems = object.slice();
- this._forEachLevel(this.hooks.sortItems, type, h =>
- h.call(sortedItems, context)
- );
- const printedItems = sortedItems.map((item, i) => {
- const itemContext = {
- ...context,
- _index: i
- };
- const itemName = this._forEachLevel(
- this.hooks.getItemName,
- `${type}[]`,
- h => h.call(item, itemContext)
- );
- if (itemName) itemContext[itemName] = item;
- return this.print(
- itemName ? `${type}[].${itemName}` : `${type}[]`,
- item,
- itemContext
- );
- });
- printResult = this._forEachLevel(this.hooks.printItems, type, h =>
- h.call(printedItems, context)
- );
- if (printResult === undefined) {
- const result = printedItems.filter(Boolean);
- if (result.length > 0) printResult = result.join("\n");
- }
- } else if (object !== null && typeof object === "object") {
- const elements = Object.keys(object).filter(
- key => object[key] !== undefined
- );
- this._forEachLevel(this.hooks.sortElements, type, h =>
- h.call(elements, context)
- );
- const printedElements = elements.map(element => {
- const content = this.print(`${type}.${element}`, object[element], {
- ...context,
- _parent: object,
- _element: element,
- [element]: object[element]
- });
- return { element, content };
- });
- printResult = this._forEachLevel(this.hooks.printElements, type, h =>
- h.call(printedElements, context)
- );
- if (printResult === undefined) {
- const result = printedElements.map(e => e.content).filter(Boolean);
- if (result.length > 0) printResult = result.join("\n");
- }
- }
- }
- return this._forEachLevelWaterfall(
- this.hooks.result,
- type,
- printResult,
- (h, r) => h.call(r, context)
- );
- }
- }
- module.exports = StatsPrinter;
|