forked from zentures/sequence
-
Notifications
You must be signed in to change notification settings - Fork 3
/
message.go
742 lines (636 loc) · 21 KB
/
message.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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
// Copyright (c) 2014 Dataence, LLC. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package sequence
import (
"fmt"
"io"
"strings"
"unicode"
)
type Message struct {
Data string
state struct {
// these are per token states
tokenType TokenType
tokenStop bool
dots int
initDot bool // Did the token start w/ a dot?
octets int // number of octets found for ipv4
// these are per message states
prevToken Token
tokCount int
cur, start, end int // cursor positions
backslash bool // Should the next quote be escaped?
inquote bool // Are we inside a quote such as ", ', <, [
chquote rune // Which quote character is it?
nxquote bool // Should the next quote be an open quote? See special case in scan()
hexState int // Current hex string state
hexStart bool // Is the first char a :?
hexColons int // Total number of colons
hexSuccColons int // The current number of successive colons
hexMaxSuccColons int // Maximum number of successive colons
hexSuccColonsSeries int // Number of successive colon series
}
}
const (
hexStart = iota
hexChar1
hexChar2
hexChar3
hexChar4
hexColon
)
//This is used in combination with scan the patterns to find a valid tag position.
func isValidTokenStartPosition(start int, pos []int) bool {
for _, p := range pos {
if p == start {
return true
}
}
return false
}
//This is used in combination with scan the patterns to find a valid tag position.
func getNextTokenStartPosition(start int, pos []int) int {
for _, p := range pos {
if p > start {
return p - start
}
}
return 0
}
// Scan is similar to Tokenize except it returns one token at a time
func (this *Message) Tokenize(isParse bool, pos []int) (Token, error) {
var nt = 0
if this.state.start < this.state.end {
if !config.markSpaces {
// Number of spaces skipped
nss := this.skipSpace(this.Data[this.state.start:])
this.state.start += nss
} else {
//just return the space if it is a space
if this.Data[this.state.start] == ' ' {
tok := Token{
Tag: TagUnknown,
Type: TokenLiteral,
Value: " ",
}
this.state.start += 1
return tok, nil
}
}
// Let's see if this is a tag token, enclosed in two '%' chars
// at least 2 chars left, and the first is a '%'
// Don't do this if not in parse mode, picks up things that it shouldn't
if isParse && len(pos) > 0 {
if this.state.start+1 < this.state.end && this.Data[this.state.start] == '%' && (isValidTokenStartPosition(this.state.start, pos) && config.useDatabase) {
var i int
var r rune
for i, r = range this.Data[this.state.start+1:] {
if !isTagTokenChar(r) {
break
}
}
if r == '%' && i > 0 {
tok := Token{
Tag: TagUnknown,
Type: TokenLiteral,
Value: this.Data[this.state.start : this.state.start+i+2],
}
this.state.start += i + 2
return tok, nil
}
} else {
nt = getNextTokenStartPosition(this.state.start, pos)
}
}
l, tok, err := this.scanToken(this.Data[this.state.start:], nt)
if err != nil {
return Token{}, err
} else if l == 0 {
return Token{}, io.EOF
} else if tok.Type == TokenUnknown {
return Token{}, fmt.Errorf("unknown token encountered: %s\n%v", this.Data[this.state.start:], tok.Type)
}
// remove any trailing spaces
s := 0 // trail space count
if !config.markSpaces {
for this.Data[this.state.start+l-1] == ' ' && l > 0 {
l--
s++
}
}
//check the literal for any signs of it containing a tag symbol
val := this.Data[this.state.start : this.state.start+l]
tok.Value = val
this.state.tokCount++
this.state.prevToken = tok
this.state.start += l + s
//this is for dealing with multiline strings and setting everything after the \n to a single token
//these can be super long so I have truncated it at 50 chars for the value as it is not really used.
if tok.Value == "\n" {
l = len(this.Data[this.state.start:])
if l > 15 {
tok.Value = this.Data[this.state.start : this.state.start+15]
} else {
tok.Value = this.Data[this.state.start:]
}
this.state.start += l
tok.Type = TokenMultiLine
} else if strings.Contains(tok.Value, "\n") && this.state.prevToken.Value != "\"" {
tok.Value = this.Data[this.state.start:]
this.state.start += len(tok.Value)
tok.Type = TokenMultiLine
}
return tok, nil
}
return Token{}, io.EOF
}
func (this *Message) skipSpace(data string) int {
// Skip leading spaces.
i := 0
for _, r := range data {
if !unicode.IsSpace(r) {
break
} else {
i++
}
}
return i
}
func (this *Message) scanToken(data string, nt int) (int, Token, error) {
var (
tnode = timeFsmRoot
tokenStop, timeStop, hexStop, hexValid bool
timeLen, hexLen, tokenLen int
l = len(data)
tagType = TagUnknown
)
this.resetTokenStates()
// short circuit the hex check
if l < 3 {
hexStop = true
}
// short circuit the time check
if l < minTimeLength {
timeStop = true
}
for i, r := range data {
//this is the next char for look ahead
//sometimes the following char is useful
//we pass as a string as converting to a rune is expensive
//the "step" functions will convert if needed.
var s = ""
if i < len(data)-1 {
s = data[i+1 : i+2]
}
//this is for scanning patterns we break if we hit a know pattern position
//as the % char is a known literal it has to be forcibly broken here
if i > 0 && i == nt {
tokenStop = true
hexStop = true
timeStop = true
}
if !tokenStop {
tokenStop = this.tokenStep(i, r, s)
if !tokenStop {
tokenLen++
}
}
if !hexStop {
hexValid, hexStop = this.hexStep(i, r, s)
if hexValid {
hexLen = i + 1
}
}
if !timeStop {
if tnode, timeStop = timeStep(r, tnode); timeStop == true {
if timeLen > 0 {
if tnode.regextype != "" {
tagType = TagRegExTime
}
return timeLen, Token{Type: TokenTime, Tag: tagType, Special: tnode.regextype}, nil
}
} else if tnode.final == TokenTime {
if i+1 > timeLen {
timeLen = i + 1
}
}
}
// glog.Debugf("i=%d, r=%c, tokenStop=%t, timeStop=%t, hexStop=%t", i, r, this.state.tokenStop, timeStop, hexStop)
// This means either we found something, or we have exhausted the string
if (tokenStop && timeStop && hexStop) || i == l-1 {
if timeLen > 0 {
if tnode.regextype != "" {
tagType = TagRegExTime
}
return timeLen, Token{Type: TokenTime, Tag: tagType, Special: tnode.regextype}, nil
} else if hexLen > 0 && this.state.hexColons > 1 {
if this.state.hexColons == 5 && this.state.hexMaxSuccColons == 1 {
//if the end of the message there won't be an extra space
if i == l-1 {
return hexLen, Token{Type: TokenMac, Tag: tagType}, nil
} else {
return hexLen - 1, Token{Type: TokenMac, Tag: tagType}, nil
}
} else if this.state.hexSuccColonsSeries == 1 ||
(this.state.hexColons == 7 && this.state.hexSuccColonsSeries == 0) {
return hexLen, Token{Type: TokenIPv6, Tag: tagType}, nil
} else {
//sometimes it adds a space on the end - needs to be removed
if r == ' ' {
return hexLen - 1, Token{Type: TokenLiteral, Tag: tagType}, nil
} else {
return hexLen, Token{Type: TokenLiteral, Tag: tagType}, nil
}
}
}
// glog.Debugf("i=%d, r=%c, tokenLen=%d, value=%q", i, r, tokenLen, data[:tokenLen])
// If token length is 0, it means we didn't find time, nor did we find
// a word, it cannot be space since we skipped all space. This means it
// is a single character literal, so return that.
if tokenLen == 0 {
return 1, Token{Type: TokenLiteral, Tag: tagType}, nil
} else {
switch this.state.tokenType {
case TokenIPv4:
if this.state.dots != 3 {
this.state.tokenType = TokenLiteral
}
case TokenFloat:
if r == '.' && i == l-1 {
tokenLen--
this.state.tokenType = TokenInteger
}
//if the sentence finishes with a . it is likely to be punctuation remove it so it makes its own token.
case TokenLiteral:
if r == '.' && i == l-1 && tokenLen > 1 {
tokenLen--
}
}
return tokenLen, Token{Type: this.state.tokenType, Tag: tagType}, nil
}
}
}
return len(data), Token{Type: this.state.tokenType, Tag: tagType}, nil
}
func (this *Message) tokenStep(i int, r rune, nr string) bool {
//fmt.Printf("r=%c, nr=%s\n", r, nr)
switch this.state.tokenType {
case TokenUnknown:
switch r {
case 'h', 'H':
if nr == "t" || nr == "T" {
this.state.tokenType = TokenURI
}
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
this.state.tokenType = TokenInteger
case '/':
if this.state.prevToken.Type == TokenIPv4 {
this.state.tokenType = TokenLiteral
this.state.tokenStop = true
} else {
this.state.tokenType = TokenLiteral
}
case '"', '\'':
this.state.tokenStop = true
this.state.tokenType = TokenLiteral
//glog.Debugf("i=%d, r=%c, inquote=%t, nxquote=%t, chquote=%c", i, r, this.state.inquote, this.state.nxquote, this.state.chquote)
if !this.state.inquote && this.state.nxquote {
// If we are not inside a quote now and we are at the beginning,
// then let's be inside the quote now. This is basically the
// beginning quotation mark.
this.state.inquote = true
this.state.chquote = r
this.state.nxquote = true
} else if this.state.inquote && this.state.chquote == r {
// If we are at the beginning of the data and we are inside a quote,
// then this is the ending quotation mark.
this.state.inquote = false
} else if !this.state.inquote && !this.state.nxquote {
this.state.nxquote = true
}
//glog.Debugf("i=%d, r=%c, inquote=%t, nxquote=%t, chquote=%c", i, r, this.state.inquote, this.state.nxquote, this.state.chquote)
case '<':
this.state.tokenType = TokenLiteral
if !this.state.inquote {
// If we are not inside a quote now and we are at the beginning,
// then let's be inside the quote now. This is basically the
// beginning quotation mark.
this.state.tokenStop = true
this.state.inquote = true
this.state.chquote = r
} else {
this.state.tokenStop = false
this.state.tokenType = TokenLiteral
}
case '>':
this.state.tokenStop = true
this.state.tokenType = TokenLiteral
if this.state.inquote && this.state.chquote == '<' {
// If we are at the beginning of the data and we are inside a quote,
// then this is the ending quotation mark.
this.state.inquote = false
}
case '\\':
this.state.tokenType = TokenLiteral
case '?', '&':
this.state.tokenType = TokenLiteral
this.state.tokenStop = true
default:
if isLiteral(r) || (this.state.inquote && !matchQuote(this.state.chquote, r)) {
this.state.tokenType = TokenLiteral
} else {
this.state.tokenType = TokenLiteral
this.state.tokenStop = true
}
}
case TokenURI:
//glog.Debugf("i=%d, r=%c, tokenStop=%t, tokenType=%s", i, r, this.state.tokenStop, this.state.tokenType)
switch {
case (i == 1 && (r == 't' || r == 'T')) ||
(i == 2 && (r == 't' || r == 'T')) ||
(i == 3 && (r == 'p' || r == 'P')) ||
(i == 4 && (r == 's' || r == 'S')) ||
((i == 4 || i == 5) && r == ':') ||
((i == 5 || i == 6) && r == '/') ||
((i == 6 || i == 7) && r == '/'):
this.state.tokenType = TokenURI
default:
//if i >= 6 && (!unicode.IsSpace(r) || (this.state.inquote && matchQuote(this.state.chquote, r))) {
if i >= 6 && isUrlChar(r) {
// part of URL, keep going
//this.state.tokenType = TokenURI
} else if i == 4 && r == '/' {
// if it's /, then it's probably something like http/1.0 or http/1.1,
// let's keep it going
this.state.tokenType = TokenLiteral
} else if isLiteral(r) || (this.state.inquote && !matchQuote(this.state.chquote, r)) {
// no longer URL, turn into literal
this.state.tokenType = TokenLiteral
} else {
this.state.tokenStop = true
// if there are 6 or less chars, then it can't be an URL, must be literal
if i < 6 {
this.state.tokenType = TokenLiteral
}
}
}
case TokenInteger:
switch r {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
//no need to change type
case '.':
// this should be the ONLY dot this switch case should see
this.state.dots++
this.state.tokenType = TokenFloat
default:
//could be alpha numeric
if isLiteral(r) || (this.state.inquote && !matchQuote(this.state.chquote, r)) {
// no longer URL, turn into literal
this.state.tokenType = TokenLiteral
} else {
this.state.tokenStop = true
}
}
case TokenFloat:
switch r {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
//this.state.tokenType = TokenFloat
case '.':
this.state.dots++
// this SHOULD only be the second dot we encountered...
// If this token started with a dot, then it can't be ipv4,
// must be literal
if this.state.initDot {
this.state.tokenType = TokenLiteral
} else {
// otherwise assume it's ipv4
// FIXME: will consider something like "123.." as the beginning of IPv4
this.state.tokenType = TokenIPv4
}
default:
if isLiteral(r) || (this.state.inquote && !matchQuote(this.state.chquote, r)) {
// no longer URL, turn into literal
this.state.tokenType = TokenLiteral
} else {
this.state.tokenStop = true
}
}
case TokenLiteral:
if isLiteral(r) || this.state.backslash || (this.state.inquote && !matchQuote(this.state.chquote, r)) || (!this.state.inquote && r == '\'') {
//keep going
} else {
this.state.tokenStop = true
}
//glog.Debugf("tokenStop=%t, r=%c", this.state.tokenStop, r)
case TokenIPv4:
switch r {
case '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
//this.state.tokenType = TokenFloat
case '.':
this.state.dots++
// this SHOULD only be the second dot we encountered...
// If this token started with a dot, then it can't be ipv4,
// must be literal
if this.state.initDot {
this.state.tokenType = TokenLiteral
} else {
// otherwise assume it's ipv4
this.state.tokenType = TokenIPv4
}
case '/':
this.state.tokenStop = true
default:
if isLiteral(r) || (this.state.inquote && !matchQuote(this.state.chquote, r)) {
// no longer URL, turn into literal
this.state.tokenType = TokenLiteral
} else {
this.state.tokenStop = true
}
}
}
//glog.Debugf("2. i=%d, r=%c, tokenStop=%t, tokenType=%s", i, r, this.state.tokenStop, this.state.tokenType)
//this sets the backslash for escaping values in the next round
this.state.backslash = r == '\\'
return this.state.tokenStop
}
// hexStep steps through a string and try to match a hex string of the format
// - dead:beef:1234:5678:223:32ff:feb1:2e50 (ipv6 address)
// - de:ad:be:ef:74:a6:bb:45:45:52:71:de:b2:12:34:56 (mac address)
// - 0:09:36 (literal)
// - f0f0:f::1 (ipv6)
// - and a few others in the scanner_test.go/hextests list
//
// The ipv6 rules are:
// (http://computernetworkingnotes.com/ipv6-features-concepts-and-configurations/ipv6-address-types-and-formats.html)
// - Whereas IPv4 addresses use a dotted-decimal format, where each byte ranges from
// 0 to 255.
// - IPv6 addresses use eight sets of four hexadecimal addresses (16 bits in each set),
// separated by a colon (:), like this: xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx
// (x would be a hexadecimal value). This notation is commonly called string notation.
// - Hexadecimal values can be displayed in either lower- or upper-case for the numbers
// A–F.
// - A leading zero in a set of numbers can be omitted; for example, you could either
// enter 0012 or 12 in one of the eight tags—both are correct.
// - If you have successive tags of zeroes in an IPv6 address, you can represent
// them as two colons (::). For example,0:0:0:0:0:0:0:5 could be represented as ::5;
// and ABC:567:0:0:8888:9999:1111:0 could be represented asABC:567::8888:9999:1111:0.
// However, you can only do this once in the address: ABC::567::891::00 would be
// invalid since ::appears more than once in the address. The reason for this
// limitation is that if you had two or more repetitions, you wouldn’t know how many
// sets of zeroes were being omitted from each part. An unspecified address is
// represented as ::, since it contains all zeroes.
//
// first return value indicates whether this is a valid hex string
// second return value indicates whether to stop scanning
func (this *Message) hexStep(i int, r rune, nr string) (bool, bool) {
switch this.state.hexState {
case hexStart:
switch {
case isHex(r):
this.state.hexState = hexChar1
case r == ':':
this.state.hexState = hexColon
this.state.hexColons++
this.state.hexSuccColons++
this.state.hexStart = true
this.state.hexState = hexColon
if this.state.hexSuccColons > this.state.hexMaxSuccColons {
this.state.hexMaxSuccColons = this.state.hexSuccColons
}
default:
return false, true
}
return false, false
case hexColon:
switch {
case isHex(r):
this.state.hexState = hexChar1
this.state.hexSuccColons = 0
if this.state.hexColons > 0 {
return true, false
}
case r == ':':
this.state.hexSuccColons++
this.state.hexColons++
if this.state.hexSuccColons == 2 {
this.state.hexSuccColonsSeries++
}
if this.state.hexSuccColons > this.state.hexMaxSuccColons {
this.state.hexMaxSuccColons = this.state.hexSuccColons
}
this.state.hexState = hexColon
// for the special case of "::" which is valid and represents an
// unspecified ip, need to check for space afterwards otherwise not
// valid ipv6
if i == 1 && (nr == " " || nr == "'") {
return true, false
}
default:
if this.state.hexColons > 0 && unicode.IsSpace(r) {
return true, true
}
return false, true
}
return false, false
case hexChar1, hexChar2, hexChar3, hexChar4:
switch {
case this.state.hexState != hexChar4 && isHex(r):
this.state.hexState++
this.state.hexSuccColons = 0
case r == ':':
this.state.hexState = hexColon
this.state.hexColons++
this.state.hexSuccColons++
if this.state.hexSuccColons > this.state.hexMaxSuccColons {
this.state.hexMaxSuccColons = this.state.hexSuccColons
}
default:
if this.state.hexColons > 0 && unicode.IsSpace(r) {
return true, true
}
return false, true
}
if this.state.hexColons > 0 {
return true, false
}
return false, false
}
return false, true
}
func (this *Message) reset() {
this.state.prevToken = Token{}
this.state.inquote = false
this.state.nxquote = true
this.state.start = 0
this.state.end = len(this.Data)
this.state.cur = 0
this.state.backslash = false
this.resetTokenStates()
}
func (this *Message) resetTokenStates() {
this.state.dots = 0
this.state.tokenType = TokenUnknown
this.state.tokenStop = false
this.state.initDot = false
this.resetHexStates()
}
func (this *Message) resetHexStates() {
this.state.hexState = hexStart
this.state.hexStart = false
this.state.hexColons = 0
this.state.hexSuccColons = 0
this.state.hexMaxSuccColons = 0
this.state.hexSuccColonsSeries = 0
}
func isLetter(r rune) bool {
return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z'
}
func isLiteral(r rune) bool {
//return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || r >= '0' && r <= '9' || r == '+' || r == '-' || r == '_' || r == '#' || r == '\\' || r == '%' || r == '*' || r == '@' || r == '$' || r == '?' || r == '.' || r == '&' || r == '/'
switch r {
case '+', '-', '_', '\\', '%', '*', '@', '$', '.', '/', '~':
return true
//french letters
case 'é', 'è', 'ê', 'ë', 'ù', 'œ', 'ô', 'ÿ', 'â', 'æ', 'ï', 'ç', 'û', 'ü', 'à', 'î', 'Ù', 'Û', 'Ü', 'Ÿ', 'À', 'Â', 'Æ', 'Ç', 'É', 'È', 'Ê', 'Ë', 'Ï', 'Î', 'Ô', 'Œ':
return true
}
return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || r >= '0' && r <= '9'
}
func isHex(r rune) bool {
return isDigit(r) || r >= 'a' && r <= 'f' || r >= 'A' && r <= 'F'
}
func isDigit(r rune) bool {
return r >= '0' && r <= '9'
}
// http://tools.ietf.org/html/rfc3986#section-2
func isUrlChar(r rune) bool {
switch r {
case '-', '.', '_', '~', ':', '/', '?', '#', '[', ']', '@', '!', '$', '&', '\'', '(', ')', '*', '+', ',', ';', '=', '%', '|':
return true
}
return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || r >= '0' && r <= '9'
}
func isTagTokenChar(r rune) bool {
switch r {
case '+', '-', '*', ':', '_':
return true
}
return 'a' <= r && r <= 'z' || 'A' <= r && r <= 'Z' || r >= '0' && r <= '9'
}
// q - quote char in state
// r - current char
func matchQuote(q, r rune) bool {
return (((r == '"' || r == '\'') && r == q) || (r == '>' && q == '<'))
}