|
|
|
|
@ -4,6 +4,7 @@ import (
|
|
|
|
|
"log"
|
|
|
|
|
|
|
|
|
|
"github.com/hashicorp/terraform/config/module"
|
|
|
|
|
"github.com/hashicorp/terraform/dag"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// GraphNodeDestroyerCBD must be implemented by nodes that might be
|
|
|
|
|
@ -39,6 +40,7 @@ func (t *CBDEdgeTransformer) Transform(g *Graph) error {
|
|
|
|
|
log.Printf("[TRACE] CBDEdgeTransformer: Beginning CBD transformation...")
|
|
|
|
|
|
|
|
|
|
// Go through and reverse any destroy edges
|
|
|
|
|
destroyMap := make(map[string][]dag.Vertex)
|
|
|
|
|
for _, v := range g.Vertices() {
|
|
|
|
|
dn, ok := v.(GraphNodeDestroyerCBD)
|
|
|
|
|
if !ok {
|
|
|
|
|
@ -57,11 +59,132 @@ func (t *CBDEdgeTransformer) Transform(g *Graph) error {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.Printf("[TRACE] CBDEdgeTransformer: inverting edge: %s => %s",
|
|
|
|
|
dag.VertexName(de.Source()), dag.VertexName(de.Target()))
|
|
|
|
|
|
|
|
|
|
// Found it! Invert.
|
|
|
|
|
g.RemoveEdge(de)
|
|
|
|
|
g.Connect(&DestroyEdge{S: de.Target(), T: de.Source()})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Add this to the list of nodes that we need to fix up
|
|
|
|
|
// the edges for (step 2 above in the docs).
|
|
|
|
|
key := dn.DestroyAddr().String()
|
|
|
|
|
destroyMap[key] = append(destroyMap[key], v)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If we have no CBD nodes, then our work here is done
|
|
|
|
|
if len(destroyMap) == 0 {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We have CBD nodes. We now have to move on to the much more difficult
|
|
|
|
|
// task of connecting dependencies of the creation side of the destroy
|
|
|
|
|
// to the destruction node. The easiest way to explain this is an example:
|
|
|
|
|
//
|
|
|
|
|
// Given a pre-destroy dependence of: A => B
|
|
|
|
|
// And A has CBD set.
|
|
|
|
|
//
|
|
|
|
|
// The resulting graph should be: A => B => A_d
|
|
|
|
|
//
|
|
|
|
|
// They key here is that B happens before A is destroyed. This is to
|
|
|
|
|
// facilitate the primary purpose for CBD: making sure that downstreams
|
|
|
|
|
// are properly updated to avoid downtime before the resource is destroyed.
|
|
|
|
|
//
|
|
|
|
|
// We can't trust that the resource being destroyed or anything that
|
|
|
|
|
// depends on it is actually in our current graph so we make a new
|
|
|
|
|
// graph in order to determine those dependencies and add them in.
|
|
|
|
|
log.Printf("[TRACE] CBDEdgeTransformer: building graph to find dependencies...")
|
|
|
|
|
depMap, err := t.depMap(destroyMap)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We now have the mapping of resource addresses to the destroy
|
|
|
|
|
// nodes they need to depend on. We now go through our own vertices to
|
|
|
|
|
// find any matching these addresses and make the connection.
|
|
|
|
|
for _, v := range g.Vertices() {
|
|
|
|
|
// We're looking for creators
|
|
|
|
|
rn, ok := v.(GraphNodeCreator)
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the address
|
|
|
|
|
addr := rn.CreateAddr()
|
|
|
|
|
key := addr.String()
|
|
|
|
|
|
|
|
|
|
// If there is nothing this resource should depend on, ignore it
|
|
|
|
|
dns, ok := depMap[key]
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We have nodes! Make the connection
|
|
|
|
|
for _, dn := range dns {
|
|
|
|
|
log.Printf("[TRACE] CBDEdgeTransformer: destroy depends on dependence: %s => %s",
|
|
|
|
|
dag.VertexName(dn), dag.VertexName(v))
|
|
|
|
|
g.Connect(dag.BasicEdge(dn, v))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (t *CBDEdgeTransformer) depMap(
|
|
|
|
|
destroyMap map[string][]dag.Vertex) (map[string][]dag.Vertex, error) {
|
|
|
|
|
// Build the graph of our config, this ensures that all resources
|
|
|
|
|
// are present in the graph.
|
|
|
|
|
g, err := (&BasicGraphBuilder{
|
|
|
|
|
Steps: []GraphTransformer{
|
|
|
|
|
&FlatConfigTransformer{Module: t.Module},
|
|
|
|
|
&AttachResourceConfigTransformer{Module: t.Module},
|
|
|
|
|
&AttachStateTransformer{State: t.State},
|
|
|
|
|
&ReferenceTransformer{},
|
|
|
|
|
},
|
|
|
|
|
}).Build(nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Using this graph, build the list of destroy nodes that each resource
|
|
|
|
|
// address should depend on. For example, when we find B, we map the
|
|
|
|
|
// address of B to A_d in the "depMap" variable below.
|
|
|
|
|
depMap := make(map[string][]dag.Vertex)
|
|
|
|
|
for _, v := range g.Vertices() {
|
|
|
|
|
// We're looking for resources.
|
|
|
|
|
rn, ok := v.(GraphNodeResource)
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the address
|
|
|
|
|
addr := rn.ResourceAddr()
|
|
|
|
|
key := addr.String()
|
|
|
|
|
|
|
|
|
|
// Get the destroy nodes that are destroying this resource.
|
|
|
|
|
// If there aren't any, then we don't need to worry about
|
|
|
|
|
// any connections.
|
|
|
|
|
dns, ok := destroyMap[key]
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Get the nodes that depend on this on. In the example above:
|
|
|
|
|
// finding B in A => B.
|
|
|
|
|
for _, v := range g.UpEdges(v).List() {
|
|
|
|
|
// We're looking for resources.
|
|
|
|
|
rn, ok := v.(GraphNodeResource)
|
|
|
|
|
if !ok {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Keep track of the destroy nodes that this address
|
|
|
|
|
// needs to depend on.
|
|
|
|
|
key := rn.ResourceAddr().String()
|
|
|
|
|
depMap[key] = append(depMap[key], dns...)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return depMap, nil
|
|
|
|
|
}
|
|
|
|
|
|