This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgo2js.go
401 lines (330 loc) · 9.17 KB
/
go2js.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// Copyright 2011 Jonas mg
//
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at
// http://mozilla.org/MPL/2.0/.
package main
import (
"bytes"
"errors"
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"log"
"os"
"path"
"strings"
)
const (
HEADER = "/* Generated by Go2js (github.com/tredoe/go2js) */"
BLANK = "_" // blank identifier
EMPTY = `""` // empty string
)
const (
// To be able to minimize code
NL = "<<NL>>" // new line
SP = "<<SP>>" // space
TAB = "<<TAB>>"
ADDR = "<<&>>" // to mark assignments to addresses
IOTA = "<<iota>>"
NIL = "<<nil>>"
VERB = "<<%>>"
)
const (
FIELD_GET = ".get()"
FIELD_POINTER = ".p"
FIELD_TYPE = ".t"
FIELD_VALUE = ".v"
)
var void struct{} // A struct without any elements occupies no space at all.
var (
Bootstrap bool // to translate the JS library
MaxMessage = 10 // maximum number of errors and warnings to show.
)
// translation represents information about code being translated to JavaScript.
type translation struct {
line int // actual line
hasError bool
fset *token.FileSet
*bytes.Buffer // sintaxis translated to JS
*dataStmt // extra data for a statement
err []error // errors
warn []string // warnings
exported []string // declarations to be exported
//slice map[string]string // for range; key: function name, value: slice name
//function string // actual function
// == Variables defined in each block, for each function.
// {Function Id: {Block id: {Name:
vars map[int]map[int]map[string]bool // is pointer?
addr map[int]map[int]map[string]bool // variable was assigned to an address?
maps map[int]map[int]map[string]struct{}
arrays map[int]map[int]map[string]struct{}
slices map[int]map[int]map[string]struct{}
structSlices map[int]map[int]map[string]struct{} // slices of anonymous structs
// Zero value for custom types.
zeroType map[int]map[int]map[string]string
}
func newTranslation() *translation {
tr := &translation{
0,
false,
token.NewFileSet(),
new(bytes.Buffer),
&dataStmt{resultUseFunc: make(map[int]bool)},
make([]error, 0, MaxMessage),
make([]string, 0, MaxMessage),
make([]string, 0),
//make(map[string]string),
//"",
make(map[int]map[int]map[string]bool),
make(map[int]map[int]map[string]bool),
make(map[int]map[int]map[string]struct{}),
make(map[int]map[int]map[string]struct{}),
make(map[int]map[int]map[string]struct{}),
make(map[int]map[int]map[string]struct{}),
make(map[int]map[int]map[string]string),
}
// == Global variables
// Ones related to local variables are set in:
// file func: *translation.getFunc()
// file stmt: *translation.getStatement() (case: *ast.BlockStmt)
// funcId = 0
tr.vars[0] = make(map[int]map[string]bool)
tr.addr[0] = make(map[int]map[string]bool)
tr.maps[0] = make(map[int]map[string]struct{})
tr.arrays[0] = make(map[int]map[string]struct{})
tr.slices[0] = make(map[int]map[string]struct{})
tr.structSlices[0] = make(map[int]map[string]struct{})
tr.zeroType[0] = make(map[int]map[string]string)
// blockId = 0
tr.vars[0][0] = make(map[string]bool)
tr.addr[0][0] = make(map[string]bool)
tr.maps[0][0] = make(map[string]struct{})
tr.arrays[0][0] = make(map[string]struct{})
tr.slices[0][0] = make(map[string]struct{})
tr.structSlices[0][0] = make(map[string]struct{})
tr.zeroType[0][0] = make(map[string]string)
return tr
}
// getLine returns the line number.
func (tr *translation) getLine(pos token.Pos) int {
return tr.fset.Position(pos).Line - 1
}
// addLine appends new lines according to the position.
// Returns a boolean to indicate if have been added.
func (tr *translation) addLine(pos token.Pos) bool {
var s string
new := tr.getLine(pos)
dif := new - tr.line
if dif == 0 {
return false
}
for i := 0; i < dif; i++ {
s += NL
}
tr.WriteString(s)
tr.line = new
return true
}
// addError appends an error.
func (tr *translation) addError(value interface{}, a ...interface{}) {
if len(tr.err) == MaxMessage {
return
}
switch typ := value.(type) {
case string:
tr.err = append(tr.err, fmt.Errorf(typ, a...))
case error:
tr.err = append(tr.err, typ)
default:
panic("wrong type")
}
if !tr.hasError {
tr.hasError = true
}
}
// addWarning appends a warning message.
func (tr *translation) addWarning(format string, a ...interface{}) {
if len(tr.warn) == MaxMessage {
return
}
tr.warn = append(tr.warn, fmt.Sprintf(format, a...))
}
// addIfExported appends the declaration name if it is exported.
func (tr *translation) addIfExported(iName interface{}) {
var name = ""
switch typ := iName.(type) {
case *ast.Ident:
name = typ.Name
case string:
name = typ
}
if ast.IsExported(name) {
tr.exported = append(tr.exported, name)
}
}
// * * *
// Translate translates a Go source file into JavaScript.
// If write is true, writes the output in "filename" but with extension ".js".
func Translate(filename string, write bool) error {
trans := newTranslation()
pkgName := ""
/* Parse several files
parse.ParseFile(fset, "a.go", nil, 0)
parse.ParseFile(fset, "b.go", nil, 0)
*/
// godoc go/ast File
// Doc *CommentGroup // associated documentation; or nil
// Package token.Pos // position of "package" keyword
// Name *Ident // package name
// Decls []Decl // top-level declarations; or nil
// Scope *Scope // package scope (this file only)
// Imports []*ImportSpec // imports in this file
// Unresolved []*Ident // unresolved identifiers in this file
// Comments []*CommentGroup // list of all comments in the source file
node, err := parser.ParseFile(trans.fset, filename, nil, 0) //parser.ParseComments)
if err != nil {
return err
}
// Package name
pkgName = trans.getExpression(node.Name).String()
if pkgName != "main" {
trans.addLine(node.Package)
trans.WriteString(fmt.Sprintf("var %s=%s{};%s(function()%s{",
pkgName+SP, SP, SP, SP))
}
for _, decl := range node.Decls {
switch decl.(type) {
case *ast.FuncDecl:
trans.getFunc(decl.(*ast.FuncDecl))
// godoc go/ast GenDecl
// Tok token.Token // IMPORT, CONST, TYPE, VAR
// Specs []Spec
case *ast.GenDecl:
genDecl := decl.(*ast.GenDecl)
switch genDecl.Tok {
case token.IMPORT:
trans.getImport(genDecl.Specs)
case token.CONST:
trans.getConst(genDecl.TokPos, genDecl.Specs, true)
case token.VAR:
trans.getVar(genDecl.Specs, true)
case token.TYPE:
trans.getType(genDecl.Specs, true)
}
default:
panic(fmt.Sprintf("unimplemented: %T", decl))
}
}
// Any error?
if trans.hasError {
fmt.Fprint(os.Stderr, " == Errors\n\n")
for _, err = range trans.err {
fmt.Fprintf(os.Stderr, "%s\n", err)
}
if len(trans.err) == MaxMessage {
fmt.Fprintln(os.Stderr, "\n Too many errors")
}
return errors.New("") // to indicate that there was any error
}
// Export declarations in packages
if pkgName != "main" {
if len(trans.exported) != 0 {
for i, v := range trans.exported {
if i == 0 {
trans.WriteString(NL + NL)
}
if !Bootstrap {
if i == 0 {
trans.WriteString(fmt.Sprintf("g.Export(%s,%s[%s",
pkgName, SP, v))
} else {
trans.WriteString("," + SP + v)
}
} else {
trans.WriteString(fmt.Sprintf("%s.%s=%s;%s",
pkgName, v+SP, SP+v, NL))
}
}
if !Bootstrap {
trans.WriteString("]);")
}
} else {
trans.WriteString(NL)
}
trans.WriteString(NL + "})();")
}
trans.WriteString("\n")
trans.WriteString(HEADER + NL)
// == Write
baseFilename := strings.Replace(filename, path.Ext(filename), "", 1)
str := trans.String()
// Variables addressed
trans.replacePointers(&str)
// Regular code
code := strings.Replace(str, NL, "\n", -1)
code = strings.Replace(code, TAB, "\t", -1)
code = strings.Replace(code, SP, " ", -1)
if write {
if err = os.WriteFile(baseFilename+".js", []byte(code), 0664); err != nil {
return err
}
} else {
os.Stdout.WriteString(code)
}
// Minimized code
if *fMin {
min := strings.Replace(str, NL, "", -1)
min = strings.Replace(min, TAB, "", -1)
min = strings.Replace(min, SP, "", -1)
if write {
if err = os.WriteFile(baseFilename+".min.js", []byte(min), 0664); err != nil {
return err
}
} else {
os.Stdout.WriteString(min)
}
}
// Print warnings
if len(trans.warn) != 0 {
fmt.Fprint(os.Stderr, " == Warnings\n\n")
for _, v := range trans.warn {
fmt.Fprintln(os.Stderr, v)
}
if len(trans.warn) == MaxMessage {
fmt.Fprintln(os.Stderr, "\n Too many warnings")
}
}
/*for k, v := range trans.slices {
fmt.Println(k, v)
}*/
return nil
}
// Flags
var (
fMin = flag.Bool("min", false, "also create code minimized")
fWrite = flag.Bool("w", false, "write output to file")
)
func usage() {
fmt.Fprintf(os.Stderr, `Usage: goscript [-min -w] file...
Translate Go to JavaScript.
`)
flag.PrintDefaults()
os.Exit(2)
}
func main() {
flag.Usage = usage
flag.Parse()
if len(os.Args) == 1 {
usage()
}
log.SetFlags(0)
log.SetPrefix("FAIL! ")
for _, filename := range flag.Args() {
if err := Translate(filename, *fWrite); err != nil {
log.Printf("%s: %s\n", filename, err)
}
}
}