Search in sources :

Example 1 with DependencyId

use of com.synopsys.integration.bdio.model.dependencyid.DependencyId in project hub-detect by blackducksoftware.

the class PodlockParser method extractDependencyGraph.

public DependencyGraph extractDependencyGraph(final String podLockText) throws IOException {
    final LazyExternalIdDependencyGraphBuilder lazyBuilder = new LazyExternalIdDependencyGraphBuilder();
    final YAMLMapper mapper = new YAMLMapper();
    final PodfileLock podfileLock = mapper.readValue(podLockText, PodfileLock.class);
    final Map<DependencyId, Forge> forgeOverrides = createForgeOverrideMap(podfileLock);
    for (final Pod pod : podfileLock.pods) {
        logger.trace(String.format("Processing pod %s", pod.name));
        processPod(pod, forgeOverrides, lazyBuilder);
    }
    for (final Pod dependency : podfileLock.dependencies) {
        logger.trace(String.format("Processing pod dependency from pod lock file %s", dependency.name));
        final String podText = dependency.name;
        final Optional<DependencyId> dependencyId = parseDependencyId(podText);
        if (dependencyId.isPresent()) {
            lazyBuilder.addChildToRoot(dependencyId.get());
        }
    }
    logger.trace("Attempting to build the dependency graph.");
    final DependencyGraph dependencyGraph = lazyBuilder.build();
    logger.trace("Completed the dependency graph.");
    return dependencyGraph;
}
Also used : DependencyId(com.synopsys.integration.bdio.model.dependencyid.DependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) YAMLMapper(com.fasterxml.jackson.dataformat.yaml.YAMLMapper) LazyExternalIdDependencyGraphBuilder(com.synopsys.integration.bdio.graph.builder.LazyExternalIdDependencyGraphBuilder) Forge(com.synopsys.integration.bdio.model.Forge) DependencyGraph(com.synopsys.integration.bdio.graph.DependencyGraph)

Example 2 with DependencyId

use of com.synopsys.integration.bdio.model.dependencyid.DependencyId in project hub-detect by blackducksoftware.

the class PodlockParser method processPod.

private void processPod(final Pod pod, final Map<DependencyId, Forge> forgeOverrides, final LazyExternalIdDependencyGraphBuilder lazyBuilder) {
    final String podText = pod.name;
    final Optional<DependencyId> dependencyIdMaybe = parseDependencyId(podText);
    final String name = parseCorrectPodName(podText).orElse(null);
    final String version = parseVersion(podText).orElse(null);
    if (dependencyIdMaybe.isPresent()) {
        final DependencyId dependencyId = dependencyIdMaybe.get();
        final Forge forge = getForge(dependencyId, forgeOverrides);
        final ExternalId externalId = externalIdFactory.createNameVersionExternalId(forge, name, version);
        lazyBuilder.setDependencyInfo(dependencyId, name, version, externalId);
        for (final String child : pod.dependencies) {
            logger.trace(String.format("Processing pod dependency %s", child));
            final Optional<DependencyId> childId = parseDependencyId(child);
            if (childId.isPresent()) {
                if (!dependencyId.equals(childId.get())) {
                    lazyBuilder.addParentWithChild(dependencyId, childId.get());
                }
            }
        }
    }
}
Also used : DependencyId(com.synopsys.integration.bdio.model.dependencyid.DependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) ExternalId(com.synopsys.integration.bdio.model.externalid.ExternalId) Forge(com.synopsys.integration.bdio.model.Forge)

Example 3 with DependencyId

use of com.synopsys.integration.bdio.model.dependencyid.DependencyId in project hub-detect by blackducksoftware.

the class PackRatNodeParser method parseProjectDependencies.

DependencyGraph parseProjectDependencies(final List<String> packratLockContents) {
    final LazyExternalIdDependencyGraphBuilder graphBuilder = new LazyExternalIdDependencyGraphBuilder();
    DependencyId currentParent = null;
    String name = null;
    String version = null;
    for (final String line : packratLockContents) {
        if (line.startsWith("PackratFormat:") || line.startsWith("PackratVersion:") || line.startsWith("RVersion:")) {
            continue;
        }
        if (line.contains("Package: ")) {
            name = line.replace("Package: ", "").trim();
            currentParent = new NameDependencyId(name);
            graphBuilder.setDependencyName(currentParent, name);
            graphBuilder.addChildToRoot(currentParent);
            version = null;
            continue;
        }
        if (line.contains("Version: ")) {
            version = line.replace("Version: ", "").trim();
            graphBuilder.setDependencyVersion(currentParent, version);
            final DependencyId realId = new NameVersionDependencyId(name, version);
            final ExternalId externalId = this.externalIdFactory.createNameVersionExternalId(Forge.CRAN, name, version);
            graphBuilder.setDependencyAsAlias(realId, currentParent);
            graphBuilder.setDependencyInfo(realId, name, version, externalId);
            currentParent = realId;
        }
        if (line.contains("Requires: ")) {
            final String[] parts = line.replace("Requires: ", "").split(",");
            for (int i = 0; i < parts.length; i++) {
                final String childName = parts[i].trim();
                graphBuilder.addParentWithChild(currentParent, new NameDependencyId(childName));
            }
        }
    }
    return graphBuilder.build();
}
Also used : NameVersionDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameVersionDependencyId) DependencyId(com.synopsys.integration.bdio.model.dependencyid.DependencyId) NameVersionDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameVersionDependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) LazyExternalIdDependencyGraphBuilder(com.synopsys.integration.bdio.graph.builder.LazyExternalIdDependencyGraphBuilder) ExternalId(com.synopsys.integration.bdio.model.externalid.ExternalId)

