generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.go
130 lines (104 loc) · 2.38 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
//go:build js || wasm
// +build js wasm
package main
import (
"container/list"
"fmt"
"github.com/mailru/easyjson"
"github.com/un-ts/sh-syntax/processor"
"mvdan.cc/sh/v3/syntax"
)
var memory = list.New()
type Block struct {
ptr *[]byte
value []byte
}
//export wasmAlloc
func wasmAlloc(size int) *[]byte {
slice := make([]byte, size)
block := Block{
ptr: &slice,
value: slice,
}
memory.PushBack(block)
return block.ptr
}
//export wasmFree
func wasmFree(ptr *[]byte) {
for e := memory.Front(); e != nil; e = e.Next() {
block := e.Value.(Block)
if block.ptr == ptr {
memory.Remove(e)
break
}
}
}
func Parse(text string, filepath string, parserOptions processor.ParserOptions) (*syntax.File, error) {
return processor.Parse(text, filepath, parserOptions)
}
func Print(originalText string, filepath string, syntaxOptions processor.SyntaxOptions) (string, error) {
return processor.Print(originalText, filepath, syntaxOptions)
}
//export process
func process(
filepathBytes []byte,
textBytes []byte,
print bool,
// parser
keepComments bool,
stopAt []byte,
variant int,
// printer
indent int,
binaryNextLine,
switchCaseIndent,
spaceRedirects,
keepPadding,
minify,
functionNextLine bool,
) *byte {
filepath := string(filepathBytes)
text := string(textBytes)
parserOptions := processor.ParserOptions{
KeepComments: keepComments,
StopAt: string(stopAt),
Variant: syntax.LangVariant(variant),
}
var file processor.File
var error error
if print {
printerOptions := processor.PrinterOptions{
Indent: uint(indent),
BinaryNextLine: binaryNextLine,
SwitchCaseIndent: switchCaseIndent,
SpaceRedirects: spaceRedirects,
KeepPadding: keepPadding,
Minify: minify,
FunctionNextLine: functionNextLine,
}
text, error = Print(text, filepath, processor.SyntaxOptions{
ParserOptions: parserOptions,
PrinterOptions: printerOptions,
})
} else {
astFile, err := Parse(text, filepath, parserOptions)
file = processor.MapFile(*astFile)
error = err
}
parseError, message := processor.MapParseError(error)
result := processor.Result{
File: file,
Text: text,
ParseError: parseError,
Message: message,
}
bytes, err := easyjson.Marshal(&result)
if err != nil {
fmt.Println(err)
bytes = []byte(err.Error())
}
bytes = append(bytes, 0)
return &bytes[0]
}
func main() {
}