pulumi/pkg/graph/topsort.go
joeduffy 722e963f89 Rename tempmark to visiting and mark to visited
Better variable names, per Eric's code review feedback.
2017-02-13 14:41:20 -08:00

45 lines
1.4 KiB
Go

// Copyright 2016 Marapongo, Inc. All rights reserved.
package graph
import (
"errors"
)
// TopSort topologically sorts the graph, yielding an array of nodes that are in dependency order, using a simple
// DFS-based algorithm. The graph must be acyclic, otherwise this function will return an error.
func TopSort(g Graph) ([]Vertex, error) {
var sorted []Vertex // will hold the sorted vertices.
visiting := make(map[Vertex]bool) // temporary entries to detect cycles.
visited := make(map[Vertex]bool) // entries to avoid visiting the same node twice.
// Now enumerate the roots, topologically sorting their dependencies.
roots := g.Roots()
for _, r := range roots {
if err := topvisit(r, &sorted, visiting, visited); err != nil {
return sorted, err
}
}
return sorted, nil
}
func topvisit(n Vertex, sorted *[]Vertex, visiting map[Vertex]bool, visited map[Vertex]bool) error {
if visiting[n] {
// This is not a DAG! Stop sorting right away, and issue an error.
// TODO: use a real error here; and also ideally give an error message that makes sense (w/ the full cycle).
return errors.New("Graph is not a DAG")
}
if !visited[n] {
visiting[n] = true
for _, m := range n.Outs() {
if err := topvisit(m.To(), sorted, visiting, visited); err != nil {
return err
}
}
visited[n] = true
visiting[n] = false
*sorted = append(*sorted, n)
}
return nil
}