UNPKG

@adguard/agtree

Version:
80 lines (77 loc) 2.86 kB
/* * AGTree v3.2.2 (build date: Tue, 08 Jul 2025 13:39:47 GMT) * (c) 2025 Adguard Software Ltd. * Released under the MIT license * https://github.com/AdguardTeam/tsurlfilter/tree/master/packages/agtree#readme */ import { NULL } from '../../utils/constants.js'; import { CommentRuleType, RuleCategory } from '../../nodes/index.js'; import { AdblockSyntax } from '../../utils/adblockers.js'; import { BaseDeserializer } from '../base-deserializer.js'; import { AgentCommentMarshallingMap } from '../../marshalling-utils/comment/agent-comment-common.js'; import { AgentDeserializer } from './agent-deserializer.js'; import { BinaryTypeMarshallingMap } from '../../marshalling-utils/misc/binary-type-common.js'; /* eslint-disable no-param-reassign */ /** * `AgentCommentDeserializer` is responsible for deserializing an Adblock agent comments. * Adblock agent comment marks that the filter list is supposed to * be used by the specified ad blockers. * * @example * - ```adblock * [AdGuard] * ``` * - ```adblock * [Adblock Plus 2.0] * ``` * - ```adblock * [uBlock Origin] * ``` * - ```adblock * [uBlock Origin 1.45.3] * ``` * - ```adblock * [Adblock Plus 2.0; AdGuard] * ``` */ class AgentCommentDeserializer extends BaseDeserializer { /** * Deserializes an agent list node from binary format. * * @param buffer ByteBuffer for reading binary data. * @param node Destination node. */ static deserialize(buffer, node) { buffer.assertUint8(BinaryTypeMarshallingMap.AgentRuleNode); node.type = CommentRuleType.AgentCommentRule; node.syntax = AdblockSyntax.Common; node.category = RuleCategory.Comment; let prop = buffer.readUint8(); while (prop !== NULL) { switch (prop) { case AgentCommentMarshallingMap.Children: node.children = new Array(buffer.readUint8()); // read children for (let i = 0; i < node.children.length; i += 1) { AgentDeserializer.deserialize(buffer, node.children[i] = {}); } break; case AgentCommentMarshallingMap.Start: node.start = buffer.readUint32(); break; case AgentCommentMarshallingMap.End: node.end = buffer.readUint32(); break; default: throw new Error(`Invalid property: ${prop}`); } prop = buffer.readUint8(); } // Maybe children are not present in the binary data, // in this case, we should initialize it as an empty array. if (!node.children) { node.children = []; } } } export { AgentCommentDeserializer };