- Boards with subboards are now selfcontained folders with index.svg/png as the root board render. - Boards that are only containers of other boards are not rendered. For example a scenario with no modifications and only steps only has its steps rendered. - Boards with sibling boards of another type are rendered under a subdirectory indicating their type to separate them. For example a board with layers and scenarios has its layers rendered into subfolder layers and scenarios into subfolder scenarios. cc @berniexie see BoardContainer field on d2target.Board for the field you were looking for to skip renders for PDFs too.
1132 lines
23 KiB
Go
1132 lines
23 KiB
Go
// Package d2ir implements a tree data structure to keep track of the resolved value of D2
|
|
// keys.
|
|
package d2ir
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"oss.terrastruct.com/util-go/go2"
|
|
|
|
"oss.terrastruct.com/d2/d2ast"
|
|
"oss.terrastruct.com/d2/d2format"
|
|
"oss.terrastruct.com/d2/d2graph"
|
|
"oss.terrastruct.com/d2/d2parser"
|
|
)
|
|
|
|
// Most errors returned by a node should be created with d2parser.Errorf
|
|
// to indicate the offending AST node.
|
|
type Node interface {
|
|
node()
|
|
Copy(newParent Node) Node
|
|
Parent() Node
|
|
Primary() *Scalar
|
|
Map() *Map
|
|
Equal(n2 Node) bool
|
|
|
|
ast() d2ast.Node
|
|
fmt.Stringer
|
|
|
|
LastRef() Reference
|
|
LastPrimaryKey() *d2ast.Key
|
|
}
|
|
|
|
var _ Node = &Scalar{}
|
|
var _ Node = &Field{}
|
|
var _ Node = &Edge{}
|
|
var _ Node = &Array{}
|
|
var _ Node = &Map{}
|
|
|
|
type Value interface {
|
|
Node
|
|
value()
|
|
}
|
|
|
|
var _ Value = &Scalar{}
|
|
var _ Value = &Array{}
|
|
var _ Value = &Map{}
|
|
|
|
type Composite interface {
|
|
Node
|
|
Value
|
|
composite()
|
|
}
|
|
|
|
var _ Composite = &Array{}
|
|
var _ Composite = &Map{}
|
|
|
|
func (n *Scalar) node() {}
|
|
func (n *Field) node() {}
|
|
func (n *Edge) node() {}
|
|
func (n *Array) node() {}
|
|
func (n *Map) node() {}
|
|
|
|
func (n *Scalar) Parent() Node { return n.parent }
|
|
func (n *Field) Parent() Node { return n.parent }
|
|
func (n *Edge) Parent() Node { return n.parent }
|
|
func (n *Array) Parent() Node { return n.parent }
|
|
func (n *Map) Parent() Node { return n.parent }
|
|
|
|
func (n *Scalar) Primary() *Scalar { return n }
|
|
func (n *Field) Primary() *Scalar { return n.Primary_ }
|
|
func (n *Edge) Primary() *Scalar { return n.Primary_ }
|
|
func (n *Array) Primary() *Scalar { return nil }
|
|
func (n *Map) Primary() *Scalar { return nil }
|
|
|
|
func (n *Scalar) Map() *Map { return nil }
|
|
func (n *Field) Map() *Map {
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
if n.Composite == nil {
|
|
return nil
|
|
}
|
|
return n.Composite.Map()
|
|
}
|
|
func (n *Edge) Map() *Map {
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
return n.Map_
|
|
}
|
|
func (n *Array) Map() *Map { return nil }
|
|
func (n *Map) Map() *Map { return n }
|
|
|
|
func (n *Scalar) value() {}
|
|
func (n *Array) value() {}
|
|
func (n *Map) value() {}
|
|
|
|
func (n *Array) composite() {}
|
|
func (n *Map) composite() {}
|
|
|
|
func (n *Scalar) String() string { return d2format.Format(n.ast()) }
|
|
func (n *Field) String() string { return d2format.Format(n.ast()) }
|
|
func (n *Edge) String() string { return d2format.Format(n.ast()) }
|
|
func (n *Array) String() string { return d2format.Format(n.ast()) }
|
|
func (n *Map) String() string { return d2format.Format(n.ast()) }
|
|
|
|
func (n *Scalar) LastRef() Reference { return parentRef(n) }
|
|
func (n *Map) LastRef() Reference { return parentRef(n) }
|
|
func (n *Array) LastRef() Reference { return parentRef(n) }
|
|
|
|
func (n *Scalar) LastPrimaryKey() *d2ast.Key { return parentPrimaryKey(n) }
|
|
func (n *Map) LastPrimaryKey() *d2ast.Key { return parentPrimaryKey(n) }
|
|
func (n *Array) LastPrimaryKey() *d2ast.Key { return parentPrimaryKey(n) }
|
|
|
|
type Reference interface {
|
|
reference()
|
|
// Most specific AST node for the reference.
|
|
AST() d2ast.Node
|
|
Primary() bool
|
|
}
|
|
|
|
var _ Reference = &FieldReference{}
|
|
var _ Reference = &EdgeReference{}
|
|
|
|
func (r *FieldReference) reference() {}
|
|
func (r *EdgeReference) reference() {}
|
|
|
|
type Scalar struct {
|
|
parent Node
|
|
Value d2ast.Scalar `json:"value"`
|
|
}
|
|
|
|
func (s *Scalar) Copy(newParent Node) Node {
|
|
tmp := *s
|
|
s = &tmp
|
|
|
|
s.parent = newParent
|
|
return s
|
|
}
|
|
|
|
func (s *Scalar) Equal(n2 Node) bool {
|
|
s2 := n2.(*Scalar)
|
|
if _, ok := s.Value.(d2ast.String); ok {
|
|
if _, ok = s2.Value.(d2ast.String); ok {
|
|
return s.Value.ScalarString() == s2.Value.ScalarString()
|
|
}
|
|
}
|
|
return s.Value.Type() == s2.Value.Type() && s.Value.ScalarString() == s2.Value.ScalarString()
|
|
}
|
|
|
|
type Map struct {
|
|
parent Node
|
|
Fields []*Field `json:"fields"`
|
|
Edges []*Edge `json:"edges"`
|
|
}
|
|
|
|
func (m *Map) initRoot() {
|
|
m.parent = &Field{
|
|
Name: "",
|
|
References: []*FieldReference{{
|
|
Context: &RefContext{
|
|
ScopeMap: m,
|
|
},
|
|
}},
|
|
}
|
|
}
|
|
|
|
func (m *Map) Copy(newParent Node) Node {
|
|
tmp := *m
|
|
m = &tmp
|
|
|
|
m.parent = newParent
|
|
pfields := m.Fields
|
|
m.Fields = make([]*Field, 0, len(pfields))
|
|
for _, f := range pfields {
|
|
m.Fields = append(m.Fields, f.Copy(m).(*Field))
|
|
}
|
|
m.Edges = append([]*Edge(nil), m.Edges...)
|
|
for i := range m.Edges {
|
|
m.Edges[i] = m.Edges[i].Copy(m).(*Edge)
|
|
}
|
|
if m.parent == nil {
|
|
m.initRoot()
|
|
}
|
|
return m
|
|
}
|
|
|
|
// CopyBase copies the map m without layers/scenarios/steps.
|
|
func (m *Map) CopyBase(newParent Node) *Map {
|
|
if m == nil {
|
|
return (&Map{}).Copy(newParent).(*Map)
|
|
}
|
|
|
|
layers := m.DeleteField("layers")
|
|
scenarios := m.DeleteField("scenarios")
|
|
steps := m.DeleteField("steps")
|
|
m2 := m.Copy(newParent).(*Map)
|
|
if layers != nil {
|
|
m.Fields = append(m.Fields, layers)
|
|
}
|
|
if scenarios != nil {
|
|
m.Fields = append(m.Fields, scenarios)
|
|
}
|
|
if steps != nil {
|
|
m.Fields = append(m.Fields, steps)
|
|
}
|
|
return m2
|
|
}
|
|
|
|
// Root reports whether the Map is the root of the D2 tree.
|
|
func (m *Map) Root() bool {
|
|
// m.parent exists even on the root map as we store the root AST in
|
|
// m.parent.References[0].Context.Map for reporting error messages about the whole IR.
|
|
// Or if otherwise needed.
|
|
f, ok := m.parent.(*Field)
|
|
if !ok {
|
|
return false
|
|
}
|
|
return f.Root()
|
|
}
|
|
|
|
func (f *Field) Root() bool {
|
|
return f.parent == nil
|
|
}
|
|
|
|
type BoardKind string
|
|
|
|
const (
|
|
BoardLayer BoardKind = "layer"
|
|
BoardScenario BoardKind = "scenario"
|
|
BoardStep BoardKind = "step"
|
|
)
|
|
|
|
// NodeBoardKind reports whether n represents the root of a board.
|
|
// n should be *Field or *Map
|
|
func NodeBoardKind(n Node) BoardKind {
|
|
var f *Field
|
|
switch n := n.(type) {
|
|
case *Field:
|
|
if n.parent == nil {
|
|
return BoardLayer
|
|
}
|
|
f = ParentField(n)
|
|
case *Map:
|
|
f = ParentField(n)
|
|
if f.Root() {
|
|
return BoardLayer
|
|
}
|
|
f = ParentField(f)
|
|
}
|
|
if f == nil {
|
|
return ""
|
|
}
|
|
switch f.Name {
|
|
case "layers":
|
|
return BoardLayer
|
|
case "scenarios":
|
|
return BoardScenario
|
|
case "steps":
|
|
return BoardStep
|
|
default:
|
|
return ""
|
|
}
|
|
}
|
|
|
|
type Field struct {
|
|
// *Map.
|
|
parent Node
|
|
|
|
Name string `json:"name"`
|
|
|
|
// Primary_ to avoid clashing with Primary(). We need to keep it exported for
|
|
// encoding/json to marshal it so cannot prefix _ instead.
|
|
Primary_ *Scalar `json:"primary,omitempty"`
|
|
Composite Composite `json:"composite,omitempty"`
|
|
|
|
References []*FieldReference `json:"references,omitempty"`
|
|
}
|
|
|
|
func (f *Field) Copy(newParent Node) Node {
|
|
tmp := *f
|
|
f = &tmp
|
|
|
|
f.parent = newParent
|
|
f.References = append([]*FieldReference(nil), f.References...)
|
|
if f.Primary_ != nil {
|
|
f.Primary_ = f.Primary_.Copy(f).(*Scalar)
|
|
}
|
|
if f.Composite != nil {
|
|
f.Composite = f.Composite.Copy(f).(Composite)
|
|
}
|
|
return f
|
|
}
|
|
|
|
func (f *Field) lastPrimaryRef() *FieldReference {
|
|
for i := len(f.References) - 1; i >= 0; i-- {
|
|
if f.References[i].Primary() {
|
|
return f.References[i]
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (f *Field) LastPrimaryKey() *d2ast.Key {
|
|
fr := f.lastPrimaryRef()
|
|
if fr == nil {
|
|
return nil
|
|
}
|
|
return fr.Context.Key
|
|
}
|
|
|
|
func (f *Field) LastRef() Reference {
|
|
return f.References[len(f.References)-1]
|
|
}
|
|
|
|
type EdgeID struct {
|
|
SrcPath []string `json:"src_path"`
|
|
SrcArrow bool `json:"src_arrow"`
|
|
|
|
DstPath []string `json:"dst_path"`
|
|
DstArrow bool `json:"dst_arrow"`
|
|
|
|
// If nil, then any EdgeID with equal src/dst/arrows matches.
|
|
Index *int `json:"index"`
|
|
}
|
|
|
|
func NewEdgeIDs(k *d2ast.Key) (eida []*EdgeID) {
|
|
for _, ke := range k.Edges {
|
|
eid := &EdgeID{
|
|
SrcPath: ke.Src.IDA(),
|
|
SrcArrow: ke.SrcArrow == "<",
|
|
DstPath: ke.Dst.IDA(),
|
|
DstArrow: ke.DstArrow == ">",
|
|
}
|
|
if k.EdgeIndex != nil {
|
|
eid.Index = k.EdgeIndex.Int
|
|
}
|
|
eida = append(eida, eid)
|
|
}
|
|
return eida
|
|
}
|
|
|
|
func (eid *EdgeID) Copy() *EdgeID {
|
|
tmp := *eid
|
|
eid = &tmp
|
|
|
|
eid.SrcPath = append([]string(nil), eid.SrcPath...)
|
|
eid.DstPath = append([]string(nil), eid.DstPath...)
|
|
return eid
|
|
}
|
|
|
|
func (eid *EdgeID) Match(eid2 *EdgeID) bool {
|
|
if eid.Index != nil && eid2.Index != nil {
|
|
if *eid.Index != *eid2.Index {
|
|
return false
|
|
}
|
|
}
|
|
|
|
if len(eid.SrcPath) != len(eid2.SrcPath) {
|
|
return false
|
|
}
|
|
if eid.SrcArrow != eid2.SrcArrow {
|
|
return false
|
|
}
|
|
for i, s := range eid.SrcPath {
|
|
if !strings.EqualFold(s, eid2.SrcPath[i]) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
if len(eid.DstPath) != len(eid2.DstPath) {
|
|
return false
|
|
}
|
|
if eid.DstArrow != eid2.DstArrow {
|
|
return false
|
|
}
|
|
for i, s := range eid.DstPath {
|
|
if !strings.EqualFold(s, eid2.DstPath[i]) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// resolve resolves both underscores and commons in eid.
|
|
// It returns the new eid, containing map adjusted for underscores and common ida.
|
|
func (eid *EdgeID) resolve(m *Map) (_ *EdgeID, _ *Map, common []string, _ error) {
|
|
eid = eid.Copy()
|
|
maxUnderscores := go2.Max(countUnderscores(eid.SrcPath), countUnderscores(eid.DstPath))
|
|
for i := 0; i < maxUnderscores; i++ {
|
|
if eid.SrcPath[0] == "_" {
|
|
eid.SrcPath = eid.SrcPath[1:]
|
|
} else {
|
|
mf := ParentField(m)
|
|
eid.SrcPath = append([]string{mf.Name}, eid.SrcPath...)
|
|
}
|
|
if eid.DstPath[0] == "_" {
|
|
eid.DstPath = eid.DstPath[1:]
|
|
} else {
|
|
mf := ParentField(m)
|
|
eid.DstPath = append([]string{mf.Name}, eid.DstPath...)
|
|
}
|
|
m = ParentMap(m)
|
|
if m == nil {
|
|
return nil, nil, nil, errors.New("invalid underscore")
|
|
}
|
|
}
|
|
|
|
for len(eid.SrcPath) > 1 && len(eid.DstPath) > 1 {
|
|
if !strings.EqualFold(eid.SrcPath[0], eid.DstPath[0]) {
|
|
return eid, m, common, nil
|
|
}
|
|
common = append(common, eid.SrcPath[0])
|
|
eid.SrcPath = eid.SrcPath[1:]
|
|
eid.DstPath = eid.DstPath[1:]
|
|
}
|
|
|
|
return eid, m, common, nil
|
|
}
|
|
|
|
type Edge struct {
|
|
// *Map
|
|
parent Node
|
|
|
|
ID *EdgeID `json:"edge_id"`
|
|
|
|
Primary_ *Scalar `json:"primary,omitempty"`
|
|
Map_ *Map `json:"map,omitempty"`
|
|
|
|
References []*EdgeReference `json:"references,omitempty"`
|
|
}
|
|
|
|
func (e *Edge) Copy(newParent Node) Node {
|
|
tmp := *e
|
|
e = &tmp
|
|
|
|
e.parent = newParent
|
|
e.References = append([]*EdgeReference(nil), e.References...)
|
|
if e.Primary_ != nil {
|
|
e.Primary_ = e.Primary_.Copy(e).(*Scalar)
|
|
}
|
|
if e.Map_ != nil {
|
|
e.Map_ = e.Map_.Copy(e).(*Map)
|
|
}
|
|
return e
|
|
}
|
|
|
|
func (e *Edge) lastPrimaryRef() *EdgeReference {
|
|
for i := len(e.References) - 1; i >= 0; i-- {
|
|
fr := e.References[i]
|
|
if fr.Context.Key.EdgeKey == nil {
|
|
return fr
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (e *Edge) LastPrimaryKey() *d2ast.Key {
|
|
er := e.lastPrimaryRef()
|
|
if er == nil {
|
|
return nil
|
|
}
|
|
return er.Context.Key
|
|
}
|
|
|
|
func (e *Edge) LastRef() Reference {
|
|
return e.References[len(e.References)-1]
|
|
}
|
|
|
|
type Array struct {
|
|
parent Node
|
|
Values []Value `json:"values"`
|
|
}
|
|
|
|
func (a *Array) Copy(newParent Node) Node {
|
|
tmp := *a
|
|
a = &tmp
|
|
|
|
a.parent = newParent
|
|
a.Values = append([]Value(nil), a.Values...)
|
|
for i := range a.Values {
|
|
a.Values[i] = a.Values[i].Copy(a).(Value)
|
|
}
|
|
return a
|
|
}
|
|
|
|
type FieldReference struct {
|
|
String d2ast.String `json:"string"`
|
|
KeyPath *d2ast.KeyPath `json:"key_path"`
|
|
|
|
Context *RefContext `json:"context"`
|
|
}
|
|
|
|
// Primary returns true if the Value in Context.Key.Value corresponds to the Field
|
|
// represented by String.
|
|
func (fr *FieldReference) Primary() bool {
|
|
if fr.KeyPath == fr.Context.Key.Key {
|
|
return len(fr.Context.Key.Edges) == 0 && fr.KeyPathIndex() == len(fr.KeyPath.Path)-1
|
|
} else if fr.KeyPath == fr.Context.Key.EdgeKey {
|
|
return len(fr.Context.Key.Edges) == 1 && fr.KeyPathIndex() == len(fr.KeyPath.Path)-1
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (fr *FieldReference) KeyPathIndex() int {
|
|
for i, sb := range fr.KeyPath.Path {
|
|
if sb.Unbox() == fr.String {
|
|
return i
|
|
}
|
|
}
|
|
panic("d2ir.KeyReference.KeyPathIndex: String not in KeyPath?")
|
|
}
|
|
|
|
func (fr *FieldReference) EdgeDest() bool {
|
|
return fr.KeyPath == fr.Context.Edge.Dst
|
|
}
|
|
|
|
func (fr *FieldReference) InEdge() bool {
|
|
return fr.Context.Edge != nil
|
|
}
|
|
|
|
func (fr *FieldReference) AST() d2ast.Node {
|
|
if fr.String == nil {
|
|
// Root map.
|
|
return fr.Context.Scope
|
|
}
|
|
return fr.String
|
|
}
|
|
|
|
type EdgeReference struct {
|
|
Context *RefContext `json:"context"`
|
|
}
|
|
|
|
func (er *EdgeReference) AST() d2ast.Node {
|
|
return er.Context.Edge
|
|
}
|
|
|
|
// Primary returns true if the Value in Context.Key.Value corresponds to the *Edge
|
|
// represented by Context.Edge
|
|
func (er *EdgeReference) Primary() bool {
|
|
return len(er.Context.Key.Edges) == 1 && er.Context.Key.EdgeKey == nil
|
|
}
|
|
|
|
type RefContext struct {
|
|
Edge *d2ast.Edge `json:"edge"`
|
|
Key *d2ast.Key `json:"key"`
|
|
Scope *d2ast.Map `json:"-"`
|
|
ScopeMap *Map `json:"-"`
|
|
}
|
|
|
|
func (rc *RefContext) Copy() *RefContext {
|
|
tmp := *rc
|
|
return &tmp
|
|
}
|
|
|
|
func (rc *RefContext) EdgeIndex() int {
|
|
for i, e := range rc.Key.Edges {
|
|
if e == rc.Edge {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
|
|
func (m *Map) FieldCountRecursive() int {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
acc := len(m.Fields)
|
|
for _, f := range m.Fields {
|
|
if f.Map() != nil {
|
|
acc += f.Map().FieldCountRecursive()
|
|
}
|
|
}
|
|
for _, e := range m.Edges {
|
|
if e.Map_ != nil {
|
|
acc += e.Map_.FieldCountRecursive()
|
|
}
|
|
}
|
|
return acc
|
|
}
|
|
|
|
func (m *Map) EdgeCountRecursive() int {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
acc := len(m.Edges)
|
|
for _, f := range m.Fields {
|
|
if f.Map() != nil {
|
|
acc += f.Map().EdgeCountRecursive()
|
|
}
|
|
}
|
|
for _, e := range m.Edges {
|
|
if e.Map_ != nil {
|
|
acc += e.Map_.EdgeCountRecursive()
|
|
}
|
|
}
|
|
return acc
|
|
}
|
|
|
|
func (m *Map) GetField(ida ...string) *Field {
|
|
for len(ida) > 0 && ida[0] == "_" {
|
|
m = ParentMap(m)
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
}
|
|
return m.getField(ida)
|
|
}
|
|
|
|
func (m *Map) getField(ida []string) *Field {
|
|
if len(ida) == 0 {
|
|
return nil
|
|
}
|
|
|
|
s := ida[0]
|
|
rest := ida[1:]
|
|
|
|
if s == "_" {
|
|
return nil
|
|
}
|
|
|
|
for _, f := range m.Fields {
|
|
if !strings.EqualFold(f.Name, s) {
|
|
continue
|
|
}
|
|
if len(rest) == 0 {
|
|
return f
|
|
}
|
|
if f.Map() != nil {
|
|
return f.Map().getField(rest)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Map) EnsureField(kp *d2ast.KeyPath, refctx *RefContext) (*Field, error) {
|
|
i := 0
|
|
for kp.Path[i].Unbox().ScalarString() == "_" {
|
|
m = ParentMap(m)
|
|
if m == nil {
|
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "invalid underscore: no parent")
|
|
}
|
|
if i+1 == len(kp.Path) {
|
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "field key must contain more than underscores")
|
|
}
|
|
i++
|
|
}
|
|
return m.ensureField(i, kp, refctx)
|
|
}
|
|
|
|
func (m *Map) ensureField(i int, kp *d2ast.KeyPath, refctx *RefContext) (*Field, error) {
|
|
head := kp.Path[i].Unbox().ScalarString()
|
|
|
|
if head == "_" {
|
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), `parent "_" can only be used in the beginning of paths, e.g. "_.x"`)
|
|
}
|
|
|
|
if findBoardKeyword(head) != -1 && NodeBoardKind(m) == "" {
|
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "%s is only allowed at a board root", head)
|
|
}
|
|
|
|
for _, f := range m.Fields {
|
|
if !strings.EqualFold(f.Name, head) {
|
|
continue
|
|
}
|
|
|
|
// Don't add references for fake common KeyPath from trimCommon in CreateEdge.
|
|
if refctx != nil {
|
|
f.References = append(f.References, &FieldReference{
|
|
String: kp.Path[i].Unbox(),
|
|
KeyPath: kp,
|
|
Context: refctx,
|
|
})
|
|
}
|
|
|
|
if i+1 == len(kp.Path) {
|
|
return f, nil
|
|
}
|
|
if _, ok := f.Composite.(*Array); ok {
|
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "cannot index into array")
|
|
}
|
|
if f.Map() == nil {
|
|
f.Composite = &Map{
|
|
parent: f,
|
|
}
|
|
}
|
|
return f.Map().ensureField(i+1, kp, refctx)
|
|
}
|
|
|
|
f := &Field{
|
|
parent: m,
|
|
Name: head,
|
|
}
|
|
// Don't add references for fake common KeyPath from trimCommon in CreateEdge.
|
|
if refctx != nil {
|
|
f.References = append(f.References, &FieldReference{
|
|
String: kp.Path[i].Unbox(),
|
|
KeyPath: kp,
|
|
Context: refctx,
|
|
})
|
|
}
|
|
m.Fields = append(m.Fields, f)
|
|
if i+1 == len(kp.Path) {
|
|
return f, nil
|
|
}
|
|
f.Composite = &Map{
|
|
parent: f,
|
|
}
|
|
return f.Map().ensureField(i+1, kp, refctx)
|
|
}
|
|
|
|
func (m *Map) DeleteField(ida ...string) *Field {
|
|
if len(ida) == 0 {
|
|
return nil
|
|
}
|
|
|
|
s := ida[0]
|
|
rest := ida[1:]
|
|
|
|
for i, f := range m.Fields {
|
|
if !strings.EqualFold(f.Name, s) {
|
|
continue
|
|
}
|
|
if len(rest) == 0 {
|
|
m.Fields = append(m.Fields[:i], m.Fields[i+1:]...)
|
|
return f
|
|
}
|
|
if f.Map() != nil {
|
|
return f.Map().DeleteField(rest...)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Map) GetEdges(eid *EdgeID) []*Edge {
|
|
eid, m, common, err := eid.resolve(m)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
if len(common) > 0 {
|
|
f := m.GetField(common...)
|
|
if f == nil {
|
|
return nil
|
|
}
|
|
if f.Map() != nil {
|
|
return f.Map().GetEdges(eid)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var ea []*Edge
|
|
for _, e := range m.Edges {
|
|
if e.ID.Match(eid) {
|
|
ea = append(ea, e)
|
|
}
|
|
}
|
|
return ea
|
|
}
|
|
|
|
func (m *Map) CreateEdge(eid *EdgeID, refctx *RefContext) (*Edge, error) {
|
|
if ParentEdge(m) != nil {
|
|
return nil, d2parser.Errorf(refctx.Edge, "cannot create edge inside edge")
|
|
}
|
|
|
|
eid, m, common, err := eid.resolve(m)
|
|
if err != nil {
|
|
return nil, d2parser.Errorf(refctx.Edge, err.Error())
|
|
}
|
|
if len(common) > 0 {
|
|
f, err := m.EnsureField(d2ast.MakeKeyPath(common), nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if _, ok := f.Composite.(*Array); ok {
|
|
return nil, d2parser.Errorf(refctx.Edge.Src, "cannot index into array")
|
|
}
|
|
if f.Map() == nil {
|
|
f.Composite = &Map{
|
|
parent: f,
|
|
}
|
|
}
|
|
return f.Map().CreateEdge(eid, refctx)
|
|
}
|
|
|
|
ij := findProhibitedEdgeKeyword(eid.SrcPath...)
|
|
if ij != -1 {
|
|
return nil, d2parser.Errorf(refctx.Edge.Src.Path[ij].Unbox(), "reserved keywords are prohibited in edges")
|
|
}
|
|
ij = findBoardKeyword(eid.SrcPath...)
|
|
if ij == len(eid.SrcPath)-1 {
|
|
return nil, d2parser.Errorf(refctx.Edge.Src.Path[ij].Unbox(), "edge with board keyword alone doesn't make sense")
|
|
}
|
|
src := m.GetField(eid.SrcPath...)
|
|
if NodeBoardKind(src) != "" {
|
|
return nil, d2parser.Errorf(refctx.Edge.Src, "cannot create edges between boards")
|
|
}
|
|
|
|
ij = findProhibitedEdgeKeyword(eid.DstPath...)
|
|
if ij != -1 {
|
|
return nil, d2parser.Errorf(refctx.Edge.Dst.Path[ij].Unbox(), "reserved keywords are prohibited in edges")
|
|
}
|
|
ij = findBoardKeyword(eid.DstPath...)
|
|
if ij == len(eid.DstPath)-1 {
|
|
return nil, d2parser.Errorf(refctx.Edge.Dst.Path[ij].Unbox(), "edge with board keyword alone doesn't make sense")
|
|
}
|
|
dst := m.GetField(eid.DstPath...)
|
|
if NodeBoardKind(dst) != "" {
|
|
return nil, d2parser.Errorf(refctx.Edge.Dst, "cannot create edges between boards")
|
|
}
|
|
|
|
if ParentBoard(src) != ParentBoard(dst) {
|
|
return nil, d2parser.Errorf(refctx.Edge, "cannot create edges between boards")
|
|
}
|
|
|
|
eid.Index = nil
|
|
ea := m.GetEdges(eid)
|
|
index := len(ea)
|
|
eid.Index = &index
|
|
e := &Edge{
|
|
parent: m,
|
|
ID: eid,
|
|
References: []*EdgeReference{{
|
|
Context: refctx,
|
|
}},
|
|
}
|
|
m.Edges = append(m.Edges, e)
|
|
|
|
return e, nil
|
|
}
|
|
|
|
func (s *Scalar) ast() d2ast.Node {
|
|
return s.Value
|
|
}
|
|
|
|
func (f *Field) ast() d2ast.Node {
|
|
k := &d2ast.Key{
|
|
Key: &d2ast.KeyPath{
|
|
Path: []*d2ast.StringBox{
|
|
d2ast.MakeValueBox(d2ast.RawString(f.Name, true)).StringBox(),
|
|
},
|
|
},
|
|
}
|
|
|
|
if f.Primary_ != nil {
|
|
k.Primary = d2ast.MakeValueBox(f.Primary_.ast().(d2ast.Value)).ScalarBox()
|
|
}
|
|
if f.Composite != nil {
|
|
k.Value = d2ast.MakeValueBox(f.Composite.ast().(d2ast.Value))
|
|
}
|
|
|
|
return k
|
|
}
|
|
|
|
func (e *Edge) ast() d2ast.Node {
|
|
astEdge := &d2ast.Edge{}
|
|
|
|
astEdge.Src = d2ast.MakeKeyPath(e.ID.SrcPath)
|
|
if e.ID.SrcArrow {
|
|
astEdge.SrcArrow = "<"
|
|
}
|
|
astEdge.Dst = d2ast.MakeKeyPath(e.ID.DstPath)
|
|
if e.ID.DstArrow {
|
|
astEdge.DstArrow = ">"
|
|
}
|
|
|
|
k := &d2ast.Key{
|
|
Edges: []*d2ast.Edge{astEdge},
|
|
}
|
|
|
|
if e.Primary_ != nil {
|
|
k.Primary = d2ast.MakeValueBox(e.Primary_.ast().(d2ast.Value)).ScalarBox()
|
|
}
|
|
if e.Map_ != nil {
|
|
k.Value = d2ast.MakeValueBox(e.Map_.ast().(*d2ast.Map))
|
|
}
|
|
|
|
return k
|
|
}
|
|
|
|
func (a *Array) ast() d2ast.Node {
|
|
if a == nil {
|
|
return nil
|
|
}
|
|
astArray := &d2ast.Array{}
|
|
for _, av := range a.Values {
|
|
astArray.Nodes = append(astArray.Nodes, d2ast.MakeArrayNodeBox(av.ast().(d2ast.ArrayNode)))
|
|
}
|
|
return astArray
|
|
}
|
|
|
|
func (m *Map) ast() d2ast.Node {
|
|
if m == nil {
|
|
return nil
|
|
}
|
|
astMap := &d2ast.Map{}
|
|
if m.Root() {
|
|
astMap.Range = d2ast.MakeRange(",0:0:0-1:0:0")
|
|
} else {
|
|
astMap.Range = d2ast.MakeRange(",1:0:0-2:0:0")
|
|
}
|
|
for _, f := range m.Fields {
|
|
astMap.Nodes = append(astMap.Nodes, d2ast.MakeMapNodeBox(f.ast().(d2ast.MapNode)))
|
|
}
|
|
for _, e := range m.Edges {
|
|
astMap.Nodes = append(astMap.Nodes, d2ast.MakeMapNodeBox(e.ast().(d2ast.MapNode)))
|
|
}
|
|
return astMap
|
|
}
|
|
|
|
func (m *Map) appendFieldReferences(i int, kp *d2ast.KeyPath, refctx *RefContext) {
|
|
sb := kp.Path[i]
|
|
f := m.GetField(sb.Unbox().ScalarString())
|
|
if f == nil {
|
|
return
|
|
}
|
|
|
|
f.References = append(f.References, &FieldReference{
|
|
String: sb.Unbox(),
|
|
KeyPath: kp,
|
|
Context: refctx,
|
|
})
|
|
if i+1 == len(kp.Path) {
|
|
return
|
|
}
|
|
if f.Map() != nil {
|
|
f.Map().appendFieldReferences(i+1, kp, refctx)
|
|
}
|
|
}
|
|
|
|
func ParentMap(n Node) *Map {
|
|
for {
|
|
n = n.Parent()
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
if m, ok := n.(*Map); ok {
|
|
return m
|
|
}
|
|
}
|
|
}
|
|
|
|
func ParentField(n Node) *Field {
|
|
for {
|
|
n = n.Parent()
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
if f, ok := n.(*Field); ok {
|
|
return f
|
|
}
|
|
}
|
|
}
|
|
|
|
func ParentBoard(n Node) Node {
|
|
for {
|
|
n = n.Parent()
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
if NodeBoardKind(n) != "" {
|
|
return n
|
|
}
|
|
}
|
|
}
|
|
|
|
func ParentEdge(n Node) *Edge {
|
|
for {
|
|
n = n.Parent()
|
|
if n == nil {
|
|
return nil
|
|
}
|
|
if e, ok := n.(*Edge); ok {
|
|
return e
|
|
}
|
|
}
|
|
}
|
|
|
|
func countUnderscores(p []string) int {
|
|
for i, el := range p {
|
|
if el != "_" {
|
|
return i
|
|
}
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func findBoardKeyword(ida ...string) int {
|
|
for i := range ida {
|
|
if _, ok := d2graph.BoardKeywords[ida[i]]; ok {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
|
|
func findProhibitedEdgeKeyword(ida ...string) int {
|
|
for i := range ida {
|
|
if _, ok := d2graph.SimpleReservedKeywords[ida[i]]; ok {
|
|
return i
|
|
}
|
|
if _, ok := d2graph.ReservedKeywordHolders[ida[i]]; ok {
|
|
return i
|
|
}
|
|
}
|
|
return -1
|
|
}
|
|
|
|
func parentRef(n Node) Reference {
|
|
f := ParentField(n)
|
|
if f != nil {
|
|
return f.LastRef()
|
|
}
|
|
e := ParentEdge(n)
|
|
if e != nil {
|
|
return e.LastRef()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func parentPrimaryKey(n Node) *d2ast.Key {
|
|
f := ParentField(n)
|
|
if f != nil {
|
|
return f.LastPrimaryKey()
|
|
}
|
|
e := ParentEdge(n)
|
|
if e != nil {
|
|
return e.LastPrimaryKey()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// IDA returns the absolute path to n from the nearest board root.
|
|
func IDA(n Node) (ida []string) {
|
|
for {
|
|
f, ok := n.(*Field)
|
|
if ok {
|
|
if f.Root() || NodeBoardKind(f) != "" {
|
|
reverseIDA(ida)
|
|
return ida
|
|
}
|
|
ida = append(ida, f.Name)
|
|
}
|
|
f = ParentField(n)
|
|
if f == nil {
|
|
reverseIDA(ida)
|
|
return ida
|
|
}
|
|
n = f
|
|
}
|
|
}
|
|
|
|
func reverseIDA(ida []string) {
|
|
for i := 0; i < len(ida)/2; i++ {
|
|
tmp := ida[i]
|
|
ida[i] = ida[len(ida)-i-1]
|
|
ida[len(ida)-i-1] = tmp
|
|
}
|
|
}
|
|
|
|
func (f *Field) Equal(n2 Node) bool {
|
|
f2 := n2.(*Field)
|
|
|
|
if f.Name != f2.Name {
|
|
return false
|
|
}
|
|
if !f.Primary_.Equal(f2.Primary_) {
|
|
return false
|
|
}
|
|
if !f.Composite.Equal(f2.Composite) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (e *Edge) Equal(n2 Node) bool {
|
|
e2 := n2.(*Edge)
|
|
|
|
if !e.ID.Match(e2.ID) {
|
|
return false
|
|
}
|
|
if !e.Primary_.Equal(e2.Primary_) {
|
|
return false
|
|
}
|
|
if !e.Map_.Equal(e2.Map_) {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
func (a *Array) Equal(n2 Node) bool {
|
|
a2 := n2.(*Array)
|
|
|
|
if len(a.Values) != len(a2.Values) {
|
|
return false
|
|
}
|
|
|
|
for i := range a.Values {
|
|
if !a.Values[i].Equal(a2.Values[i]) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
func (m *Map) Equal(n2 Node) bool {
|
|
m2 := n2.(*Map)
|
|
|
|
if len(m.Fields) != len(m2.Fields) {
|
|
return false
|
|
}
|
|
if len(m.Edges) != len(m2.Edges) {
|
|
return false
|
|
}
|
|
|
|
for i := range m.Fields {
|
|
if !m.Fields[i].Equal(m2.Fields[i]) {
|
|
return false
|
|
}
|
|
}
|
|
for i := range m.Edges {
|
|
if !m.Edges[i].Equal(m2.Edges[i]) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
return true
|
|
}
|