-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
251 lines (195 loc) · 3.8 KB
/
types.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
package astgen
type Type interface {
Common() *TypeBase
Kind() string
Processed() bool
SetProcessed()
ResetProcessed()
}
type TypeBase struct {
Name string
processed bool
}
func (t *TypeBase) Common() *TypeBase {
return t
}
func (t *TypeBase) Processed() bool {
return t.processed
}
func (t *TypeBase) SetProcessed() {
t.processed = true
}
func (t *TypeBase) ResetProcessed() {
t.processed = false
}
type UnresolvedType struct {
TypeBase
}
type BoolType struct {
TypeBase
}
type LexicalType struct {
TypeBase
}
type OptionType struct {
TypeBase
Options []Type
}
type EnumType struct {
TypeBase
EnumTokens []EnumToken
}
type EnumToken struct {
Name string
String string
}
type StructType struct {
TypeBase
Productions []Production
Members []StructMember
}
type StructMember struct {
Name string
Nullable bool
Array bool
ArrayTerminator *Production
ArraySeparator *Production
ArrayMinLength int
Type Type
}
type Production struct {
Tokens []Token
}
type Token struct {
VarRef string
Token string
}
type LangDef struct {
Types map[string]Type
}
func (t *UnresolvedType) Kind() string {
return "Unresolved"
}
func (t *BoolType) Kind() string {
return "Bool"
}
func (t *StructType) Kind() string {
return "Struct"
}
func (t *LexicalType) Kind() string {
return "Lexical"
}
func (t *OptionType) Kind() string {
return "Option"
}
func (t *EnumType) Kind() string {
return "Enum"
}
func (t *StructType) MemberByName(name string) *StructMember {
for i := range t.Members {
if t.Members[i].Name == name {
return &t.Members[i]
}
}
return nil
}
func (p *Production) MemberPos(name string) int {
for i := range p.Tokens {
if p.Tokens[i].VarRef == name {
return i + 1
}
}
return -1
}
func (t *OptionType) ConcreteTypes() []string {
processed := make(map[string]bool)
processed[t.Name] = true
opts := []*OptionType{t}
result := []string{}
for len(opts) > 0 {
tt := opts[0]
opts = opts[1:]
for _, ttt := range tt.Options {
if processed[ttt.Common().Name] {
continue
}
processed[ttt.Common().Name] = true
switch ttt.(type) {
case *LexicalType, *EnumType, *BoolType:
panic("bad definition")
case *StructType:
result = append(result, ttt.Common().Name)
case *OptionType:
opts = append(opts, ttt.(*OptionType))
}
}
}
return result
}
func (def *LangDef) Resolve() {
for _, t := range def.Types {
switch tt := t.(type) {
case *StructType:
for i, memb := range tt.Members {
tttt := def.Types[memb.Type.Common().Name]
if tttt == nil {
panic("Undefined type '" + memb.Type.Common().Name + "'")
}
tt.Members[i].Type = tttt
}
// Also check productions.
for _, p := range tt.Productions {
for _, tok := range p.Tokens {
if tok.Token == "" && tt.MemberByName(tok.VarRef) == nil {
panic("Invalid variable reference '" + tok.VarRef + "'")
}
}
}
case *OptionType:
for i, ttt := range tt.Options {
tttt := def.Types[ttt.Common().Name]
if tttt == nil {
panic("Undefined type '" + ttt.Common().Name + "'")
}
tt.Options[i] = tttt
}
}
}
}
/*
var file []byte
var types = make(map[string]Type)
func to_uppercase(b byte) byte {
if b >= 'a' && b <= 'z' {
return b - 'a' + 'A'
} else {
return b
}
}
func to_upperstring(s string) string {
buf := []byte(s)
buf2 := make([]byte, len(buf))
for i := range buf {
buf2[i] = to_uppercase(buf[i])
}
return string(buf2)
}
func token_symbol(token string) string {
tok := []byte(token)
if is_letter(tok[0]) {
return to_upperstring(token)
}
if len(tok) == 1 {
if tok[0] == '\'' {
return "\"'\""
}
return "'" + string(tok) + "'"
}
ret := sym_name(tok[0])
for i := 1; i < len(tok); i++ {
ret += "_"
ret += sym_name(tok[i])
}
return ret
}
*/