-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.js
167 lines (140 loc) · 3.5 KB
/
utils.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
162
163
164
165
166
167
import * as Fs from 'fs'
import * as Path from 'path'
import { Command } from 'commander'
import * as CMLangLezerTree from '@cookshack/codemirror-lang-lezer-tree'
import * as CMState from '@codemirror/state'
export
function parse
(lr, file) {
let tree, content
content = Fs.readFileSync(file, 'utf8')
//console.log(content)
tree = lr.parser.parse(content)
return { tree: tree, content: content }
}
export
function check
(tree) {
let fail
fail = []
tree.iterate({enter: node => {
if (node.type.isError) {
fail.push({ from: node.from })
return 0
}
return 1
}})
return fail.length ? fail : 0
}
function printFails
(path, tree, fails) {
let text, state
text = Fs.readFileSync(path, { encoding: 'utf8' })
//console.log({ text })
state = CMState.EditorState.create({ doc: text || '' })
if (tree.length == state.doc.length) {
// parse was complete
}
else
console.log(path + ':0:0: error: tree partially covers doc')
fails.forEach(fail => {
let line, col
line = state.doc.lineAt(fail.from)
col = (fail.from - line.from) + 1
console.log(path + ':' + line.number + ':' + col + ': error: failed to parse')
})
}
// returns number failed
export
function checkDir
(lr, dir, opts) {
let data, count, ext
data = Fs.readdirSync(dir, { recursive: opts?.recurse ? true : false })
if (opts?.ext)
ext = '.' + opts.ext
count = 0
data.forEach(name => {
let path, stats
path = Path.join(dir, name)
stats = Fs.statSync(path)
if ((stats.mode & (1 << 15)) // is it a file?
&& (ext ? name.endsWith(ext) : 1)) {
let res, fails
res = parse(lr, path)
console.log(path + ' (' + res.content.length + ' bytes)')
fails = check(res.tree)
if (fails) {
count++
printFails(path, res.tree, fails)
//throw 'parse failed'
}
}
})
return count
}
// returns number failed
export
function checkFile
(lr, path) {
let res, fails
res = parse(lr, path)
fails = check(res.tree)
if (fails) {
printFails(path, res.tree, fails)
return 1
}
return 0
}
export
function checkFileOrDir
(lr, path, opts) {
let stats
stats = Fs.statSync(path)
if (stats.mode & (1 << 15))
return checkFile(lr, path)
return checkDir(lr, path, opts)
}
export
function mainShow
(lr) {
function run
(file) {
let res, text, state
res = parse(lr, file)
text = Fs.readFileSync(file, { encoding: 'utf8' })
state = CMState.EditorState.create({ doc: text || '' })
console.log('tree contains error: ' + (check(res.tree) ? 'yes' : 'no'))
console.log('tree covers source: ' + ((res.tree.length == state.doc.length) ? 'yes' : 'no'))
console.log('tree length: ' + res.tree.length)
console.log('tree:')
console.log(CMLangLezerTree.pretty(res.tree.topNode))
}
new Command()
.description('Print parse tree given a source file')
.argument('<file>', 'source file')
.action(run)
.parse()
}
export
function mainChk
(lr) {
function run
(path, opts) {
let count
console.log('Checking ' + path)
count = checkFileOrDir(lr, path, { ext: opts.ext, recurse: opts.recurse })
if (count) {
console.log('\nFAILED: ' + count + ' file')
process.exitCode = 2
}
else
console.log('\nALL GOOD')
}
new Command()
.description('Check the parser against a file or dir')
.argument('<path>', 'file or directory')
.option('-r, --recurse')
.option('-e, --ext <extension>', 'file ext when checking dir')
.action(run)
.parse()
}