deps

package
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 25, 2026 License: GPL-3.0 Imports: 3 Imported by: 0

Documentation

Overview

Package deps provides protocol dependency analysis and impact assessment.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func FormatTree

func FormatTree(g *Graph, root string) string

FormatTree formats dependency tree as ASCII art.

Types

type DepNode

type DepNode struct {
	Name      string   `json:"name"`
	DependsOn []string `json:"depends_on"`
	UsedBy    []string `json:"used_by"`
}

DepNode represents a node in the dependency graph.

type Graph

type Graph struct {
	Nodes map[string]*DepNode `json:"nodes"`
}

Graph represents a protocol dependency graph.

func BuildGraph

func BuildGraph(lib *protocol.Library) *Graph

BuildGraph builds a dependency graph from the protocol library.

func (*Graph) DetectCycles

func (g *Graph) DetectCycles() [][]string

DetectCycles detects circular dependencies.

func (*Graph) Impact

func (g *Graph) Impact(name string) []string

Impact returns all protocols affected by changing the given protocol.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL