2021-09-24 05:32:40 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const Hash = require("../Hash");
|
2021-10-28 18:09:02 +08:00
|
|
|
const MAX_SHORT_STRING = require("./wasm-hash").MAX_SHORT_STRING;
|
2021-09-24 05:32:40 +08:00
|
|
|
|
2025-10-07 22:40:59 +08:00
|
|
|
/** @typedef {import("../../../declarations/WebpackOptions").HashDigest} Encoding */
|
|
|
|
|
2021-09-24 05:32:40 +08:00
|
|
|
class BatchedHash extends Hash {
|
2024-03-18 01:15:44 +08:00
|
|
|
/**
|
|
|
|
* @param {Hash} hash hash
|
|
|
|
*/
|
2021-09-24 05:32:40 +08:00
|
|
|
constructor(hash) {
|
|
|
|
super();
|
|
|
|
this.string = undefined;
|
|
|
|
this.encoding = undefined;
|
|
|
|
this.hash = hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
2025-10-07 22:40:59 +08:00
|
|
|
* @overload
|
|
|
|
* @param {string | Buffer} data data
|
|
|
|
* @returns {Hash} updated hash
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
|
|
|
* @overload
|
|
|
|
* @param {string} data data
|
|
|
|
* @param {Encoding} inputEncoding data encoding
|
|
|
|
* @returns {Hash} updated hash
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Update hash {@link https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding}
|
|
|
|
* @param {string | Buffer} data data
|
|
|
|
* @param {Encoding=} inputEncoding data encoding
|
|
|
|
* @returns {Hash} updated hash
|
2021-09-24 05:32:40 +08:00
|
|
|
*/
|
|
|
|
update(data, inputEncoding) {
|
|
|
|
if (this.string !== undefined) {
|
|
|
|
if (
|
|
|
|
typeof data === "string" &&
|
|
|
|
inputEncoding === this.encoding &&
|
2021-10-28 18:09:02 +08:00
|
|
|
this.string.length + data.length < MAX_SHORT_STRING
|
2021-09-24 05:32:40 +08:00
|
|
|
) {
|
|
|
|
this.string += data;
|
|
|
|
return this;
|
|
|
|
}
|
2025-10-07 22:40:59 +08:00
|
|
|
if (this.encoding) {
|
|
|
|
this.hash.update(this.string, this.encoding);
|
|
|
|
} else {
|
|
|
|
this.hash.update(this.string);
|
|
|
|
}
|
2021-09-24 05:32:40 +08:00
|
|
|
this.string = undefined;
|
|
|
|
}
|
|
|
|
if (typeof data === "string") {
|
2021-11-04 16:42:27 +08:00
|
|
|
if (
|
|
|
|
data.length < MAX_SHORT_STRING &&
|
|
|
|
// base64 encoding is not valid since it may contain padding chars
|
|
|
|
(!inputEncoding || !inputEncoding.startsWith("ba"))
|
|
|
|
) {
|
2021-09-24 05:32:40 +08:00
|
|
|
this.string = data;
|
|
|
|
this.encoding = inputEncoding;
|
2025-10-07 22:40:59 +08:00
|
|
|
} else if (inputEncoding) {
|
2021-09-24 05:32:40 +08:00
|
|
|
this.hash.update(data, inputEncoding);
|
2025-10-07 22:40:59 +08:00
|
|
|
} else {
|
|
|
|
this.hash.update(data);
|
2021-09-24 05:32:40 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.hash.update(data);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
2025-10-07 22:40:59 +08:00
|
|
|
* @overload
|
|
|
|
* @returns {Buffer} digest
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
|
|
* @overload
|
|
|
|
* @param {Encoding} encoding encoding of the return value
|
|
|
|
* @returns {string} digest
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
|
|
* @param {Encoding=} encoding encoding of the return value
|
|
|
|
* @returns {string | Buffer} digest
|
2021-09-24 05:32:40 +08:00
|
|
|
*/
|
|
|
|
digest(encoding) {
|
|
|
|
if (this.string !== undefined) {
|
2025-10-07 22:40:59 +08:00
|
|
|
if (this.encoding) {
|
|
|
|
this.hash.update(this.string, this.encoding);
|
|
|
|
} else {
|
|
|
|
this.hash.update(this.string);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!encoding) {
|
|
|
|
return this.hash.digest();
|
2021-09-24 05:32:40 +08:00
|
|
|
}
|
|
|
|
return this.hash.digest(encoding);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = BatchedHash;
|