public CommandLineHandler( Preprocessing.IManager preprocessingManager, IStepsFactory preprocessingStepsFactory) { this.preprocessingManager = preprocessingManager; this.preprocessingStepsFactory = preprocessingStepsFactory; }
public static Task OpenWorkspace(this IManager logSourcesPreprocessings, IStepsFactory preprocessingStepsFactory, string workspaceUrl) { return(logSourcesPreprocessings.Preprocess( new[] { preprocessingStepsFactory.CreateOpenWorkspaceStep(new PreprocessingStepParams(workspaceUrl)) }, "opening workspace" )); }
internal GunzippingStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAggregator, IStepsFactory preprocessingStepsFactory) { this.sourceFile = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAggregator; }
public PreprocessingManagerExtension( IStepsFactory preprocessingStepsFactory, ILogProviderFactory chromeDriverLogsFactory, ITextLogParser textLogParser) { this.preprocessingStepsFactory = preprocessingStepsFactory; this.chromeDriverLogsFactory = chromeDriverLogsFactory; this.textLogParser = textLogParser; }
internal UntarStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAggregator, IStepsFactory preprocessingStepsFactory) { this.@params = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAggregator; }
public DragDropHandler( ILogSourcesManager logSourcesManager, IManager preprocessingManager, IStepsFactory preprocessingStepsFactory) { this.logSourcesManager = logSourcesManager; this.preprocessingManager = preprocessingManager; this.preprocessingStepsFactory = preprocessingStepsFactory; }
public Presenter( IView view, IManager preprocessingManager, IStepsFactory preprocessingStepsFactory ) { this.view = view; this.preprocessingManager = preprocessingManager; this.preprocessingStepsFactory = preprocessingStepsFactory; }
public Model( IManager manager, IStepsFactory stepsFactory, IExtensionsRegistry extentionsRegistry ) { this.Manager = manager; this.StepsFactory = stepsFactory; this.ExtensionsRegistry = extentionsRegistry; }
internal TextConversionPreprocessingStep( IStepsFactory preprocessingStepsFactory, ILogProviderFactory harLogsFactory, PreprocessingStepParams srcFile ) { this.preprocessingStepsFactory = preprocessingStepsFactory; this.sourceFile = srcFile; this.harLogsFactory = harLogsFactory; }
public void Setup() { workspacesManager = Substitute.For <IWorkspacesManager>(); appLaunch = Substitute.For <ILaunchUrlParser>(); preprocessingStepsFactory = Substitute.For <IStepsFactory>(); extensions = Substitute.For <IExtensionsRegistry>(); preprocessingStepsFactory.CreateURLTypeDetectionStep(null).ReturnsForAnyArgs( callInfo => new URLTypeDetectionStep( callInfo.Arg <PreprocessingStepParams>(), preprocessingStepsFactory, workspacesManager, appLaunch, extensions)); callback = Substitute.For <IPreprocessingStepCallback>(); }
internal UnpackingStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAggregator, ICredentialsCache credCache, IStepsFactory preprocessingStepsFactory) { this.@params = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAggregator; this.credCache = credCache; }
internal TimeFixerPreprocessingStep( IStepsFactory preprocessingStepsFactory, ILogProviderFactory chromeDriverLogsFactory, PreprocessingStepParams srcFile, ITextLogParser textLogParser ) { this.preprocessingStepsFactory = preprocessingStepsFactory; this.sourceFile = srcFile; this.chromeDriverLogsFactory = chromeDriverLogsFactory; this.textLogParser = textLogParser; }
internal TimeAnomalyFixingStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAggregator, ILogProviderFactoryRegistry logProviderFactoryRegistry, IStepsFactory preprocessingStepsFactory, ITraceSourceFactory traceSourceFactory) { this.@params = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAggregator; this.logProviderFactoryRegistry = logProviderFactoryRegistry; this.traceSourceFactory = traceSourceFactory; }
internal TimeAnomalyFixingStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAggregator, ILogProviderFactoryRegistry logProviderFactoryRegistry, IStepsFactory preprocessingStepsFactory, RegularExpressions.IRegexFactory regexFactory) { this.@params = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAggregator; this.logProviderFactoryRegistry = logProviderFactoryRegistry; this.regexFactory = regexFactory; }
internal URLTypeDetectionStep( PreprocessingStepParams srcFile, IStepsFactory preprocessingStepsFactory, Workspaces.IWorkspacesManager workspacesManager, AppLaunch.ILaunchUrlParser appLaunch, IExtensionsRegistry extensions ) { this.sourceFile = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.workspacesManager = workspacesManager; this.appLaunch = appLaunch; this.extensions = extensions; }
internal DownloadingStep( PreprocessingStepParams srcFile, Progress.IProgressAggregator progressAgg, Persistence.IWebContentCache cache, ICredentialsCache credCache, WebViewTools.IWebViewTools webBrowserDownloader, ILogsDownloaderConfig config, IStepsFactory preprocessingStepsFactory ) { this.sourceFile = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.progressAggregator = progressAgg; this.cache = cache; this.credCache = credCache; this.webBrowserDownloader = webBrowserDownloader; this.config = config; }
public PreprocessingManagerExtension(Preprocessing.IStepsFactory preprocessingStepsFactory) { this.preprocessingStepsFactory = preprocessingStepsFactory; }
public BuiltinStepsExtension(IStepsFactory stepsFactory) { this.stepsFactory = stepsFactory; }
public PreprocessingManagerExtension(IStepsFactory preprocessingStepsFactory, ILogProviderFactory harLogsFactory) { this.preprocessingStepsFactory = preprocessingStepsFactory; this.harLogsFactory = harLogsFactory; }
internal LocationTypeDetectionStep(PreprocessingStepParams srcFile, IStepsFactory preprocessingStepsFactory) { this.sourceFile = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; }
internal FormatDetectionStep(PreprocessingStepParams srcFile, IExtensionsRegistry extentions, IStepsFactory preprocessingStepsFactory) { this.sourceFile = srcFile; this.preprocessingStepsFactory = preprocessingStepsFactory; this.extentions = extentions; }