import { inject, injectable, } from 'inversify'; import { ServiceIdentifiers } from '../../../container/ServiceIdentifiers'; import { TCustomCodeHelperFactory } from '../../../types/container/custom-code-helpers/TCustomCodeHelperFactory'; import { TIdentifierNamesGeneratorFactory } from '../../../types/container/generators/TIdentifierNamesGeneratorFactory'; import { TInitialData } from '../../../types/TInitialData'; import { TNodeWithStatements } from '../../../types/node/TNodeWithStatements'; import { TStatement } from '../../../types/node/TStatement'; import { TStringArrayEncoding } from '../../../types/options/TStringArrayEncoding'; import { ICallsGraphData } from '../../../interfaces/analyzers/calls-graph-analyzer/ICallsGraphData'; import { ICustomCodeHelper } from '../../../interfaces/custom-code-helpers/ICustomCodeHelper'; import { IOptions } from '../../../interfaces/options/IOptions'; import { IRandomGenerator } from '../../../interfaces/utils/IRandomGenerator'; import { IStringArrayStorage } from '../../../interfaces/storages/string-array-transformers/IStringArrayStorage'; import { initializable } from '../../../decorators/Initializable'; import { CustomCodeHelper } from '../../../enums/custom-code-helpers/CustomCodeHelper'; import { StringArrayEncoding } from '../../../enums/node-transformers/string-array-transformers/StringArrayEncoding'; import { AbstractCustomCodeHelperGroup } from '../../AbstractCustomCodeHelperGroup'; import { NodeAppender } from '../../../node/NodeAppender'; import { StringArrayCallsWrapperCodeHelper } from '../StringArrayCallsWrapperCodeHelper'; import { StringArrayCodeHelper } from '../StringArrayCodeHelper'; @injectable() export class StringArrayCodeHelperGroup extends AbstractCustomCodeHelperGroup { /** * @type {Map} */ private static readonly stringArrayCallsWrapperCodeHelperMap: Map = new Map([ [StringArrayEncoding.None, CustomCodeHelper.StringArrayCallsWrapper], [StringArrayEncoding.Base64, CustomCodeHelper.StringArrayCallsWrapperBase64], [StringArrayEncoding.Rc4, CustomCodeHelper.StringArrayCallsWrapperRc4] ]); /** * @type {Map} */ @initializable() protected customCodeHelpers!: Map ; /** * @type {TCustomCodeHelperFactory} */ private readonly customCodeHelperFactory: TCustomCodeHelperFactory; /** * @type {IStringArrayStorage} */ private readonly stringArrayStorage: IStringArrayStorage; /** * @param {TCustomCodeHelperFactory} customCodeHelperFactory * @param {IStringArrayStorage} stringArrayStorage * @param {TIdentifierNamesGeneratorFactory} identifierNamesGeneratorFactory * @param {IRandomGenerator} randomGenerator * @param {IOptions} options */ public constructor ( @inject(ServiceIdentifiers.Factory__ICustomCodeHelper) customCodeHelperFactory: TCustomCodeHelperFactory, @inject(ServiceIdentifiers.IStringArrayStorage) stringArrayStorage: IStringArrayStorage, @inject(ServiceIdentifiers.Factory__IIdentifierNamesGenerator) identifierNamesGeneratorFactory: TIdentifierNamesGeneratorFactory, @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator, @inject(ServiceIdentifiers.IOptions) options: IOptions ) { super(identifierNamesGeneratorFactory, randomGenerator, options); this.customCodeHelperFactory = customCodeHelperFactory; this.stringArrayStorage = stringArrayStorage; } /** * @param {TNodeWithStatements} nodeWithStatements * @param {ICallsGraphData[]} callsGraphData */ public appendOnFinalizingStage (nodeWithStatements: TNodeWithStatements, callsGraphData: ICallsGraphData[]): void { if (!this.stringArrayStorage.getLength()) { return; } // stringArray helper nodes append const scopeStatements: TStatement[] = NodeAppender.getScopeStatements(nodeWithStatements); this.appendCustomNodeIfExist( CustomCodeHelper.StringArray, (customCodeHelper: ICustomCodeHelper>) => { NodeAppender.insertAtIndex( nodeWithStatements, customCodeHelper.getNode(), this.getScopeStatementRandomIndex(scopeStatements) ); } ); // stringArrayCallsWrapper helper nodes append for (const stringArrayEncoding of this.options.stringArrayEncoding) { const stringArrayCallsWrapperCodeHelperName: CustomCodeHelper = this.getStringArrayCallsWrapperCodeHelperName(stringArrayEncoding); this.appendCustomNodeIfExist( stringArrayCallsWrapperCodeHelperName, (customCodeHelper: ICustomCodeHelper>) => { NodeAppender.insertAtIndex( nodeWithStatements, customCodeHelper.getNode(), this.getScopeStatementRandomIndex(scopeStatements) ); } ); } } public initialize (): void { this.customCodeHelpers = new Map (); if (!this.options.stringArray) { return; } const stringArrayFunctionName: string = this.stringArrayStorage.getStorageName(); // stringArray helper initialize const stringArrayCodeHelper: ICustomCodeHelper> = this.customCodeHelperFactory(CustomCodeHelper.StringArray); stringArrayCodeHelper.initialize( this.stringArrayStorage, stringArrayFunctionName ); this.customCodeHelpers.set(CustomCodeHelper.StringArray, stringArrayCodeHelper); // stringArrayCallsWrapper helper initialize for (const stringArrayEncoding of this.options.stringArrayEncoding) { const stringArrayCallsWrapperCodeHelperName: CustomCodeHelper = this.getStringArrayCallsWrapperCodeHelperName(stringArrayEncoding); const stringArrayCallsWrapperCodeHelper: ICustomCodeHelper> = this.customCodeHelperFactory(stringArrayCallsWrapperCodeHelperName); const stringArrayCallsWrapperName: string = this.stringArrayStorage.getStorageCallsWrapperName(stringArrayEncoding); stringArrayCallsWrapperCodeHelper.initialize( stringArrayFunctionName, stringArrayCallsWrapperName, this.stringArrayStorage.getIndexShiftAmount() ); this.customCodeHelpers.set(stringArrayCallsWrapperCodeHelperName, stringArrayCallsWrapperCodeHelper); } } /** * @param {TStringArrayEncoding} stringArrayEncoding * @returns {CustomCodeHelper} */ private getStringArrayCallsWrapperCodeHelperName (stringArrayEncoding: TStringArrayEncoding): CustomCodeHelper { return StringArrayCodeHelperGroup .stringArrayCallsWrapperCodeHelperMap.get(stringArrayEncoding) ?? CustomCodeHelper.StringArrayCallsWrapper; } /** * @param {TStatement[]} scopeStatements * @returns {number} */ private getScopeStatementRandomIndex (scopeStatements: TStatement[]): number { return this.randomGenerator.getRandomInteger( 0, Math.max(0, scopeStatements.length) ); } }