WXL
4 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const { contextify } = require("./util/identifier");
 
/** @typedef {import("./util/identifier").AssociatedObjectForCache} AssociatedObjectForCache */
 
/**
 * Shortens absolute or verbose request strings so diagnostics and stats output
 * can be rendered relative to a chosen base directory.
 */
class RequestShortener {
    /**
     * Binds a context-aware shortening function to the provided directory and
     * optional cache owner.
     * @param {string} dir the directory
     * @param {AssociatedObjectForCache=} associatedObjectForCache an object to which the cache will be attached
     */
    constructor(dir, associatedObjectForCache) {
        this.contextify = contextify.bindContextCache(
            dir,
            associatedObjectForCache
        );
    }
 
    /**
     * Returns a request string rewritten relative to the configured directory
     * when one is provided.
     * @param {string | undefined | null} request the request to shorten
     * @returns {string | undefined | null} the shortened request
     */
    shorten(request) {
        if (!request) {
            return request;
        }
        return this.contextify(request);
    }
}
 
module.exports = RequestShortener;