All files / src/container/modules/stack-trace-analyzer StackTraceAnalyzerModule.ts

100% Statements 20/20
100% Branches 2/2
100% Functions 3/3
100% Lines 20/20
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 531x 1x         1x 1x 1x 1x 1x   1x   6271x         6271x       6271x       6271x         6271x   6267x   6267x 60678x 44220x     16458x         16458x   16458x        
import { ContainerModule, interfaces } from 'inversify';
import { ServiceIdentifiers } from '../../ServiceIdentifiers';
 
import { ICalleeDataExtractor } from '../../../interfaces/stack-trace-analyzer/ICalleeDataExtractor';
import { IStackTraceAnalyzer } from '../../../interfaces/stack-trace-analyzer/IStackTraceAnalyzer';
 
import { CalleeDataExtractors } from '../../../enums/container/CalleeDataExtractors';
import { FunctionDeclarationCalleeDataExtractor } from '../../../stack-trace-analyzer/callee-data-extractors/FunctionDeclarationCalleeDataExtractor';
import { FunctionExpressionCalleeDataExtractor } from '../../../stack-trace-analyzer/callee-data-extractors/FunctionExpressionCalleeDataExtractor';
import { ObjectExpressionCalleeDataExtractor } from '../../../stack-trace-analyzer/callee-data-extractors/ObjectExpressionCalleeDataExtractor';
import { StackTraceAnalyzer } from '../../../stack-trace-analyzer/StackTraceAnalyzer';
 
export const stackTraceAnalyzerModule: interfaces.ContainerModule = new ContainerModule((bind: interfaces.Bind) => {
    // stack trace analyzer
    bind<IStackTraceAnalyzer>(ServiceIdentifiers.IStackTraceAnalyzer)
        .to(StackTraceAnalyzer)
        .inSingletonScope();
 
    // callee data extractors
    bind<ICalleeDataExtractor>(ServiceIdentifiers.ICalleeDataExtractor)
        .to(FunctionDeclarationCalleeDataExtractor)
        .whenTargetNamed(CalleeDataExtractors.FunctionDeclarationCalleeDataExtractor);
 
    bind<ICalleeDataExtractor>(ServiceIdentifiers.ICalleeDataExtractor)
        .to(FunctionExpressionCalleeDataExtractor)
        .whenTargetNamed(CalleeDataExtractors.FunctionExpressionCalleeDataExtractor);
 
    bind<ICalleeDataExtractor>(ServiceIdentifiers.ICalleeDataExtractor)
        .to(ObjectExpressionCalleeDataExtractor)
        .whenTargetNamed(CalleeDataExtractors.ObjectExpressionCalleeDataExtractor);
 
    // node transformers factory
    bind<ICalleeDataExtractor>(ServiceIdentifiers.Factory__ICalleeDataExtractor)
        .toFactory<ICalleeDataExtractor>((context: interfaces.Context) => {
            const cache: Map <CalleeDataExtractors, ICalleeDataExtractor> = new Map();
 
            return (calleeDataExtractorName: CalleeDataExtractors) => {
                if (cache.has(calleeDataExtractorName)) {
                    return <ICalleeDataExtractor>cache.get(calleeDataExtractorName);
                }
 
                const calleeDataExtractor: ICalleeDataExtractor = context.container.getNamed<ICalleeDataExtractor>(
                    ServiceIdentifiers.ICalleeDataExtractor,
                    calleeDataExtractorName
                );
 
                cache.set(calleeDataExtractorName, calleeDataExtractor);
 
                return calleeDataExtractor;
            };
        });
});