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
|
// Copyright 2019, Shulhan <m.shulhan@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// Package parser provide a common text parser, using delimiters.
//
package parser
import (
"fmt"
"io/ioutil"
libascii "github.com/shuLhan/share/lib/ascii"
)
//
// Parser implement text parsing.
//
type Parser struct {
file string
delims string
x int // x is the position of read in v.
v string // v contains the text to be parsed.
token []rune // token that has been parsed.
d rune // d is one of delims character that terminated parsing.
}
//
// Lines parse the content of path and return non-empty lines.
//
func Lines(file string) ([]string, error) {
p, err := Open(file, "")
if err != nil {
return nil, fmt.Errorf("Lines: %w", err)
}
return p.Lines(), nil
}
//
// New create and initialize parser from content and delimiters.
//
func New(content, delims string) (p *Parser) {
p = &Parser{
token: make([]rune, 0, 16),
}
p.Load(content, delims)
return p
}
//
// Open create and initialize the parser using predefined delimiters.
// All the content of file will be loaded first.
// If delimiters is empty, it would default to all whitespaces characters.
//
func Open(file, delims string) (p *Parser, err error) {
v, err := ioutil.ReadFile(file)
if err != nil {
return nil, err
}
p = New(string(v), delims)
p.file = file
return p, nil
}
//
// AddDelimiters append new delimiter to existing parser.
//
func (p *Parser) AddDelimiters(delims string) {
var found bool
for _, newd := range delims {
found = false
for _, oldd := range p.delims {
if oldd == newd {
found = true
break
}
}
if !found {
p.delims += string(newd)
}
}
}
//
// Close the parser by resetting all its internal state to zero value.
//
func (p *Parser) Close() {
p.file = ""
p.delims = ""
p.x = 0
p.v = ""
p.token = p.token[:0]
p.d = 0
}
//
// Lines return all non-empty lines from the content.
//
func (p *Parser) Lines() []string {
var start, end int
lines := make([]string, 0)
for x := p.x; x < len(p.v); x++ {
// Skip white spaces on beginning ...
for ; x < len(p.v); x++ {
if p.v[x] == ' ' || p.v[x] == '\t' || p.v[x] == '\r' || p.v[x] == '\f' {
continue
}
break
}
start = x
for ; x < len(p.v); x++ {
if p.v[x] != '\n' {
continue
}
break
}
// Skip white spaces at the end ...
for end = x - 1; end > start; end-- {
if p.v[end] == ' ' || p.v[end] == '\t' ||
p.v[end] == '\r' || p.v[end] == '\f' {
continue
}
break
}
end++
if start == end {
// Skip empty lines
continue
}
line := p.v[start:end]
lines = append(lines, line)
}
p.x = len(p.v)
return lines
}
//
// Load the new content and delimiters.
//
func (p *Parser) Load(content, delims string) {
p.Close()
p.v = content
if len(delims) == 0 {
p.delims = string(libascii.Spaces)
} else {
p.delims = delims
}
}
//
// Token read the next token from content until one of the delimiter found.
// if no delimiter found, its mean all of content has been read, the returned
// delimiter will be 0.
//
func (p *Parser) Token() (string, rune) {
p.token = p.token[:0]
if p.x >= len(p.v) {
p.d = 0
return "", 0
}
for x, r := range p.v[p.x:] {
for _, d := range p.delims {
if r == d {
p.d = d
p.x += x + 1
return string(p.token), p.d
}
}
p.token = append(p.token, r)
}
p.d = 0
p.x = len(p.v)
return string(p.token), p.d
}
//
// TokenEscaped read the next token from content until one of the delimiter
// found, unless its escaped with value of esc character.
//
// For example, if the content is "a b" and one of the delimiter is " ",
// escaping it with "\" will return as "a b" not "a".
//
func (p *Parser) TokenEscaped(esc rune) (string, rune) {
var isEscaped bool
p.token = p.token[:0]
if p.x >= len(p.v) {
p.d = 0
return "", 0
}
for x, r := range p.v[p.x:] {
if r == esc {
if isEscaped {
p.token = append(p.token, r)
isEscaped = false
continue
}
isEscaped = true
continue
}
for _, d := range p.delims {
if r == d {
if isEscaped {
isEscaped = false
break
}
p.d = d
p.x += x + 1
return string(p.token), p.d
}
}
p.token = append(p.token, r)
}
p.d = 0
p.x = len(p.v)
return string(p.token), p.d
}
//
// ReadEnclosed read the token inside opening and closing characters, ignoring
// all delimiters that previously set.
//
// It will return the parsed token and closed character if closed character
// found, otherwise it will token with 0.
//
func (p *Parser) ReadEnclosed(open, closed rune) (string, rune) {
for x, r := range p.v[p.x:] {
if x == 0 {
if r == open {
continue
}
}
if r == closed {
p.d = closed
p.x += x + 1
return string(p.token), p.d
}
p.token = append(p.token, r)
}
p.d = 0
p.x = len(p.v)
return string(p.v), 0
}
//
// RemoveDelimiters from current parser.
//
func (p *Parser) RemoveDelimiters(dels string) {
var (
newdelims string
found bool
)
for _, oldd := range p.delims {
found = false
for _, r := range dels {
if r == oldd {
found = true
break
}
}
if !found {
newdelims += string(oldd)
}
}
p.delims = newdelims
}
//
// Skip parsing n characters or EOF if n is greater then length of content.
//
func (p *Parser) Skip(n int) {
if p.x+n >= len(p.v) {
p.x = len(p.v)
p.d = 0
} else {
p.x += n
}
}
//
// SkipHorizontalSpaces skip all space (" "), tab ("\t"), carriage return
// ("\r"), and form feed ("\f") characters; and return the first character
// found, probably new line.
//
func (p *Parser) SkipHorizontalSpaces() rune {
for x, r := range p.v[p.x:] {
switch r {
case ' ', '\t', '\r', '\f':
default:
p.x += x
p.d = r
return r
}
}
p.d = 0
p.x = len(p.v)
return 0
}
//
// SkipLine skip all characters until new line.
// It will return the first character after new line or 0 if EOF.
//
func (p *Parser) SkipLine() rune {
for x, r := range p.v[p.x:] {
if r == '\n' {
p.x += x + 1
if p.x >= len(p.v) {
p.d = 0
} else {
p.d = r
}
return p.d
}
}
// All contents has been read, no new line found.
p.x = len(p.v)
p.d = 0
return 0
}
|