Search in sources :

Example 1 with DetectFontInstaller

use of com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller in project synopsys-detect by blackducksoftware.

the class DetectFontLoaderFactory method detectFontLoader.

public DetectFontLoader detectFontLoader() {
    DetectFontLocator locator;
    Optional<File> fontAirGapPath = airGapInspectorPaths.getFontsAirGapDirectory();
    if (fontAirGapPath.isPresent()) {
        locator = new AirGapFontLocator(airGapInspectorPaths);
    } else {
        locator = new OnlineDetectFontLocator(new DetectFontInstaller(artifactResolver, installedToolManager, installedToolLocator), directoryManager);
    }
    return new DetectFontLoader(locator);
}
Also used : DetectFontLoader(com.synopsys.integration.detect.workflow.blackduck.DetectFontLoader) DetectFontInstaller(com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller) OnlineDetectFontLocator(com.synopsys.integration.detect.workflow.blackduck.font.OnlineDetectFontLocator) AirGapFontLocator(com.synopsys.integration.detect.workflow.blackduck.font.AirGapFontLocator) DetectFontLocator(com.synopsys.integration.detect.workflow.blackduck.font.DetectFontLocator) OnlineDetectFontLocator(com.synopsys.integration.detect.workflow.blackduck.font.OnlineDetectFontLocator) File(java.io.File)

Example 2 with DetectFontInstaller

use of com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller in project synopsys-detect by blackducksoftware.

the class DetectBootFactory method createAirGapCreator.

public AirGapCreator createAirGapCreator(ConnectionDetails connectionDetails, DetectExecutableOptions detectExecutableOptions, Configuration freemarkerConfiguration, InstalledToolManager installedToolManager, InstalledToolLocator installedToolLocator) {
    ConnectionFactory connectionFactory = new ConnectionFactory(connectionDetails);
    ArtifactResolver artifactResolver = new ArtifactResolver(connectionFactory, gson);
    ArtifactoryZipInstaller artifactoryZipInstaller = new ArtifactoryZipInstaller(artifactResolver);
    DirectoryExecutableFinder directoryExecutableFinder = DirectoryExecutableFinder.forCurrentOperatingSystem(fileFinder);
    SystemPathExecutableFinder systemPathExecutableFinder = new SystemPathExecutableFinder(directoryExecutableFinder);
    DetectExecutableResolver detectExecutableResolver = new DetectExecutableResolver(directoryExecutableFinder, systemPathExecutableFinder, detectExecutableOptions);
    DetectExecutableRunner runner = DetectExecutableRunner.newDebug(eventSystem);
    GradleAirGapCreator gradleAirGapCreator = new GradleAirGapCreator(detectExecutableResolver, runner, freemarkerConfiguration);
    NugetInspectorAirGapCreator nugetAirGapCreator = new NugetInspectorAirGapCreator(new ArtifactoryNugetInspectorInstaller(detectInfo, artifactoryZipInstaller, new NugetInspectorExecutableLocator(detectInfo)));
    ProjectInspectorExecutableLocator projectInspectorExecutableLocator = new ProjectInspectorExecutableLocator(detectInfo);
    ArtifactoryProjectInspectorInstaller projectInspectorInstaller = new ArtifactoryProjectInspectorInstaller(detectInfo, artifactoryZipInstaller, projectInspectorExecutableLocator);
    ProjectInspectorAirGapCreator projectInspectorAirGapCreator = new ProjectInspectorAirGapCreator(projectInspectorInstaller);
    DockerAirGapCreator dockerAirGapCreator = new DockerAirGapCreator(new DockerInspectorInstaller(artifactResolver));
    DetectFontAirGapCreator detectFontAirGapCreator = new DetectFontAirGapCreator(new DetectFontInstaller(artifactResolver, installedToolManager, installedToolLocator));
    return new AirGapCreator(new AirGapPathFinder(), eventSystem, gradleAirGapCreator, nugetAirGapCreator, dockerAirGapCreator, detectFontAirGapCreator, projectInspectorAirGapCreator);
}
Also used : ArtifactoryNugetInspectorInstaller(com.synopsys.integration.detect.tool.detector.inspectors.nuget.ArtifactoryNugetInspectorInstaller) NugetInspectorExecutableLocator(com.synopsys.integration.detect.tool.detector.inspectors.nuget.NugetInspectorExecutableLocator) DirectoryExecutableFinder(com.synopsys.integration.detect.tool.detector.executable.DirectoryExecutableFinder) ArtifactoryZipInstaller(com.synopsys.integration.detect.tool.detector.inspectors.ArtifactoryZipInstaller) GradleAirGapCreator(com.synopsys.integration.detect.workflow.airgap.GradleAirGapCreator) ArtifactoryProjectInspectorInstaller(com.synopsys.integration.detect.tool.detector.inspectors.projectinspector.ArtifactoryProjectInspectorInstaller) NugetInspectorAirGapCreator(com.synopsys.integration.detect.workflow.airgap.NugetInspectorAirGapCreator) DockerInspectorInstaller(com.synopsys.integration.detect.tool.detector.inspectors.DockerInspectorInstaller) ArtifactResolver(com.synopsys.integration.detect.workflow.ArtifactResolver) SystemPathExecutableFinder(com.synopsys.integration.detect.tool.detector.executable.SystemPathExecutableFinder) ProjectInspectorExecutableLocator(com.synopsys.integration.detect.tool.detector.inspectors.projectinspector.ProjectInspectorExecutableLocator) DockerAirGapCreator(com.synopsys.integration.detect.workflow.airgap.DockerAirGapCreator) DetectFontAirGapCreator(com.synopsys.integration.detect.workflow.airgap.DetectFontAirGapCreator) DockerAirGapCreator(com.synopsys.integration.detect.workflow.airgap.DockerAirGapCreator) AirGapCreator(com.synopsys.integration.detect.workflow.airgap.AirGapCreator) NugetInspectorAirGapCreator(com.synopsys.integration.detect.workflow.airgap.NugetInspectorAirGapCreator) GradleAirGapCreator(com.synopsys.integration.detect.workflow.airgap.GradleAirGapCreator) ProjectInspectorAirGapCreator(com.synopsys.integration.detect.workflow.airgap.ProjectInspectorAirGapCreator) DetectFontAirGapCreator(com.synopsys.integration.detect.workflow.airgap.DetectFontAirGapCreator) ConnectionFactory(com.synopsys.integration.detect.configuration.connection.ConnectionFactory) DetectFontInstaller(com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller) DetectExecutableResolver(com.synopsys.integration.detect.tool.detector.executable.DetectExecutableResolver) AirGapPathFinder(com.synopsys.integration.detect.workflow.airgap.AirGapPathFinder) ProjectInspectorAirGapCreator(com.synopsys.integration.detect.workflow.airgap.ProjectInspectorAirGapCreator) DetectExecutableRunner(com.synopsys.integration.detect.tool.detector.executable.DetectExecutableRunner)

