This repository was archived by the owner on Aug 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraph.go
67 lines (54 loc) · 1.61 KB
/
graph.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package core
import (
"github.com/hashicorp/hcl/v2"
"bridgedl/config"
"bridgedl/graph"
)
// GraphBuilder builds a graph by applying a series of sequential
// transformation steps.
type GraphBuilder struct {
Bridge *config.Bridge
Impls *componentImpls
}
// Build iterates over the transformation steps of the GraphBuilder to build a graph.
func (b *GraphBuilder) Build() (*graph.DirectedGraph, hcl.Diagnostics) {
var diags hcl.Diagnostics
steps := []GraphTransformer{
// Add all blocks as graph vertices.
&AddComponentsTransformer{
Bridge: b.Bridge,
},
// Attach component implementations.
&AttachImplementationsTransformer{
Impls: b.Impls,
},
// Attach decode specs.
// This needs to be done before trying to evaluate references
// between vertices, because specs allow decoding the HCL
// configurations which contain those resolvable references.
&AttachSpecsTransformer{},
// Resolve references and connect vertices.
&ConnectReferencesTransformer{},
}
g := graph.NewDirectedGraph()
for _, step := range steps {
trsfDiags := step.Transform(g)
diags = diags.Extend(trsfDiags)
}
return g, diags
}
// GraphTransformer operates transformations on a graph.
type GraphTransformer interface {
Transform(*graph.DirectedGraph) hcl.Diagnostics
}
// Color codes used for representing Bridge components on a DOT graph.
//
// Those are from the Brewer palette "Set2" (https://www.graphviz.org/doc/info/colors.html).
const (
dotNodeColor1 = "/set26/1"
dotNodeColor2 = "/set26/2"
dotNodeColor3 = "/set26/3"
dotNodeColor4 = "/set26/4"
dotNodeColor5 = "/set26/5"
dotNodeColor6 = "/set26/6"
)