com.synopsys.integration.bdio.graph.DependencyGraphTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integration-bdio Show documentation
Show all versions of integration-bdio Show documentation
A library to allow for easy and clear creation of Black Duck I/O (bdio) documents.
The newest version!
/*
* integration-bdio
*
* Copyright (c) 2024 Synopsys, Inc.
*
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide.
*/
package com.synopsys.integration.bdio.graph;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import com.synopsys.integration.bdio.BdioNodeFactory;
import com.synopsys.integration.bdio.BdioPropertyHelper;
import com.synopsys.integration.bdio.model.BdioComponent;
import com.synopsys.integration.bdio.model.BdioExternalIdentifier;
import com.synopsys.integration.bdio.model.BdioId;
import com.synopsys.integration.bdio.model.BdioNode;
import com.synopsys.integration.bdio.model.dependency.Dependency;
import com.synopsys.integration.bdio.model.externalid.ExternalId;
public class DependencyGraphTransformer {
private final BdioPropertyHelper bdioPropertyHelper;
private final BdioNodeFactory bdioNodeFactory;
public DependencyGraphTransformer(BdioPropertyHelper bdioPropertyHelper, BdioNodeFactory bdioNodeFactory) {
this.bdioPropertyHelper = bdioPropertyHelper;
this.bdioNodeFactory = bdioNodeFactory;
}
public List transformDependencyGraph(
DependencyGraph graph,
BdioNode currentNode,
Set dependencies,
Map existingComponents
) {
List addedComponents = new ArrayList<>();
for (Dependency dependency : dependencies) {
if (!existingComponents.containsKey(dependency.getExternalId())) {
BdioComponent addedNode = componentFromDependency(dependency);
addedComponents.add(addedNode);
existingComponents.put(dependency.getExternalId(), addedNode);
List addedChildren = transformDependencyGraph(graph, addedNode, graph.getChildrenForParent(dependency), existingComponents);
addedComponents.addAll(addedChildren);
}
bdioPropertyHelper.addRelationship(currentNode, existingComponents.get(dependency.getExternalId()));
}
return addedComponents;
}
private BdioComponent componentFromDependency(Dependency dependency) {
String componentName = dependency.getName();
String componentVersion = dependency.getVersion();
BdioId componentId = dependency.getExternalId().createBdioId();
BdioExternalIdentifier componentExternalIdentifier = bdioPropertyHelper.createExternalIdentifier(dependency.getExternalId());
BdioComponent component = bdioNodeFactory.createComponent(componentName, componentVersion, componentId, componentExternalIdentifier);
return component;
}
}