Add DebugVisitInfo
This encodes vertex debug information into the graph log when a vertex is visited during a walk operation. These can ordered to show how the Graph was walked. Add a mutex to the encoder so it can be used during a parallel walk. Moved string literal constants used for marshaling to pre-defined constants. Did some renaming to make the marshal* structures more consistent.
This commit is contained in:
parent
4e2865a719
commit
6d30b60144
|
@ -167,7 +167,7 @@ func (g *AcyclicGraph) Cycles() [][]Vertex {
|
||||||
// This will walk nodes in parallel if it can. Because the walk is done
|
// This will walk nodes in parallel if it can. Because the walk is done
|
||||||
// in parallel, the error returned will be a multierror.
|
// in parallel, the error returned will be a multierror.
|
||||||
func (g *AcyclicGraph) Walk(cb WalkFunc) error {
|
func (g *AcyclicGraph) Walk(cb WalkFunc) error {
|
||||||
defer g.debug.BeginOperation("Walk", "").End("")
|
defer g.debug.BeginOperation(typeWalk, "").End("")
|
||||||
|
|
||||||
// Cache the vertices since we use it multiple times
|
// Cache the vertices since we use it multiple times
|
||||||
vertices := g.Vertices()
|
vertices := g.Vertices()
|
||||||
|
@ -278,7 +278,7 @@ type vertexAtDepth struct {
|
||||||
// the vertices in start. This is not exported now but it would make sense
|
// the vertices in start. This is not exported now but it would make sense
|
||||||
// to export this publicly at some point.
|
// to export this publicly at some point.
|
||||||
func (g *AcyclicGraph) DepthFirstWalk(start []Vertex, f DepthWalkFunc) error {
|
func (g *AcyclicGraph) DepthFirstWalk(start []Vertex, f DepthWalkFunc) error {
|
||||||
defer g.debug.BeginOperation("DepthFirstWalk", "").End("")
|
defer g.debug.BeginOperation(typeDepthFirstWalk, "").End("")
|
||||||
|
|
||||||
seen := make(map[Vertex]struct{})
|
seen := make(map[Vertex]struct{})
|
||||||
frontier := make([]*vertexAtDepth, len(start))
|
frontier := make([]*vertexAtDepth, len(start))
|
||||||
|
@ -322,7 +322,7 @@ func (g *AcyclicGraph) DepthFirstWalk(start []Vertex, f DepthWalkFunc) error {
|
||||||
// reverseDepthFirstWalk does a depth-first walk _up_ the graph starting from
|
// reverseDepthFirstWalk does a depth-first walk _up_ the graph starting from
|
||||||
// the vertices in start.
|
// the vertices in start.
|
||||||
func (g *AcyclicGraph) ReverseDepthFirstWalk(start []Vertex, f DepthWalkFunc) error {
|
func (g *AcyclicGraph) ReverseDepthFirstWalk(start []Vertex, f DepthWalkFunc) error {
|
||||||
defer g.debug.BeginOperation("ReverseDepthFirstWalk", "").End("")
|
defer g.debug.BeginOperation(typeReverseDepthFirstWalk, "").End("")
|
||||||
|
|
||||||
seen := make(map[Vertex]struct{})
|
seen := make(map[Vertex]struct{})
|
||||||
frontier := make([]*vertexAtDepth, len(start))
|
frontier := make([]*vertexAtDepth, len(start))
|
||||||
|
|
12
dag/graph.go
12
dag/graph.go
|
@ -339,24 +339,30 @@ func (g *Graph) MarshalJSON() ([]byte, error) {
|
||||||
// information. After this is set, the graph will immediately encode itself to
|
// information. After this is set, the graph will immediately encode itself to
|
||||||
// the stream, and continue to record all subsequent operations.
|
// the stream, and continue to record all subsequent operations.
|
||||||
func (g *Graph) SetDebugWriter(w io.Writer) {
|
func (g *Graph) SetDebugWriter(w io.Writer) {
|
||||||
g.debug = &encoder{w}
|
g.debug = &encoder{w: w}
|
||||||
g.debug.Encode(newMarshalGraph("root", g))
|
g.debug.Encode(newMarshalGraph("root", g))
|
||||||
}
|
}
|
||||||
|
|
||||||
// DebugVertexInfo encodes arbitrary information about a vertex in the graph
|
// DebugVertexInfo encodes arbitrary information about a vertex in the graph
|
||||||
// debug logs.
|
// debug logs.
|
||||||
func (g *Graph) DebugVertexInfo(v Vertex, info string) {
|
func (g *Graph) DebugVertexInfo(v Vertex, info string) {
|
||||||
va := newVertexDebugInfo(v, info)
|
va := newVertexInfo(typeVertexInfo, v, info)
|
||||||
g.debug.Encode(va)
|
g.debug.Encode(va)
|
||||||
}
|
}
|
||||||
|
|
||||||
// DebugEdgeInfo encodes arbitrary information about an edge in the graph debug
|
// DebugEdgeInfo encodes arbitrary information about an edge in the graph debug
|
||||||
// logs.
|
// logs.
|
||||||
func (g *Graph) DebugEdgeInfo(e Edge, info string) {
|
func (g *Graph) DebugEdgeInfo(e Edge, info string) {
|
||||||
ea := newEdgeDebugInfo(e, info)
|
ea := newEdgeInfo(typeEdgeInfo, e, info)
|
||||||
g.debug.Encode(ea)
|
g.debug.Encode(ea)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DebugVisitInfo records a visit to a Vertex during a walk operation.
|
||||||
|
func (g *Graph) DebugVisitInfo(v Vertex, info string) {
|
||||||
|
vi := newVertexInfo(typeVisitInfo, v, info)
|
||||||
|
g.debug.Encode(vi)
|
||||||
|
}
|
||||||
|
|
||||||
// DebugOperation marks the start of a set of graph transformations in
|
// DebugOperation marks the start of a set of graph transformations in
|
||||||
// the debug log, and returns a DebugOperationEnd func, which marks the end of
|
// the debug log, and returns a DebugOperationEnd func, which marks the end of
|
||||||
// the operation in the log. Additional information can be added to the log via
|
// the operation in the log. Additional information can be added to the log via
|
||||||
|
|
|
@ -8,6 +8,19 @@ import (
|
||||||
"reflect"
|
"reflect"
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"sync"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
typeOperation = "Operation"
|
||||||
|
typeTransform = "Transform"
|
||||||
|
typeWalk = "Walk"
|
||||||
|
typeDepthFirstWalk = "DepthFirstWalk"
|
||||||
|
typeReverseDepthFirstWalk = "ReverseDepthFirstWalk"
|
||||||
|
typeTransitiveReduction = "TransitiveReduction"
|
||||||
|
typeEdgeInfo = "EdgeInfo"
|
||||||
|
typeVertexInfo = "VertexInfo"
|
||||||
|
typeVisitInfo = "VisitInfo"
|
||||||
)
|
)
|
||||||
|
|
||||||
// the marshal* structs are for serialization of the graph data.
|
// the marshal* structs are for serialization of the graph data.
|
||||||
|
@ -241,6 +254,7 @@ func (e DebugOperationEnd) End(info string) { e(info) }
|
||||||
// encoder provides methods to write debug data to an io.Writer, and is a noop
|
// encoder provides methods to write debug data to an io.Writer, and is a noop
|
||||||
// when no writer is present
|
// when no writer is present
|
||||||
type encoder struct {
|
type encoder struct {
|
||||||
|
sync.Mutex
|
||||||
w io.Writer
|
w io.Writer
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -249,6 +263,8 @@ func (e *encoder) Encode(i interface{}) {
|
||||||
if e == nil || e.w == nil {
|
if e == nil || e.w == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
e.Lock()
|
||||||
|
defer e.Unlock()
|
||||||
|
|
||||||
js, err := json.Marshal(i)
|
js, err := json.Marshal(i)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -266,7 +282,7 @@ func (e *encoder) Encode(i interface{}) {
|
||||||
|
|
||||||
func (e *encoder) Add(v Vertex) {
|
func (e *encoder) Add(v Vertex) {
|
||||||
e.Encode(marshalTransform{
|
e.Encode(marshalTransform{
|
||||||
Type: "Transform",
|
Type: typeTransform,
|
||||||
AddVertex: newMarshalVertex(v),
|
AddVertex: newMarshalVertex(v),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -274,21 +290,21 @@ func (e *encoder) Add(v Vertex) {
|
||||||
// Remove records the removal of Vertex v.
|
// Remove records the removal of Vertex v.
|
||||||
func (e *encoder) Remove(v Vertex) {
|
func (e *encoder) Remove(v Vertex) {
|
||||||
e.Encode(marshalTransform{
|
e.Encode(marshalTransform{
|
||||||
Type: "Transform",
|
Type: typeTransform,
|
||||||
RemoveVertex: newMarshalVertex(v),
|
RemoveVertex: newMarshalVertex(v),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *encoder) Connect(edge Edge) {
|
func (e *encoder) Connect(edge Edge) {
|
||||||
e.Encode(marshalTransform{
|
e.Encode(marshalTransform{
|
||||||
Type: "Transform",
|
Type: typeTransform,
|
||||||
AddEdge: newMarshalEdge(edge),
|
AddEdge: newMarshalEdge(edge),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e *encoder) RemoveEdge(edge Edge) {
|
func (e *encoder) RemoveEdge(edge Edge) {
|
||||||
e.Encode(marshalTransform{
|
e.Encode(marshalTransform{
|
||||||
Type: "Transform",
|
Type: typeTransform,
|
||||||
RemoveEdge: newMarshalEdge(edge),
|
RemoveEdge: newMarshalEdge(edge),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -301,14 +317,14 @@ func (e *encoder) BeginOperation(op string, info string) DebugOperationEnd {
|
||||||
}
|
}
|
||||||
|
|
||||||
e.Encode(marshalOperation{
|
e.Encode(marshalOperation{
|
||||||
Type: "Operation",
|
Type: typeOperation,
|
||||||
Begin: op,
|
Begin: op,
|
||||||
Info: info,
|
Info: info,
|
||||||
})
|
})
|
||||||
|
|
||||||
return func(info string) {
|
return func(info string) {
|
||||||
e.Encode(marshalOperation{
|
e.Encode(marshalOperation{
|
||||||
Type: "Operation",
|
Type: typeOperation,
|
||||||
End: op,
|
End: op,
|
||||||
Info: info,
|
Info: info,
|
||||||
})
|
})
|
||||||
|
@ -391,7 +407,7 @@ func decodeGraph(r io.Reader) (*marshalGraph, error) {
|
||||||
|
|
||||||
// the only Type we're concerned with here is Transform to complete the
|
// the only Type we're concerned with here is Transform to complete the
|
||||||
// Graph
|
// Graph
|
||||||
if s.Type != "Transform" {
|
if s.Type != typeTransform {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -405,31 +421,35 @@ func decodeGraph(r io.Reader) (*marshalGraph, error) {
|
||||||
return g, nil
|
return g, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// *DebugInfo structs allow encoding arbitrary information about the graph in
|
// marshalVertexInfo allows encoding arbitrary information about the a single
|
||||||
// the logs.
|
// Vertex in the logs. These are accumulated for informational display while
|
||||||
type vertexDebugInfo struct {
|
// rebuilding the graph.
|
||||||
|
type marshalVertexInfo struct {
|
||||||
Type string
|
Type string
|
||||||
Vertex *marshalVertex
|
Vertex *marshalVertex
|
||||||
Info string
|
Info string
|
||||||
}
|
}
|
||||||
|
|
||||||
func newVertexDebugInfo(v Vertex, info string) *vertexDebugInfo {
|
func newVertexInfo(infoType string, v Vertex, info string) *marshalVertexInfo {
|
||||||
return &vertexDebugInfo{
|
return &marshalVertexInfo{
|
||||||
Type: "VertexDebugInfo",
|
Type: infoType,
|
||||||
Vertex: newMarshalVertex(v),
|
Vertex: newMarshalVertex(v),
|
||||||
Info: info,
|
Info: info,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type edgeDebugInfo struct {
|
// marshalEdgeInfo allows encoding arbitrary information about the a single
|
||||||
|
// Edge in the logs. These are accumulated for informational display while
|
||||||
|
// rebuilding the graph.
|
||||||
|
type marshalEdgeInfo struct {
|
||||||
Type string
|
Type string
|
||||||
Edge *marshalEdge
|
Edge *marshalEdge
|
||||||
Info string
|
Info string
|
||||||
}
|
}
|
||||||
|
|
||||||
func newEdgeDebugInfo(e Edge, info string) *edgeDebugInfo {
|
func newEdgeInfo(infoType string, e Edge, info string) *marshalEdgeInfo {
|
||||||
return &edgeDebugInfo{
|
return &marshalEdgeInfo{
|
||||||
Type: "EdgeDebugInfo",
|
Type: infoType,
|
||||||
Edge: newMarshalEdge(e),
|
Edge: newMarshalEdge(e),
|
||||||
Info: info,
|
Info: info,
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,8 +156,8 @@ func TestGraphJSON_debugInfo(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
switch d.Type {
|
switch d.Type {
|
||||||
case "VertexDebugInfo":
|
case typeVertexInfo:
|
||||||
va := &vertexDebugInfo{}
|
va := &marshalVertexInfo{}
|
||||||
err := json.Unmarshal(d.JSON, va)
|
err := json.Unmarshal(d.JSON, va)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
@ -177,8 +177,8 @@ func TestGraphJSON_debugInfo(t *testing.T) {
|
||||||
default:
|
default:
|
||||||
t.Fatalf("unexpected annotation: %#v", va)
|
t.Fatalf("unexpected annotation: %#v", va)
|
||||||
}
|
}
|
||||||
case "EdgeDebugInfo":
|
case typeEdgeInfo:
|
||||||
ea := &edgeDebugInfo{}
|
ea := &marshalEdgeInfo{}
|
||||||
err := json.Unmarshal(d.JSON, ea)
|
err := json.Unmarshal(d.JSON, ea)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
@ -238,7 +238,7 @@ func TestGraphJSON_debugOperations(t *testing.T) {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if d.Type != "Operation" {
|
if d.Type != typeOperation {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -278,6 +278,61 @@ func TestGraphJSON_debugOperations(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Verify that we can replay visiting each vertex in order
|
||||||
|
func TestGraphJSON_debugVisits(t *testing.T) {
|
||||||
|
var g Graph
|
||||||
|
var buf bytes.Buffer
|
||||||
|
g.SetDebugWriter(&buf)
|
||||||
|
|
||||||
|
g.Add(1)
|
||||||
|
g.Add(2)
|
||||||
|
g.Add(3)
|
||||||
|
g.Add(4)
|
||||||
|
|
||||||
|
g.Connect(BasicEdge(2, 1))
|
||||||
|
g.Connect(BasicEdge(4, 2))
|
||||||
|
g.Connect(BasicEdge(3, 4))
|
||||||
|
|
||||||
|
err := (&AcyclicGraph{g}).Walk(func(v Vertex) error {
|
||||||
|
g.DebugVisitInfo(v, "basic walk")
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var visited []string
|
||||||
|
|
||||||
|
dec := json.NewDecoder(bytes.NewReader(buf.Bytes()))
|
||||||
|
for dec.More() {
|
||||||
|
var d streamDecode
|
||||||
|
|
||||||
|
err := dec.Decode(&d)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if d.Type != typeVisitInfo {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
o := &marshalVertexInfo{}
|
||||||
|
err = json.Unmarshal(d.JSON, o)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
visited = append(visited, o.Vertex.ID)
|
||||||
|
}
|
||||||
|
|
||||||
|
expected := []string{"1", "2", "4", "3"}
|
||||||
|
|
||||||
|
if strings.Join(visited, "-") != strings.Join(expected, "-") {
|
||||||
|
t.Fatalf("incorrect order of operations: %v", visited)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const testGraphJSONEmptyStr = `{
|
const testGraphJSONEmptyStr = `{
|
||||||
"Type": "Graph",
|
"Type": "Graph",
|
||||||
"Name": "root",
|
"Name": "root",
|
||||||
|
|
Loading…
Reference in New Issue