Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/@webassemblyjs/wasm-edit/esm/ |
Upload File : |
import { decode } from "@webassemblyjs/wasm-parser"; import { traverse } from "@webassemblyjs/ast"; import { cloneNode } from "@webassemblyjs/ast/lib/clone"; import { shrinkPaddedLEB128 } from "@webassemblyjs/wasm-opt"; import { getSectionForNode } from "@webassemblyjs/helper-wasm-bytecode"; import constants from "@webassemblyjs/helper-wasm-bytecode"; import { applyOperations } from "./apply"; function hashNode(node) { return JSON.stringify(node); } function preprocess(ab) { var optBin = shrinkPaddedLEB128(new Uint8Array(ab)); return optBin.buffer; } function sortBySectionOrder(nodes) { var originalOrder = new Map(); var _iteratorNormalCompletion = true; var _didIteratorError = false; var _iteratorError = undefined; try { for (var _iterator = nodes[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { var _node = _step.value; originalOrder.set(_node, originalOrder.size); } } catch (err) { _didIteratorError = true; _iteratorError = err; } finally { try { if (!_iteratorNormalCompletion && _iterator.return != null) { _iterator.return(); } } finally { if (_didIteratorError) { throw _iteratorError; } } } nodes.sort(function (a, b) { var sectionA = getSectionForNode(a); var sectionB = getSectionForNode(b); var aId = constants.sections[sectionA]; var bId = constants.sections[sectionB]; if (typeof aId !== "number" || typeof bId !== "number") { throw new Error("Section id not found"); } if (aId === bId) { // $FlowIgnore originalOrder is filled for all nodes return originalOrder.get(a) - originalOrder.get(b); } return aId - bId; }); } export function edit(ab, visitors) { ab = preprocess(ab); var ast = decode(ab); return editWithAST(ast, ab, visitors); } export function editWithAST(ast, ab, visitors) { var operations = []; var uint8Buffer = new Uint8Array(ab); var nodeBefore; function before(type, path) { nodeBefore = cloneNode(path.node); } function after(type, path) { if (path.node._deleted === true) { operations.push({ kind: "delete", node: path.node }); // $FlowIgnore } else if (hashNode(nodeBefore) !== hashNode(path.node)) { operations.push({ kind: "update", oldNode: nodeBefore, node: path.node }); } } traverse(ast, visitors, before, after); uint8Buffer = applyOperations(ast, uint8Buffer, operations); return uint8Buffer.buffer; } export function add(ab, newNodes) { ab = preprocess(ab); var ast = decode(ab); return addWithAST(ast, ab, newNodes); } export function addWithAST(ast, ab, newNodes) { // Sort nodes by insertion order sortBySectionOrder(newNodes); var uint8Buffer = new Uint8Array(ab); // Map node into operations var operations = newNodes.map(function (n) { return { kind: "add", node: n }; }); uint8Buffer = applyOperations(ast, uint8Buffer, operations); return uint8Buffer.buffer; }