Search in sources :

Example 1 with CodeLocationNameGenerator

use of com.synopsys.integration.detect.workflow.codelocation.CodeLocationNameGenerator in project synopsys-detect by blackducksoftware.

the class SingletonFactory method createUtilitySingletons.

public UtilitySingletons createUtilitySingletons(EventSingletons eventSingletons) throws DetectUserFriendlyException {
    ExternalIdFactory externalIdFactory = new ExternalIdFactory();
    ConnectionDetails connectionDetails = detectConfigurationFactory.createConnectionDetails();
    ConnectionFactory connectionFactory = new ConnectionFactory(connectionDetails);
    ArtifactResolver artifactResolver = new ArtifactResolver(connectionFactory, gson);
    ArtifactoryZipInstaller artifactoryZipInstaller = new ArtifactoryZipInstaller(artifactResolver);
    AirGapPathFinder airGapPathFinder = new AirGapPathFinder();
    BdioOptions bdioOptions = detectConfigurationFactory.createBdioOptions();
    CodeLocationNameGenerator codeLocationNameGenerator = detectConfigurationFactory.createCodeLocationOverride().map(CodeLocationNameGenerator::withOverride).orElse(CodeLocationNameGenerator.withPrefixSuffix(bdioOptions.getProjectCodeLocationPrefix().orElse(null), bdioOptions.getProjectCodeLocationSuffix().orElse(null)));
    CodeLocationNameManager codeLocationNameManager = new CodeLocationNameManager(codeLocationNameGenerator);
    AirGapInspectorPaths airGapInspectorPaths = new AirGapInspectorPaths(airGapPathFinder);
    DetectExecutableRunner executableRunner = DetectExecutableRunner.newDebug(eventSystem);
    DirectoryExecutableFinder directoryExecutableFinder = DirectoryExecutableFinder.forCurrentOperatingSystem(fileFinder);
    SystemPathExecutableFinder systemExecutableFinder = new SystemPathExecutableFinder(directoryExecutableFinder);
    DetectExecutableResolver detectExecutableResolver = new DetectExecutableResolver(directoryExecutableFinder, systemExecutableFinder, detectConfigurationFactory.createDetectExecutableOptions());
    OperationSystem operationSystem = new OperationSystem(eventSingletons.getStatusEventPublisher());
    OperationWrapper operationWrapper = new OperationWrapper();
    return new UtilitySingletons(externalIdFactory, connectionDetails, artifactResolver, codeLocationNameManager, airGapInspectorPaths, executableRunner, detectExecutableResolver, operationSystem, operationWrapper, artifactoryZipInstaller);
}
Also used : AirGapInspectorPaths(com.synopsys.integration.detect.workflow.airgap.AirGapInspectorPaths) DirectoryExecutableFinder(com.synopsys.integration.detect.tool.detector.executable.DirectoryExecutableFinder) CodeLocationNameManager(com.synopsys.integration.detect.workflow.codelocation.CodeLocationNameManager) ArtifactoryZipInstaller(com.synopsys.integration.detect.tool.detector.inspectors.ArtifactoryZipInstaller) OperationWrapper(com.synopsys.integration.detect.lifecycle.run.step.utility.OperationWrapper) ExternalIdFactory(com.synopsys.integration.bdio.model.externalid.ExternalIdFactory) ConnectionDetails(com.synopsys.integration.detect.configuration.connection.ConnectionDetails) OperationSystem(com.synopsys.integration.detect.workflow.status.OperationSystem) ArtifactResolver(com.synopsys.integration.detect.workflow.ArtifactResolver) SystemPathExecutableFinder(com.synopsys.integration.detect.tool.detector.executable.SystemPathExecutableFinder) BdioOptions(com.synopsys.integration.detect.workflow.bdio.BdioOptions) ConnectionFactory(com.synopsys.integration.detect.configuration.connection.ConnectionFactory) DetectExecutableResolver(com.synopsys.integration.detect.tool.detector.executable.DetectExecutableResolver) AirGapPathFinder(com.synopsys.integration.detect.workflow.airgap.AirGapPathFinder) CodeLocationNameGenerator(com.synopsys.integration.detect.workflow.codelocation.CodeLocationNameGenerator) DetectExecutableRunner(com.synopsys.integration.detect.tool.detector.executable.DetectExecutableRunner)

Aggregations

ExternalIdFactory (com.synopsys.integration.bdio.model.externalid.ExternalIdFactory)1 ConnectionDetails (com.synopsys.integration.detect.configuration.connection.ConnectionDetails)1 ConnectionFactory (com.synopsys.integration.detect.configuration.connection.ConnectionFactory)1 OperationWrapper (com.synopsys.integration.detect.lifecycle.run.step.utility.OperationWrapper)1 DetectExecutableResolver (com.synopsys.integration.detect.tool.detector.executable.DetectExecutableResolver)1 DetectExecutableRunner (com.synopsys.integration.detect.tool.detector.executable.DetectExecutableRunner)1 DirectoryExecutableFinder (com.synopsys.integration.detect.tool.detector.executable.DirectoryExecutableFinder)1 SystemPathExecutableFinder (com.synopsys.integration.detect.tool.detector.executable.SystemPathExecutableFinder)1 ArtifactoryZipInstaller (com.synopsys.integration.detect.tool.detector.inspectors.ArtifactoryZipInstaller)1 ArtifactResolver (com.synopsys.integration.detect.workflow.ArtifactResolver)1 AirGapInspectorPaths (com.synopsys.integration.detect.workflow.airgap.AirGapInspectorPaths)1 AirGapPathFinder (com.synopsys.integration.detect.workflow.airgap.AirGapPathFinder)1 BdioOptions (com.synopsys.integration.detect.workflow.bdio.BdioOptions)1 CodeLocationNameGenerator (com.synopsys.integration.detect.workflow.codelocation.CodeLocationNameGenerator)1 CodeLocationNameManager (com.synopsys.integration.detect.workflow.codelocation.CodeLocationNameManager)1 OperationSystem (com.synopsys.integration.detect.workflow.status.OperationSystem)1