d2ir: IR Root wip
This commit is contained in:
parent
98ede1f586
commit
29b936252b
3 changed files with 67 additions and 40 deletions
|
|
@ -13,10 +13,8 @@ func (c *compiler) errorf(n d2ast.Node, f string, v ...interface{}) {
|
||||||
c.err.Errors = append(c.err.Errors, d2parser.Errorf(n, f, v...).(d2ast.Error))
|
c.err.Errors = append(c.err.Errors, d2parser.Errorf(n, f, v...).(d2ast.Error))
|
||||||
}
|
}
|
||||||
|
|
||||||
func Compile(ast *d2ast.Map) (*Layer, error) {
|
func Compile(ast *d2ast.Map) (*Map, error) {
|
||||||
l := &Layer{
|
l := &Layer{}
|
||||||
AST: ast,
|
|
||||||
}
|
|
||||||
l.Map = &Map{
|
l.Map = &Map{
|
||||||
parent: l,
|
parent: l,
|
||||||
}
|
}
|
||||||
|
|
@ -75,7 +73,7 @@ func (c *compiler) compileField(dst *Map, kp *d2ast.KeyPath, refctx *RefContext)
|
||||||
c.compileArray(a, refctx.Key.Value.Array)
|
c.compileArray(a, refctx.Key.Value.Array)
|
||||||
f.Composite = a
|
f.Composite = a
|
||||||
} else if refctx.Key.Value.Map != nil {
|
} else if refctx.Key.Value.Map != nil {
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m == nil {
|
if f_m == nil {
|
||||||
f_m = &Map{
|
f_m = &Map{
|
||||||
parent: f,
|
parent: f,
|
||||||
|
|
@ -102,7 +100,7 @@ func (c *compiler) compileEdges(dst *Map, refctx *RefContext) {
|
||||||
c.errorf(refctx.Key.Key, "cannot index into array")
|
c.errorf(refctx.Key.Key, "cannot index into array")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m == nil {
|
if f_m == nil {
|
||||||
f_m = &Map{
|
f_m = &Map{
|
||||||
parent: f,
|
parent: f,
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ func compile(t testing.TB, text string) (*d2ir.Layer, error) {
|
||||||
func assertField(t testing.TB, n d2ir.Node, nfields, nedges int, primary interface{}, ida ...string) *d2ir.Field {
|
func assertField(t testing.TB, n d2ir.Node, nfields, nedges int, primary interface{}, ida ...string) *d2ir.Field {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
|
|
||||||
m := d2ir.ToMap(n)
|
m := d2ir.ChildMap(n)
|
||||||
if m == nil {
|
if m == nil {
|
||||||
t.Fatalf("nil m from %T", n)
|
t.Fatalf("nil m from %T", n)
|
||||||
}
|
}
|
||||||
|
|
@ -73,7 +73,7 @@ func assertField(t testing.TB, n d2ir.Node, nfields, nedges int, primary interfa
|
||||||
t.Fatalf("expected field %v in map %s", ida, m)
|
t.Fatalf("expected field %v in map %s", ida, m)
|
||||||
}
|
}
|
||||||
p = f.Primary
|
p = f.Primary
|
||||||
m = d2ir.ToMap(f)
|
m = d2ir.ChildMap(f)
|
||||||
}
|
}
|
||||||
|
|
||||||
assert.Equal(t, nfields, m.FieldCountRecursive())
|
assert.Equal(t, nfields, m.FieldCountRecursive())
|
||||||
|
|
@ -93,7 +93,7 @@ func assertEdge(t testing.TB, n d2ir.Node, nfields int, primary interface{}, eid
|
||||||
|
|
||||||
eid := d2ir.NewEdgeIDs(k)[0]
|
eid := d2ir.NewEdgeIDs(k)[0]
|
||||||
|
|
||||||
m := d2ir.ToMap(n)
|
m := d2ir.ChildMap(n)
|
||||||
if m == nil {
|
if m == nil {
|
||||||
t.Fatalf("nil m from %T", n)
|
t.Fatalf("nil m from %T", n)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
91
d2ir/d2ir.go
91
d2ir/d2ir.go
|
|
@ -82,8 +82,6 @@ func (n *Map) String() string { return d2format.Format(n.ast()) }
|
||||||
|
|
||||||
type Layer struct {
|
type Layer struct {
|
||||||
parent Node
|
parent Node
|
||||||
|
|
||||||
AST *d2ast.Map `json:"ast"`
|
|
||||||
Map *Map `json:"base"`
|
Map *Map `json:"base"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -148,8 +146,20 @@ func (m *Map) Root() bool {
|
||||||
|
|
||||||
// Layer reports whether the Map represents the root of a layer.
|
// Layer reports whether the Map represents the root of a layer.
|
||||||
func (m *Map) Layer() bool {
|
func (m *Map) Layer() bool {
|
||||||
_, ok := m.parent.(*Layer)
|
f := ParentField(m)
|
||||||
return ok
|
if f == nil {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
f = ParentField(f)
|
||||||
|
if f == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
switch f.Name {
|
||||||
|
case "layers", "scenarios", "steps":
|
||||||
|
return true
|
||||||
|
default:
|
||||||
|
return false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type Field struct {
|
type Field struct {
|
||||||
|
|
@ -401,7 +411,7 @@ func (m *Map) FieldCountRecursive() int {
|
||||||
}
|
}
|
||||||
acc := len(m.Fields)
|
acc := len(m.Fields)
|
||||||
for _, f := range m.Fields {
|
for _, f := range m.Fields {
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
acc += f_m.FieldCountRecursive()
|
acc += f_m.FieldCountRecursive()
|
||||||
}
|
}
|
||||||
|
|
@ -420,7 +430,7 @@ func (m *Map) EdgeCountRecursive() int {
|
||||||
}
|
}
|
||||||
acc := len(m.Edges)
|
acc := len(m.Edges)
|
||||||
for _, f := range m.Fields {
|
for _, f := range m.Fields {
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
acc += f_m.EdgeCountRecursive()
|
acc += f_m.EdgeCountRecursive()
|
||||||
}
|
}
|
||||||
|
|
@ -462,7 +472,7 @@ func (m *Map) getField(ida []string) *Field {
|
||||||
if len(rest) == 0 {
|
if len(rest) == 0 {
|
||||||
return f
|
return f
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
return f_m.getField(rest)
|
return f_m.getField(rest)
|
||||||
}
|
}
|
||||||
|
|
@ -489,13 +499,13 @@ func (m *Map) ensureField(i int, kp *d2ast.KeyPath, refctx *RefContext) (*Field,
|
||||||
head := kp.Path[i].Unbox().ScalarString()
|
head := kp.Path[i].Unbox().ScalarString()
|
||||||
|
|
||||||
if head == "_" {
|
if head == "_" {
|
||||||
return nil, d2parser.Errorf(kp, `parent "_" can only be used in the beginning of paths, e.g. "_.x"`)
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), `parent "_" can only be used in the beginning of paths, e.g. "_.x"`)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch head {
|
switch head {
|
||||||
case "layers", "scenarios", "steps":
|
case "layers", "scenarios", "steps":
|
||||||
if !m.Layer() {
|
if !m.Layer() {
|
||||||
return nil, d2parser.Errorf(kp, "%s is only allowed at a layer root", head)
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "%s is only allowed at a layer root", head)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -514,9 +524,9 @@ func (m *Map) ensureField(i int, kp *d2ast.KeyPath, refctx *RefContext) (*Field,
|
||||||
return f, nil
|
return f, nil
|
||||||
}
|
}
|
||||||
if _, ok := f.Composite.(*Array); ok {
|
if _, ok := f.Composite.(*Array); ok {
|
||||||
return nil, d2parser.Errorf(kp, "cannot index into array")
|
return nil, d2parser.Errorf(kp.Path[i].Unbox(), "cannot index into array")
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m == nil {
|
if f_m == nil {
|
||||||
f_m = &Map{
|
f_m = &Map{
|
||||||
parent: f,
|
parent: f,
|
||||||
|
|
@ -535,6 +545,28 @@ func (m *Map) ensureField(i int, kp *d2ast.KeyPath, refctx *RefContext) (*Field,
|
||||||
Context: refctx,
|
Context: refctx,
|
||||||
}},
|
}},
|
||||||
}
|
}
|
||||||
|
pf := ParentField(m)
|
||||||
|
switch pf.Name {
|
||||||
|
case "layers", "scenarios", "steps":
|
||||||
|
var l *Layer
|
||||||
|
switch pf.Name {
|
||||||
|
case "layers":
|
||||||
|
l = &Layer{
|
||||||
|
parent: f,
|
||||||
|
}
|
||||||
|
l.Map = &Map{parent: l}
|
||||||
|
case "scenarios":
|
||||||
|
l = ParentLayer(m).Copy(f)
|
||||||
|
case "steps":
|
||||||
|
panic("TODO")
|
||||||
|
}
|
||||||
|
f.Composite = l
|
||||||
|
|
||||||
|
if kp == refctx.Key.Key && refctx.Edge == nil {
|
||||||
|
kp.
|
||||||
|
}
|
||||||
|
l.AST =
|
||||||
|
}
|
||||||
m.Fields = append(m.Fields, f)
|
m.Fields = append(m.Fields, f)
|
||||||
if i+1 == len(kp.Path) {
|
if i+1 == len(kp.Path) {
|
||||||
return f, nil
|
return f, nil
|
||||||
|
|
@ -562,7 +594,7 @@ func (m *Map) DeleteField(ida []string) bool {
|
||||||
copy(m.Fields[i:], m.Fields[i+1:])
|
copy(m.Fields[i:], m.Fields[i+1:])
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
return f_m.DeleteField(rest)
|
return f_m.DeleteField(rest)
|
||||||
}
|
}
|
||||||
|
|
@ -581,7 +613,7 @@ func (m *Map) GetEdges(eid *EdgeID) []*Edge {
|
||||||
if f == nil {
|
if f == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
return f_m.GetEdges(eid)
|
return f_m.GetEdges(eid)
|
||||||
}
|
}
|
||||||
|
|
@ -612,9 +644,9 @@ func (m *Map) CreateEdge(eid *EdgeID, refctx *RefContext) (*Edge, error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
if _, ok := f.Composite.(*Array); ok {
|
if _, ok := f.Composite.(*Array); ok {
|
||||||
return nil, d2parser.Errorf(refctx.Edge, "cannot index into array")
|
return nil, d2parser.Errorf(refctx.Edge.Src, "cannot index into array")
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m == nil {
|
if f_m == nil {
|
||||||
f_m = &Map{
|
f_m = &Map{
|
||||||
parent: f,
|
parent: f,
|
||||||
|
|
@ -738,20 +770,18 @@ func (m *Map) appendFieldReferences(i int, kp *d2ast.KeyPath, refctx *RefContext
|
||||||
if i+1 == len(kp.Path) {
|
if i+1 == len(kp.Path) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
f_m := ToMap(f)
|
f_m := ChildMap(f)
|
||||||
if f_m != nil {
|
if f_m != nil {
|
||||||
f_m.appendFieldReferences(i+1, kp, refctx)
|
f_m.appendFieldReferences(i+1, kp, refctx)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func ToMap(n Node) *Map {
|
func ChildMap(n Node) *Map {
|
||||||
switch n := n.(type) {
|
switch n := n.(type) {
|
||||||
case *Map:
|
case *Map:
|
||||||
return n
|
return n
|
||||||
case *Layer:
|
|
||||||
return n.Map
|
|
||||||
case *Field:
|
case *Field:
|
||||||
return ToMap(n.Composite)
|
return ChildMap(n.Composite)
|
||||||
case *Edge:
|
case *Edge:
|
||||||
return n.Map
|
return n.Map
|
||||||
default:
|
default:
|
||||||
|
|
@ -790,6 +820,16 @@ func ParentField(n Node) *Field {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ParentLayer(n Node) *Layer {
|
||||||
|
for n.Parent() != nil {
|
||||||
|
n = n.Parent()
|
||||||
|
if n_f, ok := n.(*Layer); ok {
|
||||||
|
return n_f
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func countUnderscores(p []string) int {
|
func countUnderscores(p []string) int {
|
||||||
var count int
|
var count int
|
||||||
for _, el := range p {
|
for _, el := range p {
|
||||||
|
|
@ -800,14 +840,3 @@ func countUnderscores(p []string) int {
|
||||||
}
|
}
|
||||||
return count
|
return count
|
||||||
}
|
}
|
||||||
|
|
||||||
func IDA(n Node) (ida []string) {
|
|
||||||
for {
|
|
||||||
f := ParentField(n)
|
|
||||||
if f == nil {
|
|
||||||
return ida
|
|
||||||
}
|
|
||||||
ida = append(ida, f.Name)
|
|
||||||
n = f
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue