123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- import * as escodegen from 'escodegen-wallaby';
- import * as esprima from 'esprima';
- import * as estraverse from 'estraverse';
- import * as ESTree from 'estree';
- import { TNodeWithBlockStatement } from '../types/node/TNodeWithBlockStatement';
- import { TStatement } from '../types/node/TStatement';
- import { NodeType } from '../enums/node/NodeType';
- import { NodeGuards } from './NodeGuards';
- export class NodeUtils {
- /**
- * @type {string[]}
- */
- private static readonly nodesWithBlockScope: string[] = [
- NodeType.ArrowFunctionExpression,
- NodeType.FunctionDeclaration,
- NodeType.FunctionExpression,
- NodeType.MethodDefinition,
- NodeType.Program
- ];
- /**
- * @param {T} astTree
- * @returns {T}
- */
- public static addXVerbatimPropertyToLiterals <T extends ESTree.Node = ESTree.Node> (astTree: T): T {
- estraverse.replace(astTree, {
- leave: (node: ESTree.Node) => {
- if (NodeGuards.isLiteralNode(node)) {
- node['x-verbatim-property'] = {
- content: node.raw,
- precedence: escodegen.Precedence.Primary
- };
- }
- }
- });
- return astTree;
- }
- /**
- * @param {T} astTree
- * @returns {T}
- */
- public static clone <T extends ESTree.Node = ESTree.Node> (astTree: T): T {
- /**
- * @param {T} node
- * @returns {T}
- */
- const cloneRecursive: (node: T) => T = (node: T) => {
- if (node === null) {
- return node;
- }
- const copy: {[key: string]: any} = {};
- Object
- .keys(node)
- .filter((property: string) => property !== 'parentNode')
- .forEach((property: string): void => {
- const value: any = (<{[key: string]: any}>node)[property];
- let clonedValue: any | null;
- if (value === null || value instanceof RegExp) {
- clonedValue = value;
- } else if (Array.isArray(value)) {
- clonedValue = value.map(cloneRecursive);
- } else if (typeof value === 'object') {
- clonedValue = cloneRecursive(value);
- } else {
- clonedValue = value;
- }
- copy[property] = clonedValue;
- });
- return <T>copy;
- };
- return NodeUtils.parentize(cloneRecursive(astTree));
- }
- /**
- * @param {string} code
- * @returns {TStatement[]}
- */
- public static convertCodeToStructure (code: string): TStatement[] {
- let structure: ESTree.Program = esprima.parseScript(code);
- structure = NodeUtils.addXVerbatimPropertyToLiterals(structure);
- structure = NodeUtils.parentize(structure);
- return structure.body;
- }
- /**
- * @param {NodeGuards[]} structure
- * @returns {string}
- */
- public static convertStructureToCode (structure: ESTree.Node[]): string {
- let code: string = '';
- structure.forEach((node: ESTree.Node) => {
- code += escodegen.generate(node, {
- sourceMapWithCode: true
- }).code;
- });
- return code;
- }
- /**
- * @param {NodeGuards} node
- * @param {number} index
- * @returns {NodeGuards}
- */
- public static getBlockStatementNodeByIndex (node: ESTree.Node, index: number = 0): ESTree.Node {
- if (NodeGuards.isNodeHasBlockStatement(node)) {
- if (node.body[index] === undefined) {
- throw new ReferenceError(`Wrong index \`${index}\`. Block-statement body length is \`${node.body.length}\``);
- }
- return node.body[index];
- }
- throw new TypeError('The specified node have no a block-statement');
- }
- /**
- * @param {NodeGuards} node
- * @param {TNodeWithBlockStatement[]} blockScopes
- * @returns {TNodeWithBlockStatement[]}
- */
- public static getBlockScopesOfNode (node: ESTree.Node, blockScopes: TNodeWithBlockStatement[] = []): TNodeWithBlockStatement[] {
- const parentNode: ESTree.Node | undefined = node.parentNode;
- if (!parentNode) {
- throw new ReferenceError('`parentNode` property of given node is `undefined`');
- }
- if (NodeGuards.isBlockStatementNode(parentNode)) {
- if (!parentNode.parentNode) {
- throw new ReferenceError('`parentNode` property of `parentNode` of given node is `undefined`');
- }
- if (NodeUtils.nodesWithBlockScope.includes(parentNode.parentNode.type)) {
- blockScopes.push(parentNode);
- }
- }
- if (node !== parentNode) {
- return NodeUtils.getBlockScopesOfNode(parentNode, blockScopes);
- }
- if (NodeGuards.isNodeHasBlockStatement(parentNode)) {
- blockScopes.push(parentNode);
- }
- return blockScopes;
- }
- /**
- * @param {NodeGuards} node
- * @param {number} depth
- * @returns {number}
- */
- public static getNodeBlockScopeDepth (node: ESTree.Node, depth: number = 0): number {
- const parentNode: ESTree.Node | undefined = node.parentNode;
- if (!parentNode) {
- throw new ReferenceError('`parentNode` property of given node is `undefined`');
- }
- if (NodeGuards.isProgramNode(parentNode)) {
- return depth;
- }
- if (NodeGuards.isBlockStatementNode(node) && NodeUtils.nodesWithBlockScope.includes(parentNode.type)) {
- return NodeUtils.getNodeBlockScopeDepth(parentNode, ++depth);
- }
- return NodeUtils.getNodeBlockScopeDepth(parentNode, depth);
- }
- /**
- * @param {UnaryExpression} unaryExpressionNode
- * @returns {NodeGuards}
- */
- public static getUnaryExpressionArgumentNode (unaryExpressionNode: ESTree.UnaryExpression): ESTree.Node {
- if (NodeGuards.isUnaryExpressionNode(unaryExpressionNode.argument)) {
- return NodeUtils.getUnaryExpressionArgumentNode(unaryExpressionNode.argument);
- }
- return unaryExpressionNode.argument;
- }
- /**
- * @param {T} astTree
- * @returns {T}
- */
- public static parentize <T extends ESTree.Node = ESTree.Node> (astTree: T): T {
- estraverse.traverse(astTree, {
- enter: NodeUtils.parentizeNode
- });
- return astTree;
- }
- /**
- * @param {T} node
- * @param {Node} parentNode
- * @returns {T}
- */
- public static parentizeNode <T extends ESTree.Node = ESTree.Node> (node: T, parentNode: ESTree.Node | null): T {
- node.parentNode = parentNode || node;
- node.obfuscatedNode = false;
- return node;
- }
- }
|