Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
111 lines
2.8 KiB
JavaScript
111 lines
2.8 KiB
JavaScript
/*
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
Author Tobias Koppers @sokra
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const Hash = require("../Hash");
|
|
const MAX_SHORT_STRING = require("./wasm-hash").MAX_SHORT_STRING;
|
|
|
|
/** @typedef {import("../../../declarations/WebpackOptions").HashDigest} Encoding */
|
|
|
|
class BatchedHash extends Hash {
|
|
/**
|
|
* @param {Hash} hash hash
|
|
*/
|
|
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}
|
|
* @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
|
|
*/
|
|
update(data, inputEncoding) {
|
|
if (this.string !== undefined) {
|
|
if (
|
|
typeof data === "string" &&
|
|
inputEncoding === this.encoding &&
|
|
this.string.length + data.length < MAX_SHORT_STRING
|
|
) {
|
|
this.string += data;
|
|
return this;
|
|
}
|
|
if (this.encoding) {
|
|
this.hash.update(this.string, this.encoding);
|
|
} else {
|
|
this.hash.update(this.string);
|
|
}
|
|
this.string = undefined;
|
|
}
|
|
if (typeof data === "string") {
|
|
if (
|
|
data.length < MAX_SHORT_STRING &&
|
|
// base64 encoding is not valid since it may contain padding chars
|
|
(!inputEncoding || !inputEncoding.startsWith("ba"))
|
|
) {
|
|
this.string = data;
|
|
this.encoding = inputEncoding;
|
|
} else if (inputEncoding) {
|
|
this.hash.update(data, inputEncoding);
|
|
} else {
|
|
this.hash.update(data);
|
|
}
|
|
} else {
|
|
this.hash.update(data);
|
|
}
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Calculates the digest {@link https://nodejs.org/api/crypto.html#crypto_hash_digest_encoding}
|
|
* @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
|
|
*/
|
|
digest(encoding) {
|
|
if (this.string !== undefined) {
|
|
if (this.encoding) {
|
|
this.hash.update(this.string, this.encoding);
|
|
} else {
|
|
this.hash.update(this.string);
|
|
}
|
|
}
|
|
if (!encoding) {
|
|
return this.hash.digest();
|
|
}
|
|
return this.hash.digest(encoding);
|
|
}
|
|
}
|
|
|
|
module.exports = BatchedHash;
|