-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.js
161 lines (145 loc) · 3.99 KB
/
parser.js
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
// import * as reparse from "./reparse.js";
import * as reparse from "https://deno.land/x/reparse@v0.02-5/reparse.js";
const rules = {
match: [
//comment
// ["comment", /#.*/],
["comment",/[#](?:\\[#\\]|[^\n#\\])*[#|\n]/],
//string
["string", [
/['](?:\\['\\]|[^\n'\\])*[']/,
/["](?:\\["\\]|[^\n"\\])*["]/]],
//operequals
//operators
["operator", [
/\+/, /-/,
/\*/, /\//,
/\|\|/, /&&/,
/%/, /\^\^/,
/</, />/,
/<</, />>/,
/==/, /!=/]],
//comma
["comma",/,/],
//cpartalism
["dollar",/\$/],
//assort
["cropen", /\{/],
["crclose", /\}/],
["blopen", /\[/],
["blclose", /\]/],
["propen", /\(/],
["prclose", /\)/],
//i1-mod
["incrementor", /\+\+/],
["decrementor", /--/],
//dotcall
["call", /\.[a-zA-Z_]+/],
//type
["type", /:[a-zA-Z_]+:/],
//number
["hex-number", /0x-?(0|[1-9]|[0-9]|[a-f]|[A-F])+/],//0x-43fF4
["number", /-?(?:0|[1-9][0-9]*)\.?(?:0|[1-9][0-9]*)?/],
//nl
["newline", /\r?\n/],
["whitespace", /\s|\t/],
//word
["pointer", /~[a-zA-Z_]+/],
["word", /[a-zA-Z_]+/],
],
callback: {
string: (inp) => {
return inp.slice(1, -1);
},
number: (inp) => {
return parseFloat(inp)
},
"hex-number": (inp) => {
return parseInt(inp.slice(2),16)
},
pointer: (inp) => {
return inp.slice(1)
}
},
blocks: [
["cropen", "crclose", "block"],
["blopen", "blclose", "array"],
["propen", "prclose", "parameter"],
],
linecount: ["newline"],
specresolve: (unres) => {
return unres;
},
blockcallback:{
block: (tkns) => remw(tkns),
array: (tkns) => {
for (let i = 0; i < tkns.length; i++) {
if (tkns[i]) {
tkns[i] = {
type:tkns[i].type,
value:tkns[i].value
}
}
}
},
parameter: (tkns)=>{
const rns = []
for (let i = 0; i < tkns.length; i++) {
if (tkns[i].type != "type") {
//todo: error
}
rns.push(tkns[i].value)
}
return tkns
}
},
errorcallback: (token, error,t) => { console.log(error+": "+t+": "+JSON.stringify(token)) },
};
export async function parse(file,out) {
const decoder = new TextDecoder("utf-8")
const data = decoder.decode(await Deno.readFile(file))
const pdat = remw(reparse.lex(data, rules))
if (out)
Deno.writeTextFile(out, JSON.stringify(pdat))
return pdat
}
function remw(tks) {
const ns = []
for (let i = 0; i < tks.length; i++) {
if (!(["newline", "whitespace", "comment","dollar"].includes(tks[i].type))) {
ns.push(tks[i])
}
}
return ns
}
// //string comment array|params|block|object
// async function parse(file) {
// const decoder = new TextDecoder("utf-8")
// const data = decoder.decode(await Deno.readFile(file))
// let incomment = false
// let instring = false
// let inparam = false
// let inblock = false
// let inobj = false
// for (let i = 0; i < data.length; i++) {
// if (!instring && data[i] == '#') {
// incomment = true
// }
// if (!incomment &&
// (data[i] == "'" || data[i] == '"') &&
// (data[i - 1] != "\\" ? true : data[i - 2] == "\\")
// ) {
// instring = !instring;
// }
// }
// }
/**
* function parse_order(sop) {
* const stf = sop.split(" ")
* retrun {
* unit_type:stf[0],
* move:stf[2],
* current:stf[1],
* }
* }
*/