-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTjsParser.cs
776 lines (670 loc) · 21.6 KB
/
TjsParser.cs
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
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Text.RegularExpressions;
using System.Diagnostics;
namespace Tjs
{
#region Tjs数据类型
public enum TjsType
{
Void,
Number,
String,
Array,
Dictionary,
}
// 基类
public class TjsValue
{
public TjsType t;
#region 缩进
// 设置全局缩进单元
public static string Indent
{
get { return _indent; }
set { _indent = value; }
}
// 缩进单元
protected static string _indent = " ";
// 缩进堆栈
protected static string _indentStack = string.Empty;
#endregion
public static TjsValue Load(string file)
{
using (StreamReader r = new StreamReader(file))
{
TjsParser parser = new TjsParser();
return parser.Parse(r);
}
}
public void Save(string file, Encoding encode)
{
using (StreamWriter w = new StreamWriter(file, false, encode))
{
w.Write(this.ToString());
}
}
public virtual double ToDouble()
{
return double.NaN;
}
}
// 空值
public class TjsVoid : TjsValue
{
public TjsVoid()
{
this.t = TjsType.Void;
}
public override string ToString()
{
return "void";
}
}
// 字符串
public class TjsString : TjsValue
{
public readonly string val;
public TjsString(string val)
{
this.val = val;
this.t = TjsType.String;
}
public override string ToString()
{
return string.Format("\"{0}\"", this.val);
}
public override double ToDouble()
{
double ret = double.NaN;
if (this.val != null) double.TryParse(this.val, out ret);
return ret;
}
}
// 数字
public class TjsNumber : TjsValue
{
public readonly double val;
public TjsNumber(double val)
{
this.val = val;
this.t = TjsType.Number;
}
public override string ToString()
{
return this.val.ToString();
}
public override double ToDouble()
{
return this.val;
}
}
// 数组
public class TjsArray : TjsValue
{
public readonly List<TjsValue> val;
public TjsArray(List<TjsValue> val)
{
this.val = val;
this.t = TjsType.Array;
}
public override string ToString()
{
StringBuilder buf = new StringBuilder();
// 保存当前缩进并增加缩进
string savedIndent = _indentStack;
if (_indent != null)
{
_indentStack += _indent;
}
// 当前默认缩进
string currentIndent = _indentStack;
//buf.AppendLine("(const) [");
buf.AppendLine("["); // 兼容2.28
int count = 0;
foreach (TjsValue v in this.val)
{
buf.Append(currentIndent); buf.Append(v.ToString());
// 末尾追加逗号分隔符
if (++count < this.val.Count) buf.AppendLine(",");
}
buf.AppendLine(""); buf.Append(savedIndent); buf.Append("]");
// 恢复缩进
_indentStack = savedIndent;
return buf.ToString();
}
}
// 字典
public class TjsDict : TjsValue
{
public readonly Dictionary<string, TjsValue> val;
public TjsDict(Dictionary<string, TjsValue> val)
{
this.val = val;
this.t = TjsType.Dictionary;
}
public string GetString(string name)
{
TjsValue v = null;
this.val.TryGetValue(name, out v);
TjsString ret = v as TjsString;
return (ret != null) ? ret.val : null;
}
public TjsString SetString(string name, string value)
{
TjsString v = new TjsString(value);
this.val[name] = v;
return v;
}
public double GetNumber(string name)
{
TjsValue v = null;
this.val.TryGetValue(name, out v);
TjsNumber ret = v as TjsNumber;
return (ret != null) ? ret.val : double.NaN;
}
public TjsNumber SetNumber(string name, double value)
{
TjsNumber v = new TjsNumber(value);
this.val[name] = v;
return v;
}
public TjsValue GetValue(string namepath)
{
int split = namepath.IndexOf("/");
if (split < 0)
{
// 读取具体值
TjsValue v = null;
this.val.TryGetValue(namepath, out v);
return v;
}
else
{
string name = namepath.Substring(0, split);
TjsValue v = null;
if (this.val.TryGetValue(name, out v))
{
TjsDict next = v as TjsDict;
if (next != null)
{
return next.GetValue(namepath.Substring(split + 1));
}
}
}
return null;
}
public TjsDict SetValue(string namepath, TjsValue value)
{
int split = namepath.IndexOf("/");
if(split < 0)
{
// 返回最底层的dict
this.val[namepath] = value;
return this;
}
else
{
string name = namepath.Substring(0, split);
TjsValue v = null;
if (this.val.TryGetValue(name, out v))
{
TjsDict next = v as TjsDict;
if (next != null)
{
return next.SetValue(namepath.Substring(split+1), value);
}
}
}
return null;
}
public override string ToString()
{
StringBuilder buf = new StringBuilder();
// 保存当前缩进并增加缩进
string savedIndent = _indentStack;
if (_indent != null)
{
_indentStack += _indent;
}
// 当前默认缩进
string currentIndent = _indentStack;
//buf.AppendLine("(const) %[");
buf.AppendLine("%["); // 兼容2.28
int count = 0;
foreach (KeyValuePair<string, TjsValue> kv in this.val)
{
buf.Append(currentIndent); buf.Append("\""); buf.Append(kv.Key);
buf.Append("\" => "); buf.Append(kv.Value.ToString());
// 末尾追加逗号分隔符
if (++count < this.val.Count) buf.AppendLine(",");
}
buf.AppendLine(""); buf.Append(savedIndent); buf.Append("]");
// 恢复缩进
_indentStack = savedIndent;
return buf.ToString();
}
}
#endregion
// Tjs数据解析器
class TjsParser
{
// 以默认buffer大小初始化
public TjsParser()
{
Reset(DEFAULT_BUFFER_SIZE);
}
// 以指定buffer大小初始化
public TjsParser(int bufferSize)
{
Reset(bufferSize);
}
#region Tjs符号单元
public enum TokenType
{
Unknow,
String,
Number,
Symbol,
}
public class Token
{
public string val = string.Empty;
public TokenType t = TokenType.Unknow;
public TjsString ToTjsString()
{
if(this.val.Length >= 2)
{
string inner = this.val.Substring(1, this.val.Length - 2);
TjsString val = new TjsString(inner);
return val;
}
return null;
}
public TjsNumber ToTjsNumber()
{
double inner = 0;
if(double.TryParse(this.val, out inner))
{
TjsNumber val = new TjsNumber(inner);
return val;
}
return null;
}
}
#endregion
#region 从数据流中解析Tjs符号
Regex _regNumber = new Regex(@"[0-9\.]");
Regex _regNonChar = new Regex(@"\s");
Regex _regSeprater = new Regex(@"[,]");
// 默认使用的buffer大小
const int DEFAULT_BUFFER_SIZE = 8192;
// 缓冲读取的文字流
char[] _buffer;
// 指向buffer中将要读取的字符
int _pos;
// 已解析的字符数
int _parsed;
// buffer中的实际有效长度
int _len;
// 重置所有变量
void Reset(int size)
{
// 储存读取的文字流
if (_buffer == null || _buffer.Length != size)
{
_buffer = new char[size];
}
// 指向buffer中将要读取的字符,初始状态假设Buffer已满
_pos = size;
// 已储存的字符数,配合_pos的初值
_parsed = -size;
// buffer中的实际有效长度
_len = 0;
// 重置错误信息
_error = false;
}
// 已解析的字符数
public int Parsed
{
get { return _parsed + _pos; }
}
// 读取文字流并填充buffer未满的部分
void UpdateBuffer(TextReader r)
{
for (int i = _pos; i < _len; i++)
{
_buffer[i - _pos] = _buffer[i];
}
// 计算新的起始点
int start = _len > _pos ? _len - _pos : 0;
// 统计解析的字符数
_parsed += _pos;
// 重置当前位置
_pos = 0;
_len = start;
// 如果还有则继续读取到buffer中
if (r.Peek() >= 0)
{
_len += r.ReadBlock(_buffer, start, _buffer.Length - start);
}
}
public Token GetNext(TextReader r)
{
// 如果buffer已满则需要更新
if (_pos >= _buffer.Length)
{
UpdateBuffer(r);
}
TokenType t = TokenType.Unknow;
int head = _pos; // 指向第一个有效字符
int tail = -1; // 指向最后一个有效字符
StringBuilder stored = new StringBuilder();
while (_pos < _len)
{
// 读取一个字符,转成字串是为了匹配正则表达式
string cur = _buffer[_pos++].ToString();
//
// 使用if-else是因为要用break来退出while循环
//
if(t == TokenType.Unknow)
{
// 忽略这个无效字符
if (_regNonChar.IsMatch(cur)) { head++; }
// 发现字符串
else if (cur[0] == '"') { t = TokenType.String; }
// 发现数字
else if (_regNumber.IsMatch(cur)) { t = TokenType.Number; }
// 其余解释为符号
else { t = TokenType.Symbol; }
}
else if(t == TokenType.String)
{
// 以此作为结尾
if (cur[0] == '"') { tail = _pos - 1; break; }
}
else if (t == TokenType.Number)
{
// 忽略这个无效字符
if (_regNonChar.IsMatch(cur)) { tail = _pos - 2; break; }
// 保留这个字符
else if (!_regNumber.IsMatch(cur)) { _pos--; tail = _pos - 1; break; }
}
else if(t == TokenType.Symbol)
{
// 忽略这个无效字符
if (_regNonChar.IsMatch(cur)) { tail = _pos - 2; break; }
// 保留这个字符
else if (_regSeprater.IsMatch(cur)) { _pos--; tail = _pos - 1; break; }
}
// 检查是否buffer已满
if (_pos >= _buffer.Length)
{
Debug.Assert(_pos == _buffer.Length, "_pos should not larger than buffer size");
if (_pos > head)
{
// 把buffer中未完的token进行储存
stored.Append(_buffer, head, _pos - head);
}
UpdateBuffer(r);
head = _pos;
}
// 读取结束
else if (_pos >= _len)
{
Debug.Assert(_pos == _len, "_pos should not larger than actual size");
tail = _pos - 1;
}
}
// 追加当前结果
if (tail >= head)
{
stored.Append(_buffer, head, tail - head + 1);
}
// 返回最终值
Token token = new Token();
token.t = t;
if (stored.Length > 0)
{
token.val = stored.ToString();
}
return token;
}
#endregion
#region 显示错误信息
bool _error;
public bool IsError
{
get { return _error; }
}
void ShowError(string msg)
{
_error = true;
Console.Write("Error: ");
Console.WriteLine(msg);
}
void ShowError(Token token)
{
_error = true;
Console.Write("Error occurred at offset ");
Console.Write(this.Parsed);
Console.WriteLine(", parse terminated.");
if(token == null)
{
Console.WriteLine("<< blank token >>");
}
else
{
Console.Write("Type=");
Console.Write(token.t.ToString());
Console.Write(", Value=");
Console.WriteLine(token.val);
}
}
#endregion
#region 解析一个字典
enum DictState
{
Key,
Value,
};
TjsDict ParseDict(TextReader r)
{
TjsParser.Token token = null;
Dictionary<string, TjsValue> inner = new Dictionary<string, TjsValue>();
// 初始状态为读取key状态
DictState s = DictState.Key;
string key = null;
do
{
token = GetNext(r);
if(s == DictState.Key)
{
// 读取键值
if(token.t == TokenType.String && key == null)
{
TjsString tmp = token.ToTjsString();
if(tmp == null)
{
// 无效的键值
ShowError("Invalid Key");
break;
}
// 去掉双引号
key = tmp.val;
if(inner.ContainsKey(key))
{
// 重复的键值
ShowError("Duplicated Key");
break;
}
// 切换到读取Value状态
s = DictState.Value;
}
else
{
// 错误的键值
ShowError("Expect a Key");
break;
}
}
else if(s == DictState.Value)
{
if (token.t == TokenType.Symbol)
{
if(key != null && token.val == "=>")
{
// 读取一个值
TjsValue val = Parse(r);
// 直接返回错误
if (val == null) return null;
inner.Add(key, val);
key = null;
}
else if(key == null && token.val == ",")
{
// 切换为读取key状态
s = DictState.Key;
}
else if(key == null && token.val == "]")
{
// 读取完毕
TjsDict ret = new TjsDict(inner);
return ret;
}
else
{
// 无效的符号
ShowError("Invalid Symbol");
break;
}
}
else
{
// 错误的符号
ShowError("Expect a Symbol");
break;
}
}
} while (token.t != TokenType.Unknow);
ShowError("Dictionary Parsing Failed");
ShowError(token);
return null;
}
#endregion
#region 解析一个数组
TjsArray ParseArray(TextReader r)
{
TjsParser.Token token = null;
List<TjsValue> inner = new List<TjsValue>();
do
{
// 读取一个值
TjsValue val = Parse(r);
// 直接返回错误
if (val == null) return null;
inner.Add(val);
// 读取其后的符号
token = GetNext(r);
if(token.t == TokenType.Symbol)
{
if(token.val == "]")
{
// 读取完毕
TjsArray ret = new TjsArray(inner);
return ret;
}
else if(token.val != ",")
{
// 错误的符号
ShowError("Expect a Comma");
break;
}
}
else
{
// 错误的符号
ShowError("Expect a Symbol");
break;
}
} while (token.t != TokenType.Unknow);
ShowError("Array Parsing Failed");
ShowError(token);
return null;
}
#endregion
#region 解析一个TjsValue
public TjsValue Parse(TextReader r)
{
TjsParser.Token token = null;
do
{
token = GetNext(r);
if(token.t == TokenType.Number)
{
// 解析出数字
TjsNumber ret = token.ToTjsNumber();
if (ret == null)
{
// 数字格式错误
ShowError("Invalid Number");
break;
}
return ret;
}
else if(token.t == TokenType.String)
{
// 解析出字符串
TjsString ret = token.ToTjsString();
if (ret == null)
{
// 字符串格式错误
ShowError("Invalid String");
break;
}
return ret;
}
else if(token.t == TokenType.Symbol)
{
// 兼容2.28
if(token.val == "(const)" || token.val == "int" || token.val == "string")
{
// 啥也不干
}
else if(token.val == "void")
{
// 解析出空值
return new TjsVoid();
}
else if(token.val == "%[")
{
// 返回字典
TjsDict ret = ParseDict(r);
return ret;
}
else if(token.val == "[")
{
// 返回数组
TjsArray ret = ParseArray(r);
return ret;
}
else
{
// 无效的符号
ShowError("Invalid Symbol");
break;
}
}
} while (token.t != TokenType.Unknow);
if(token.t != TokenType.Unknow)
{
ShowError("Value Parsing Failed");
ShowError(token);
}
return null;
}
#endregion
}
}