-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
273 lines (212 loc) · 5.73 KB
/
main.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package main
import (
//"bufio"
"bytes"
"flag"
"fmt"
"io"
"log"
"os"
//"runtime"
"sort"
//"strconv"
//"strings"
"github.com/udhos/basgo/basgo"
"github.com/udhos/basgo/basparser"
"github.com/udhos/basgo/node"
)
const basgoLabel = "basgo-build"
func main() {
basgo.ShowVersion(basgoLabel)
var baslibImport string
flag.StringVar(&baslibImport, "baslibImport", basgo.DefaultBaslibImport, "baslib package")
flag.Parse()
log.Printf("%s baslibImport=%s", basgoLabel, baslibImport)
status, errors := compile(os.Stdin, fmt.Printf, baslibImport)
if status != 0 || errors != 0 {
log.Printf("%s: status=%d errors=%d\n", basgoLabel, status, errors)
os.Exit(1)
}
}
func compile(input io.Reader, outputf node.FuncPrintf, baslibImport string) (int, int) {
log.Printf("%s: compile: baslibImport: %s", basgoLabel, baslibImport)
log.Printf("%s: reading BASIC code from stdin...", basgoLabel)
result, status, errors := basparser.Run(basgoLabel, input)
lineNumbersTab := result.LineNumbers
nodes := result.Root
log.Printf("%s: reading BASIC code from stdin...done", basgoLabel)
if status != 0 || errors != 0 {
return status, errors
}
if result.CountFor != result.CountNext {
log.Printf("%s: FOR count=%d NEXT count=%d", basgoLabel, result.CountFor, result.CountNext)
return status, 1000
}
if result.CountWhile != result.CountWend {
log.Printf("%s: WHILE count=%d WEND count=%d", basgoLabel, result.CountWhile, result.CountWend)
return status, 2000
}
log.Printf("%s: FIXME WRITEME replace duplicate lines", basgoLabel)
log.Printf("%s: checking lines used/defined", basgoLabel)
var undefLines int
for n, ln := range lineNumbersTab {
//log.Printf("%s: line %s used=%v defined=%v", basgoLabel, n, ln.Used, ln.Defined)
if !ln.Defined {
if ln.Used {
undefLines++
log.Printf("%s: line %s used (JUMP) but not defined", basgoLabel, n)
continue
}
if ln.UsedRestore {
undefLines++
log.Printf("%s: line %s used (RESTORE) but not defined", basgoLabel, n)
continue
}
}
}
if undefLines != 0 {
return 0, 3000 + undefLines
}
log.Printf("%s: sorting lines", basgoLabel)
sort.Sort(node.ByLineNumber(result.Root))
header := `
package main
`
mainOpen := `
func main() {
`
mainClose := `
}
`
options := node.BuildOptions{
Headers: map[string]struct{}{},
Vars: map[string]node.VarSymbol{},
Arrays: result.ArrayTable,
LineNumbers: lineNumbersTab,
CountGosub: result.CountGosub,
CountReturn: result.CountReturn,
RestoreTable: result.RestoreTable,
TypeTable: result.TypeTable,
}
if result.LibReadData {
result.Baslib = true
}
// baslib is currently mandatory
// because we call baslib.End() before exiting the program
result.Baslib = true
if result.Baslib {
options.Headers[baslibImport] = struct{}{}
}
if result.Graphics {
options.Headers["github.com/faiface/mainthread"] = struct{}{}
}
if result.LibMath {
options.Headers["math"] = struct{}{}
}
log.Printf("%s: scanning used vars", basgoLabel)
for _, n := range nodes {
n.FindUsedVars(&options)
}
log.Printf("%s: issuing code", basgoLabel)
buf := bytes.Buffer{}
funcGen := func(format string, v ...interface{}) (int, error) {
s := fmt.Sprintf(format, v...)
return buf.WriteString(s)
}
for _, n := range nodes {
n.Build(&options, funcGen)
}
outputf(header)
// Copy headers from options into result imports
for h, v := range options.Headers {
result.Imports[h] = v
}
writeImport(result.Imports, outputf)
if result.LibReadData {
outputf("var readData = []interface{}{\n")
for _, d := range options.ReadData {
outputf("%s,\n", d)
}
outputf("}\n")
}
outputf(mainOpen)
outputf("baslib.Begin()\n")
if result.Graphics {
outputf(`
mainthread.Run(run)
}
func run() {
mainthread.Call(func(){
baslib.G = baslib.InitWin(640, 480)
})
`)
}
if result.LibGosubReturn {
outputf("gosubStack := []int{} // used by GOSUB/RETURN lib\n")
}
writeVar(options.Vars, result.TypeTable, outputf)
writeArrays(&options, outputf)
declareFuncs(&options, result.FuncTable, outputf)
outputf(buf.String())
outputf("baslib.End()\n")
if result.CountReturn > 0 {
outputf("return // exit from main() - end of program\n")
node.BuildReturnGlobal(&options, outputf)
}
outputf(mainClose)
// Declarations from _GODECL
if len(result.Declarations) > 0 {
outputf("\n// _GODECL declarations - begin\n")
for _, d := range result.Declarations {
outputf(d)
outputf("\n")
}
outputf("// _GODECL declarations - end\n\n")
}
return status, errors
}
func writeImport(imp map[string]struct{}, outputf node.FuncPrintf) {
if len(imp) < 1 {
return
}
outputf("import (\n")
for h := range imp {
outputf("\"%s\"\n", h)
}
outputf(")\n")
}
func declareFuncs(options *node.BuildOptions, funcTable map[string]node.FuncSymbol, outputf node.FuncPrintf) {
if len(funcTable) < 1 {
return
}
outputf("var (\n")
for n, symb := range funcTable {
f := node.RenameFunc(options.TypeTable, n)
funcType := node.FuncBuildType(options, n, symb.Func.Variables)
outputf(" %s %s // DEF FN [%s] used=%v\n", f, funcType, n, symb.Used)
}
outputf(")\n")
}
func writeArrays(options *node.BuildOptions, outputf node.FuncPrintf) {
if len(options.Arrays) < 1 {
return
}
outputf("var (\n")
for v, arr := range options.Arrays {
a := node.RenameArray(options.TypeTable, v)
arrayType := arr.ArrayType(options.TypeTable, v)
outputf(" %s %s // array [%s]\n", a, arrayType, v)
}
outputf(")\n")
}
func writeVar(vars map[string]node.VarSymbol, typeTable []int, outputf node.FuncPrintf) {
if len(vars) < 1 {
return
}
outputf("var (\n")
for k, symb := range vars {
t := node.TypeName(symb.Name, symb.Type)
outputf(" %s %s // var [%s]\n", k, t, symb.Name)
}
outputf(")\n")
}