Example 4 with DependencyId

use of com.synopsys.integration.bdio.model.dependencyid.DependencyId in project hub-detect by blackducksoftware.

the class GraphParserTransformer method transform.

public DependencyGraph transform(final GraphParser graphParser, final String targetArchitecture) {
    final Map<String, GraphNode> nodes = graphParser.getNodes();
    final Map<String, GraphEdge> edges = graphParser.getEdges();
    final LazyExternalIdDependencyGraphBuilder graphBuilder = new LazyExternalIdDependencyGraphBuilder();
    for (final GraphNode graphNode : nodes.values()) {
        final String name = getNameFromNode(graphNode);
        final DependencyId dependencyId = new NameDependencyId(name);
        final Optional<String> version = getVersionFromNode(graphNode);
        if (version.isPresent()) {
            final ExternalId externalId = new ExternalId(Forge.YOCTO);
            externalId.name = name;
            externalId.version = version.get();
            externalId.architecture = targetArchitecture;
            graphBuilder.setDependencyInfo(dependencyId, name, version.get(), externalId);
        }
        graphBuilder.addChildToRoot(dependencyId);
    }
    for (final GraphEdge graphEdge : edges.values()) {
        final DependencyId node1 = new NameDependencyId(getNameFromNode(graphEdge.getNode1()));
        final DependencyId node2 = new NameDependencyId(getNameFromNode(graphEdge.getNode2()));
        graphBuilder.addParentWithChild(node1, node2);
    }
    return graphBuilder.build();
}
Also used : DependencyId(com.synopsys.integration.bdio.model.dependencyid.DependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) LazyExternalIdDependencyGraphBuilder(com.synopsys.integration.bdio.graph.builder.LazyExternalIdDependencyGraphBuilder) ExternalId(com.synopsys.integration.bdio.model.externalid.ExternalId) GraphNode(com.paypal.digraph.parser.GraphNode) GraphEdge(com.paypal.digraph.parser.GraphEdge)

Example 5 with DependencyId

use of com.synopsys.integration.bdio.model.dependencyid.DependencyId in project hub-detect by blackducksoftware.

the class GemlockParser method parseDependencySectionLine.

private void parseDependencySectionLine(final String trimmedLine) {
    final NameVersion dependencyNameVersionNode = parseNameVersion(trimmedLine);
    if (dependencyNameVersionNode.getName() == null) {
        logger.error(String.format("Line in dependencies section can't be parsed: %s", trimmedLine));
    } else {
        DependencyId dependencyId = processNameVersion(dependencyNameVersionNode);
        lazyBuilder.addChildToRoot(dependencyId);
    }
}
Also used : NameVersion(com.synopsys.integration.util.NameVersion) DependencyId(com.synopsys.integration.bdio.model.dependencyid.DependencyId) NameDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameDependencyId) NameVersionDependencyId(com.synopsys.integration.bdio.model.dependencyid.NameVersionDependencyId)

Aggregations

DependencyId (com.synopsys.integration.bdio.model.dependencyid.DependencyId)7 NameDependencyId (com.synopsys.integration.bdio.model.dependencyid.NameDependencyId)7 LazyExternalIdDependencyGraphBuilder (com.synopsys.integration.bdio.graph.builder.LazyExternalIdDependencyGraphBuilder)4 NameVersionDependencyId (com.synopsys.integration.bdio.model.dependencyid.NameVersionDependencyId)4 ExternalId (com.synopsys.integration.bdio.model.externalid.ExternalId)4 Forge (com.synopsys.integration.bdio.model.Forge)3 NameVersion (com.synopsys.integration.util.NameVersion)3 DependencyGraph (com.synopsys.integration.bdio.graph.DependencyGraph)2 BUNDLED_WITH (com.blackducksoftware.integration.hub.detect.detector.rubygems.GemlockParser.GemfileLockSection.BUNDLED_WITH)1 DEPENDENCIES (com.blackducksoftware.integration.hub.detect.detector.rubygems.GemlockParser.GemfileLockSection.DEPENDENCIES)1 NONE (com.blackducksoftware.integration.hub.detect.detector.rubygems.GemlockParser.GemfileLockSection.NONE)1 SPECS (com.blackducksoftware.integration.hub.detect.detector.rubygems.GemlockParser.GemfileLockSection.SPECS)1 YAMLMapper (com.fasterxml.jackson.dataformat.yaml.YAMLMapper)1 GraphEdge (com.paypal.digraph.parser.GraphEdge)1 GraphNode (com.paypal.digraph.parser.GraphNode)1 ExternalIdFactory (com.synopsys.integration.bdio.model.externalid.ExternalIdFactory)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 Optional (java.util.Optional)1 Collectors (java.util.stream.Collectors)1