马宇豪
2024-07-16 f591c27b57e2418c9495bc02ae8cfff84d35bc18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Sean Larkin @thelarkinn
*/
 
"use strict";
 
const WebpackError = require("./WebpackError");
 
/** @typedef {import("./Module")} Module */
 
/**
 * @template T
 * @callback Callback
 * @param {Error=} err
 * @param {T=} stats
 * @returns {void}
 */
 
class HookWebpackError extends WebpackError {
    /**
     * Creates an instance of HookWebpackError.
     * @param {Error} error inner error
     * @param {string} hook name of hook
     */
    constructor(error, hook) {
        super(error.message);
 
        this.name = "HookWebpackError";
        this.hook = hook;
        this.error = error;
        this.hideStack = true;
        this.details = `caused by plugins in ${hook}\n${error.stack}`;
 
        this.stack += `\n-- inner error --\n${error.stack}`;
    }
}
 
module.exports = HookWebpackError;
 
/**
 * @param {Error} error an error
 * @param {string} hook name of the hook
 * @returns {WebpackError} a webpack error
 */
const makeWebpackError = (error, hook) => {
    if (error instanceof WebpackError) return error;
    return new HookWebpackError(error, hook);
};
module.exports.makeWebpackError = makeWebpackError;
 
/**
 * @template T
 * @param {function((WebpackError | null)=, T=): void} callback webpack error callback
 * @param {string} hook name of hook
 * @returns {Callback<T>} generic callback
 */
const makeWebpackErrorCallback = (callback, hook) => {
    return (err, result) => {
        if (err) {
            if (err instanceof WebpackError) {
                callback(err);
                return;
            }
            callback(new HookWebpackError(err, hook));
            return;
        }
        callback(null, result);
    };
};
 
module.exports.makeWebpackErrorCallback = makeWebpackErrorCallback;
 
/**
 * @template T
 * @param {function(): T} fn function which will be wrapping in try catch
 * @param {string} hook name of hook
 * @returns {T} the result
 */
const tryRunOrWebpackError = (fn, hook) => {
    let r;
    try {
        r = fn();
    } catch (err) {
        if (err instanceof WebpackError) {
            throw err;
        }
        throw new HookWebpackError(/** @type {Error} */ (err), hook);
    }
    return r;
};
 
module.exports.tryRunOrWebpackError = tryRunOrWebpackError;