github.com/rhenning/terraform@v0.8.0-beta2/terraform/transform_destroy_edge.go (about)

     1  package terraform
     2  
     3  import (
     4  	"log"
     5  
     6  	"github.com/hashicorp/terraform/config/module"
     7  	"github.com/hashicorp/terraform/dag"
     8  )
     9  
    10  // GraphNodeDestroyer must be implemented by nodes that destroy resources.
    11  type GraphNodeDestroyer interface {
    12  	dag.Vertex
    13  
    14  	// ResourceAddr is the address of the resource that is being
    15  	// destroyed by this node. If this returns nil, then this node
    16  	// is not destroying anything.
    17  	DestroyAddr() *ResourceAddress
    18  }
    19  
    20  // GraphNodeCreator must be implemented by nodes that create OR update resources.
    21  type GraphNodeCreator interface {
    22  	// ResourceAddr is the address of the resource being created or updated
    23  	CreateAddr() *ResourceAddress
    24  }
    25  
    26  // DestroyEdgeTransformer is a GraphTransformer that creates the proper
    27  // references for destroy resources. Destroy resources are more complex
    28  // in that they must be depend on the destruction of resources that
    29  // in turn depend on the CREATION of the node being destroy.
    30  //
    31  // That is complicated. Visually:
    32  //
    33  //   B_d -> A_d -> A -> B
    34  //
    35  // Notice that A destroy depends on B destroy, while B create depends on
    36  // A create. They're inverted. This must be done for example because often
    37  // dependent resources will block parent resources from deleting. Concrete
    38  // example: VPC with subnets, the VPC can't be deleted while there are
    39  // still subnets.
    40  type DestroyEdgeTransformer struct {
    41  	// Module and State are only needed to look up dependencies in
    42  	// any way possible. Either can be nil if not availabile.
    43  	Module *module.Tree
    44  	State  *State
    45  }
    46  
    47  func (t *DestroyEdgeTransformer) Transform(g *Graph) error {
    48  	log.Printf("[TRACE] DestroyEdgeTransformer: Beginning destroy edge transformation...")
    49  
    50  	// Build a map of what is being destroyed (by address string) to
    51  	// the list of destroyers. In general there will only be one destroyer
    52  	// but to make it more robust we support multiple.
    53  	destroyers := make(map[string][]GraphNodeDestroyer)
    54  	for _, v := range g.Vertices() {
    55  		dn, ok := v.(GraphNodeDestroyer)
    56  		if !ok {
    57  			continue
    58  		}
    59  
    60  		addr := dn.DestroyAddr()
    61  		if addr == nil {
    62  			continue
    63  		}
    64  
    65  		key := addr.String()
    66  		log.Printf(
    67  			"[TRACE] DestroyEdgeTransformer: %s destroying %q",
    68  			dag.VertexName(dn), key)
    69  		destroyers[key] = append(destroyers[key], dn)
    70  	}
    71  
    72  	// If we aren't destroying anything, there will be no edges to make
    73  	// so just exit early and avoid future work.
    74  	if len(destroyers) == 0 {
    75  		return nil
    76  	}
    77  
    78  	// Go through and connect creators to destroyers. Going along with
    79  	// our example, this makes: A_d => A
    80  	for _, v := range g.Vertices() {
    81  		cn, ok := v.(GraphNodeCreator)
    82  		if !ok {
    83  			continue
    84  		}
    85  
    86  		addr := cn.CreateAddr()
    87  		if addr == nil {
    88  			continue
    89  		}
    90  
    91  		key := addr.String()
    92  		ds := destroyers[key]
    93  		if len(ds) == 0 {
    94  			continue
    95  		}
    96  
    97  		for _, d := range ds {
    98  			// For illustrating our example
    99  			a_d := d.(dag.Vertex)
   100  			a := v
   101  
   102  			log.Printf(
   103  				"[TRACE] DestroyEdgeTransformer: connecting creator/destroyer: %s, %s",
   104  				dag.VertexName(a), dag.VertexName(a_d))
   105  
   106  			g.Connect(&DestroyEdge{S: a, T: a_d})
   107  		}
   108  	}
   109  
   110  	// This is strange but is the easiest way to get the dependencies
   111  	// of a node that is being destroyed. We use another graph to make sure
   112  	// the resource is in the graph and ask for references. We have to do this
   113  	// because the node that is being destroyed may NOT be in the graph.
   114  	//
   115  	// Example: resource A is force new, then destroy A AND create A are
   116  	// in the graph. BUT if resource A is just pure destroy, then only
   117  	// destroy A is in the graph, and create A is not.
   118  	steps := []GraphTransformer{
   119  		&OutputTransformer{Module: t.Module},
   120  		&AttachResourceConfigTransformer{Module: t.Module},
   121  		&AttachStateTransformer{State: t.State},
   122  		&ReferenceTransformer{},
   123  	}
   124  
   125  	// Go through all the nodes being destroyed and create a graph.
   126  	// The resulting graph is only of things being CREATED. For example,
   127  	// following our example, the resulting graph would be:
   128  	//
   129  	//   A, B (with no edges)
   130  	//
   131  	var tempG Graph
   132  	var tempDestroyed []dag.Vertex
   133  	for d, _ := range destroyers {
   134  		// d is what is being destroyed. We parse the resource address
   135  		// which it came from it is a panic if this fails.
   136  		addr, err := ParseResourceAddress(d)
   137  		if err != nil {
   138  			panic(err)
   139  		}
   140  
   141  		// This part is a little bit weird but is the best way to
   142  		// find the dependencies we need to: build a graph and use the
   143  		// attach config and state transformers then ask for references.
   144  		node := &NodeAbstractResource{Addr: addr}
   145  		tempG.Add(node)
   146  		tempDestroyed = append(tempDestroyed, node)
   147  	}
   148  
   149  	// Run the graph transforms so we have the information we need to
   150  	// build references.
   151  	for _, s := range steps {
   152  		if err := s.Transform(&tempG); err != nil {
   153  			return err
   154  		}
   155  	}
   156  
   157  	log.Printf("[TRACE] DestroyEdgeTransformer: reference graph: %s", tempG.String())
   158  
   159  	// Go through all the nodes in the graph and determine what they
   160  	// depend on.
   161  	for _, v := range tempDestroyed {
   162  		// Find all ancestors of this to determine the edges we'll depend on
   163  		vs, err := tempG.Ancestors(v)
   164  		if err != nil {
   165  			return err
   166  		}
   167  
   168  		refs := make([]dag.Vertex, 0, vs.Len())
   169  		for _, raw := range vs.List() {
   170  			refs = append(refs, raw.(dag.Vertex))
   171  		}
   172  
   173  		log.Printf(
   174  			"[TRACE] DestroyEdgeTransformer: creation node %q references %v",
   175  			dag.VertexName(v), refs)
   176  
   177  		// If we have no references, then we won't need to do anything
   178  		if len(refs) == 0 {
   179  			continue
   180  		}
   181  
   182  		// Get the destroy node for this. In the example of our struct,
   183  		// we are currently at B and we're looking for B_d.
   184  		rn, ok := v.(GraphNodeResource)
   185  		if !ok {
   186  			continue
   187  		}
   188  
   189  		addr := rn.ResourceAddr()
   190  		if addr == nil {
   191  			continue
   192  		}
   193  
   194  		dns := destroyers[addr.String()]
   195  
   196  		// We have dependencies, check if any are being destroyed
   197  		// to build the list of things that we must depend on!
   198  		//
   199  		// In the example of the struct, if we have:
   200  		//
   201  		//   B_d => A_d => A => B
   202  		//
   203  		// Then at this point in the algorithm we started with B_d,
   204  		// we built B (to get dependencies), and we found A. We're now looking
   205  		// to see if A_d exists.
   206  		var depDestroyers []dag.Vertex
   207  		for _, v := range refs {
   208  			rn, ok := v.(GraphNodeResource)
   209  			if !ok {
   210  				continue
   211  			}
   212  
   213  			addr := rn.ResourceAddr()
   214  			if addr == nil {
   215  				continue
   216  			}
   217  
   218  			key := addr.String()
   219  			if ds, ok := destroyers[key]; ok {
   220  				for _, d := range ds {
   221  					depDestroyers = append(depDestroyers, d.(dag.Vertex))
   222  					log.Printf(
   223  						"[TRACE] DestroyEdgeTransformer: destruction of %q depends on %s",
   224  						key, dag.VertexName(d))
   225  				}
   226  			}
   227  		}
   228  
   229  		// Go through and make the connections. Use the variable
   230  		// names "a_d" and "b_d" to reference our example.
   231  		for _, a_d := range dns {
   232  			for _, b_d := range depDestroyers {
   233  				if b_d != a_d {
   234  					g.Connect(dag.BasicEdge(b_d, a_d))
   235  				}
   236  			}
   237  		}
   238  	}
   239  
   240  	return nil
   241  }