1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import { inject, injectable, } from 'inversify';
- import { ServiceIdentifiers } from '../../container/ServiceIdentifiers';
- import * as format from 'string-template';
- import { TStatement } from '../../types/node/TStatement';
- import { IOptions } from '../../interfaces/options/IOptions';
- import { IRandomGenerator } from '../../interfaces/utils/IRandomGenerator';
- import { initializable } from '../../decorators/Initializable';
- import { DebugProtectionFunctionIntervalTemplate } from '../../templates/debug-protection-nodes/debug-protection-function-interval-node/DebugProtectionFunctionIntervalTemplate';
- import { AbstractCustomNode } from '../AbstractCustomNode';
- import { NodeUtils } from '../../node/NodeUtils';
- @injectable()
- export class DebugProtectionFunctionIntervalNode extends AbstractCustomNode {
- /**
- * @type {string}
- */
- @initializable()
- private debugProtectionFunctionName: string;
- /**
- * @param {IRandomGenerator} randomGenerator
- * @param {IOptions} options
- */
- constructor (
- @inject(ServiceIdentifiers.IRandomGenerator) randomGenerator: IRandomGenerator,
- @inject(ServiceIdentifiers.IOptions) options: IOptions
- ) {
- super(randomGenerator, options);
- }
- /**
- * @param {string} debugProtectionFunctionName
- */
- public initialize (debugProtectionFunctionName: string): void {
- this.debugProtectionFunctionName = debugProtectionFunctionName;
- }
- /**
- * @returns {TStatement[]}
- */
- protected getNodeStructure (): TStatement[] {
- return NodeUtils.convertCodeToStructure(this.getTemplate());
- }
- /**
- * @returns {string}
- */
- protected getTemplate (): string {
- return format(DebugProtectionFunctionIntervalTemplate(), {
- debugProtectionFunctionName: this.debugProtectionFunctionName
- });
- }
- }
|