Example 3 with DetectFontInstaller

use of com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller in project synopsys-detect by blackducksoftware.

the class FontLoaderTestIT method createTempDirectory.

@BeforeEach
public void createTempDirectory() throws Exception {
    fontDirectory = Files.createTempDirectory("junit_test_font_loader").toFile();
    PropertyConfiguration propertyConfiguration = new PropertyConfiguration(Collections.emptyList());
    Gson gson = new Gson();
    DetectConfigurationFactory detectConfigurationFactory = new DetectConfigurationFactory(new DetectPropertyConfiguration(propertyConfiguration, new SimplePathResolver()), gson);
    ConnectionFactory connectionFactory = new ConnectionFactory(detectConfigurationFactory.createConnectionDetails());
    ArtifactResolver artifactResolver = new ArtifactResolver(connectionFactory, gson);
    InstalledToolManager installedToolManager = new InstalledToolManager();
    InstalledToolLocator installedToolLocator = new InstalledToolLocator(Paths.get(""), new Gson());
    DetectFontInstaller installer = new DetectFontInstaller(artifactResolver, installedToolManager, installedToolLocator);
    DirectoryOptions directoryOptions = new DirectoryOptions(null, null, null, null, fontDirectory.toPath(), null);
    DirectoryManager directoryManager = new DirectoryManager(directoryOptions, DetectRunId.createDefault());
    detectFontLocator = new OnlineDetectFontLocator(installer, directoryManager);
}
Also used : InstalledToolLocator(com.synopsys.integration.detect.tool.cache.InstalledToolLocator) DirectoryManager(com.synopsys.integration.detect.workflow.file.DirectoryManager) Gson(com.google.gson.Gson) SimplePathResolver(com.synopsys.integration.configuration.property.types.path.SimplePathResolver) ArtifactResolver(com.synopsys.integration.detect.workflow.ArtifactResolver) ConnectionFactory(com.synopsys.integration.detect.configuration.connection.ConnectionFactory) InstalledToolManager(com.synopsys.integration.detect.tool.cache.InstalledToolManager) DetectFontInstaller(com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller) DirectoryOptions(com.synopsys.integration.detect.workflow.file.DirectoryOptions) DetectPropertyConfiguration(com.synopsys.integration.detect.configuration.DetectPropertyConfiguration) DetectConfigurationFactory(com.synopsys.integration.detect.configuration.DetectConfigurationFactory) OnlineDetectFontLocator(com.synopsys.integration.detect.workflow.blackduck.font.OnlineDetectFontLocator) PropertyConfiguration(com.synopsys.integration.configuration.config.PropertyConfiguration) DetectPropertyConfiguration(com.synopsys.integration.detect.configuration.DetectPropertyConfiguration) BeforeEach(org.junit.jupiter.api.BeforeEach)

Aggregations

DetectFontInstaller (com.synopsys.integration.detect.workflow.blackduck.font.DetectFontInstaller)3 ConnectionFactory (com.synopsys.integration.detect.configuration.connection.ConnectionFactory)2 ArtifactResolver (com.synopsys.integration.detect.workflow.ArtifactResolver)2 OnlineDetectFontLocator (com.synopsys.integration.detect.workflow.blackduck.font.OnlineDetectFontLocator)2 Gson (com.google.gson.Gson)1 PropertyConfiguration (com.synopsys.integration.configuration.config.PropertyConfiguration)1 SimplePathResolver (com.synopsys.integration.configuration.property.types.path.SimplePathResolver)1 DetectConfigurationFactory (com.synopsys.integration.detect.configuration.DetectConfigurationFactory)1 DetectPropertyConfiguration (com.synopsys.integration.detect.configuration.DetectPropertyConfiguration)1 InstalledToolLocator (com.synopsys.integration.detect.tool.cache.InstalledToolLocator)1 InstalledToolManager (com.synopsys.integration.detect.tool.cache.InstalledToolManager)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 DockerInspectorInstaller (com.synopsys.integration.detect.tool.detector.inspectors.DockerInspectorInstaller)1 ArtifactoryNugetInspectorInstaller (com.synopsys.integration.detect.tool.detector.inspectors.nuget.ArtifactoryNugetInspectorInstaller)1 NugetInspectorExecutableLocator (com.synopsys.integration.detect.tool.detector.inspectors.nuget.NugetInspectorExecutableLocator)1 ArtifactoryProjectInspectorInstaller (com.synopsys.integration.detect.tool.detector.inspectors.projectinspector.ArtifactoryProjectInspectorInstaller)1