-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathAsn1Document.cs
More file actions
1657 lines (1314 loc) · 34.3 KB
/
Asn1Document.cs
File metadata and controls
1657 lines (1314 loc) · 34.3 KB
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
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System.Text;
using System.Collections.Generic;
using System.Globalization;
using Waher.Content.Asn1.Exceptions;
using Waher.Content.Asn1.Model;
using Waher.Content.Asn1.Model.Macro;
using Waher.Content.Asn1.Model.Restrictions;
using Waher.Content.Asn1.Model.Sets;
using Waher.Content.Asn1.Model.Types;
using Waher.Content.Asn1.Model.Values;
using System.Threading.Tasks;
using Waher.Runtime.IO;
namespace Waher.Content.Asn1
{
/// <summary>
/// Represents an ASN.1 document.
/// </summary>
public class Asn1Document
{
internal readonly Dictionary<string, Asn1Node> namedNodes = new Dictionary<string, Asn1Node>();
internal readonly Dictionary<string, Asn1TypeDefinition> aliases = new Dictionary<string, Asn1TypeDefinition>();
internal readonly Dictionary<string, Asn1FieldValueDefinition> values = new Dictionary<string, Asn1FieldValueDefinition>();
internal int pos = 0;
private readonly string text;
private readonly string location;
private readonly string[] importFolders;
private readonly int len;
private readonly int lenm1;
private Asn1Definitions root;
private int unnamedIndex = 1;
private Asn1Document(string Text, string Location, string[] ImportFolders)
{
this.text = Text;
this.location = Location;
this.importFolders = ImportFolders;
this.len = this.text.Length;
this.lenm1 = this.len - 1;
}
/// <summary>
/// Represents an ASN.1 document.
/// </summary>
/// <param name="Text">ASN.1 text to parse.</param>
/// <param name="Location">Location of file.</param>
/// <param name="ImportFolders">Import Folders.</param>
public async Task<Asn1Document> CreateAsync(string Text, string Location, string[] ImportFolders)
{
Asn1Document Result = new Asn1Document(Text, Location, ImportFolders)
{
root = await this.ParseDefinitions()
};
return Result;
}
/// <summary>
/// ASN.1 Root node
/// </summary>
public Asn1Definitions Root => this.root;
/// <summary>
/// ASN.1 text
/// </summary>
public string Text => this.text;
/// <summary>
/// Location of document.
/// </summary>
public string Location => this.location;
/// <summary>
/// Import folders.
/// </summary>
public string[] ImportFolders => this.importFolders;
/// <summary>
/// Read from file.
/// </summary>
/// <param name="FileName">Filename.</param>
/// <param name="ImportFolders">Import folders.</param>
/// <returns>ASN.1 document</returns>
public static async Task<Asn1Document> FromFile(string FileName, string[] ImportFolders)
{
string Text = await Files.ReadAllTextAsync(FileName);
return new Asn1Document(Text, FileName, ImportFolders);
}
internal void SkipWhiteSpace()
{
char ch;
while (this.pos < this.len)
{
ch = this.text[this.pos];
if (ch <= ' ' || ch == (char)160)
this.pos++;
else if (ch == '-' && this.pos < this.lenm1 && this.text[this.pos + 1] == '-')
{
this.pos += 2;
while (this.pos < this.len)
{
ch = this.text[this.pos];
if (ch == '\r' || ch == '\n')
break;
if (ch == '-' && this.pos < this.len - 1 && this.text[this.pos + 1] == '-')
{
this.pos += 2;
break;
}
this.pos++;
}
}
else if (ch == '/' && this.pos < this.lenm1 && this.text[this.pos + 1] == '*')
{
this.pos += 2;
while ((this.pos < this.len && this.text[this.pos] != '*') ||
(this.pos < this.lenm1 && this.text[this.pos + 1] != '/'))
{
this.pos++;
}
}
else
break;
}
}
internal char NextChar()
{
if (this.pos < this.len)
return this.text[this.pos++];
else
return (char)0;
}
internal char PeekNextChar()
{
if (this.pos < this.len)
return this.text[this.pos];
else
return (char)0;
}
internal string NextToken()
{
this.SkipWhiteSpace();
char ch = this.NextChar();
if (char.IsLetter(ch) || char.IsDigit(ch) || ch == '-' || ch == '_')
{
int Start = this.pos - 1;
while (this.pos < this.len && (char.IsLetter(ch = this.text[this.pos]) || char.IsDigit(ch) || ch == '-' || ch == '_'))
this.pos++;
return this.text.Substring(Start, this.pos - Start);
}
else
{
switch (ch)
{
case ':':
switch (this.PeekNextChar())
{
case ':':
this.pos++;
switch (this.PeekNextChar())
{
case '=':
this.pos++;
return "::=";
default:
return "::";
}
default:
return new string(ch, 1);
}
case '.':
if (this.PeekNextChar() == '.')
{
this.pos++;
if (this.PeekNextChar() == '.')
{
this.pos++;
return "...";
}
else
return "..";
}
else
return ".";
case '[':
if (this.PeekNextChar() == '[')
{
this.pos++;
return "[[";
}
else
return "[";
case ']':
if (this.PeekNextChar() == ']')
{
this.pos++;
return "]]";
}
else
return "]";
default:
return new string(ch, 1);
}
}
}
internal string PeekNextToken()
{
this.SkipWhiteSpace();
int Bak = this.pos;
string s = this.NextToken();
this.pos = Bak;
return s;
}
internal void AssertNextToken(string ExpectedToken)
{
string s = this.NextToken();
if (s != ExpectedToken)
throw this.SyntaxError(ExpectedToken + " expected.");
}
internal Asn1SyntaxException SyntaxError(string Message)
{
return new Asn1SyntaxException(Message, this.text, this.pos);
}
private async Task<Asn1Definitions> ParseDefinitions()
{
string Identifier = this.ParseTypeNameIdentifier();
string s = this.PeekNextToken();
Asn1Oid Oid = null;
if (s == "{")
{
Oid = this.ParseOid();
s = this.PeekNextToken();
}
if (s != "DEFINITIONS")
throw this.SyntaxError("DEFINITIONS expected.");
this.pos += 11;
Asn1Tags? Tags = null;
bool Abstract = false;
while (true)
{
switch (s = this.NextToken())
{
case "AUTOMATIC":
case "IMPLICIT":
case "EXPLICIT":
if (Tags.HasValue)
throw this.SyntaxError("TAGS already specified.");
switch (s)
{
case "AUTOMATIC":
Tags = Asn1Tags.Automatic;
break;
case "IMPLICIT":
Tags = Asn1Tags.Implicit;
break;
case "EXPLICIT":
Tags = Asn1Tags.Explicit;
break;
}
this.AssertNextToken("TAGS");
break;
case "ABSTRACT-SYNTAX":
Abstract = true;
break;
case "::=":
s = null;
break;
default:
throw this.SyntaxError("::= expected.");
}
if (s is null)
break;
}
Asn1Module Body = await this.ParseModule();
return new Asn1Definitions(Identifier, Oid, Tags, Abstract, Body, this);
}
private async Task<Asn1Module> ParseModule()
{
string s;
this.AssertNextToken("BEGIN");
List<Asn1Import> Imports = null;
List<string> Exports = null;
do
{
s = this.PeekNextToken();
if (s == "IMPORTS")
{
this.pos += 7;
if (Imports is null)
Imports = new List<Asn1Import>();
List<string> Identifiers = new List<string>();
do
{
string Identifier = this.ParseIdentifier();
string ModuleRef;
s = this.PeekNextToken();
if (s == "FROM")
{
this.pos += 4;
Identifiers.Add(Identifier);
ModuleRef = this.ParseTypeNameIdentifier();
Imports.Add(new Asn1Import(Identifiers.ToArray(), ModuleRef, this));
Identifiers.Clear();
s = this.PeekNextToken();
if (s != ";")
continue;
}
else if (s == ".")
{
this.pos++;
ModuleRef = Identifier;
Identifier = this.ParseIdentifier();
Imports.Add(new Asn1Import(new string[] { ModuleRef }, Identifier, this));
s = this.PeekNextToken();
}
else
Identifiers.Add(Identifier);
if (s == ",")
{
this.pos++;
continue;
}
else if (s == ";")
{
this.pos++;
break;
}
else
throw this.SyntaxError("Unexpected token.");
}
while (true);
if (Identifiers.Count > 0)
Imports.Add(new Asn1Import(Identifiers.ToArray(), string.Empty, this));
foreach (Asn1Import Import in Imports)
{
Asn1Document Doc = await Import.LoadDocument();
foreach (string Identifier in Import.Identifiers)
{
if (!Doc.namedNodes.TryGetValue(Identifier, out Asn1Node ImportedNode))
throw this.SyntaxError(Identifier + " not found in " + Import.Module);
this.namedNodes[Identifier] = ImportedNode;
if (Doc.aliases.TryGetValue(Identifier, out Asn1TypeDefinition TypeDef))
this.aliases[Identifier] = TypeDef;
if (Doc.values.TryGetValue(Identifier, out Asn1FieldValueDefinition ValueDef))
this.values[Identifier] = ValueDef;
}
}
}
else if (s == "EXPORTS")
{
this.pos += 7;
if (Exports is null)
Exports = new List<string>();
do
{
string Identifier = this.ParseIdentifier();
Exports.Add(Identifier);
s = this.PeekNextToken();
if (s == ",")
{
this.pos++;
continue;
}
else if (s == ";")
{
this.pos++;
break;
}
else
throw this.SyntaxError("; expected");
}
while (true);
}
else
break;
}
while (true);
List<Asn1Node> Items = new List<Asn1Node>();
while ((s = this.PeekNextToken()) != "END")
{
if (string.IsNullOrEmpty(s))
throw this.SyntaxError("END expected.");
Asn1Node Node = this.ParseStatement();
Items.Add(Node);
if (Node is INamedNode NamedNode)
this.namedNodes[NamedNode.Name] = Node;
}
this.pos += 3;
return new Asn1Module(Imports?.ToArray(), Exports?.ToArray(), Items.ToArray());
}
private Asn1Node ParseStatement()
{
string s = this.PeekNextToken();
if (string.IsNullOrEmpty(s))
throw this.SyntaxError("Unexpected end of file.");
char ch = s[0];
string s2;
if (char.IsLetter(ch))
{
int PosBak = this.pos;
this.pos += s.Length;
s2 = this.PeekNextToken();
if (s2 == "::=")
{
if (!char.IsUpper(ch)) // !Type = XML notation
throw this.SyntaxError("XML notation not supported.");
this.pos += s2.Length;
s2 = this.PeekNextToken();
}
else if (s2 == "MACRO")
{
this.pos += 5;
this.AssertNextToken("::=");
this.AssertNextToken("BEGIN");
this.AssertNextToken("TYPE");
this.AssertNextToken("NOTATION");
this.AssertNextToken("::=");
UserDefinedItem TypeNotation = this.ParseUserDefinedOptions("VALUE");
this.AssertNextToken("VALUE");
this.AssertNextToken("NOTATION");
this.AssertNextToken("::=");
UserDefinedItem ValueNotation = this.ParseUserDefinedOptions("END");
List<SupportingSyntax> SupportingSyntax = new List<SupportingSyntax>();
while (this.PeekNextToken() != "END")
{
string Name = this.ParseIdentifier();
this.AssertNextToken("::=");
SupportingSyntax.Add(new SupportingSyntax(Name, this.ParseUserDefinedOptions("END")));
}
this.AssertNextToken("END");
return new Asn1Macro(s, TypeNotation, ValueNotation, SupportingSyntax.ToArray(), this);
}
else if (this.namedNodes.TryGetValue(s2, out Asn1Node Node) &&
Node is Asn1Macro Macro)
{
this.pos += s2.Length;
Asn1Value Value = Macro.ParseValue(this);
Asn1FieldValueDefinition ValueDef = new Asn1FieldValueDefinition(s, Macro.GetValueType(), Value, this);
this.values[s] = ValueDef;
return ValueDef;
}
else
{
if (char.IsUpper(ch)) // Type or macro
{
s2 = s;
s = "unnamed" + (this.unnamedIndex++).ToString();
ch = 'u';
this.pos = PosBak;
}
}
int? Tag = null;
TagClass? Class = null;
if (s2 == "[")
{
this.pos++;
s2 = this.NextToken();
if (s2 == "TAG")
{
this.AssertNextToken(":");
s2 = this.NextToken();
}
switch (s2)
{
case "APPLICATION":
Class = TagClass.Application;
s2 = this.NextToken();
break;
case "PRIVATE":
Class = TagClass.Private;
s2 = this.NextToken();
break;
case "UNIVERSAL":
Class = TagClass.Universal;
s2 = this.NextToken();
break;
}
if (!int.TryParse(s2, out int i))
throw this.SyntaxError("Tag expected.");
if (Class.HasValue)
i |= ((int)Class) << 6;
Tag = i;
this.AssertNextToken("]");
s2 = this.PeekNextToken();
}
if (char.IsUpper(ch)) // Type
{
Asn1Type Definition;
if (this.namedNodes.TryGetValue(s2, out Asn1Node Node) &&
Node is Asn1Macro Macro)
{
this.pos += s2.Length;
Definition = Macro.ParseType(this);
}
else
Definition = this.ParseType(s, true);
Asn1TypeDefinition TypeDef = new Asn1TypeDefinition(s, Tag, Definition);
if (!Definition.ConstructedType)
this.aliases[s] = TypeDef;
return TypeDef;
}
else // name
{
if (!IsTypeIdentifier(s2))
throw this.SyntaxError("Type name expected.");
Asn1Type Type = this.ParseType(s, false);
if (this.PeekNextToken() == "::=")
{
this.pos += 3;
Asn1Value Value = this.ParseValue();
Asn1FieldValueDefinition ValueDef = new Asn1FieldValueDefinition(s, Type, Value, this);
this.values[s] = ValueDef;
return ValueDef;
}
else
return new Asn1FieldDefinition(s, Tag, Type);
}
}
else if (s == "...")
{
this.pos += 3;
return new Asn1Extension();
}
else
throw this.SyntaxError("Identifier expected.");
}
private UserDefinedItem ParseUserDefinedOptions(string EndKeyWord)
{
UserDefinedItem Item = this.ParseUserDefinedOption(EndKeyWord);
List<UserDefinedItem> Options = null;
while (this.PeekNextToken() == "|")
{
this.pos++;
if (Options is null)
Options = new List<UserDefinedItem>();
Options.Add(Item);
Item = this.ParseUserDefinedOption(EndKeyWord);
}
if (Options is null)
return Item;
else
{
Options.Add(Item);
return new UserDefinedOptions(Options.ToArray());
}
}
private UserDefinedItem ParseUserDefinedOption(string EndKeyWord)
{
UserDefinedItem Item = null;
List<UserDefinedItem> Items = new List<UserDefinedItem>();
string s;
int PosBak = this.pos;
while ((s = this.PeekNextToken()) != EndKeyWord && s != "::=" && s != "|")
{
if (!(Item is null))
{
if (Items is null)
Items = new List<UserDefinedItem>();
Items.Add(Item);
}
PosBak = this.pos;
Item = this.ParseUserDefinedItem();
}
if (Item is null)
throw this.SyntaxError("Items expected.");
if (s == "::=")
{
if (Items is null)
throw this.SyntaxError("Items expected.");
this.pos = PosBak;
if (Items.Count == 1)
return Items[0];
}
else if (Items is null)
return Item;
else
Items.Add(Item);
return new UserDefinedOption(Items.ToArray());
}
private UserDefinedItem ParseUserDefinedItem()
{
string s = this.PeekNextToken();
if (s == "\"")
{
if (!(this.ParseValue() is Asn1StringValue Label))
throw this.SyntaxError("String label expected.");
return new UserDefinedLiteral(Label.Value);
}
if (!IsIdentifier(s))
throw this.SyntaxError("Identifier or literal expected.");
this.pos += s.Length;
if (this.PeekNextToken() == "(")
{
this.pos++;
string Name = this.ParseIdentifier();
if (this.PeekNextToken() == ")")
{
this.pos++;
return new UserDefinedSpecifiedPart(s, string.Empty, new Asn1TypeReference(Name, this));
}
else
{
Asn1Type Type = this.ParseType(Name, false);
this.AssertNextToken(")");
return new UserDefinedSpecifiedPart(s, Name, Type);
}
}
else
return new UserDefinedPart(s);
}
private Asn1Restriction ParseRestriction()
{
this.AssertNextToken("(");
Asn1Restriction Result = this.ParseOrs();
this.AssertNextToken(")");
return Result;
}
private Asn1Restriction ParseOrs()
{
Asn1Restriction Result = this.ParseAnds();
string s = this.PeekNextToken();
while (s == "|")
{
this.pos++;
Result = new Asn1Or(Result, this.ParseAnds());
s = this.PeekNextToken();
}
return Result;
}
private Asn1Restriction ParseAnds()
{
Asn1Restriction Result = this.ParseRestrictionRule();
string s = this.PeekNextToken();
while (s == "^")
{
this.pos++;
Result = new Asn1And(Result, this.ParseRestrictionRule());
s = this.PeekNextToken();
}
return Result;
}
private Asn1Restriction ParseRestrictionRule()
{
string s = this.PeekNextToken();
switch (s)
{
case "(":
this.pos++;
Asn1Restriction Result = this.ParseOrs();
this.AssertNextToken(")");
return Result;
case "SIZE":
this.pos += 4;
return new Asn1Size(this.ParseSet());
case "PATTERN":
this.pos += 7;
return new Asn1Pattern(this.ParseValue());
case "FROM":
this.pos += 4;
return new Asn1From(this.ParseSet());
case "CONTAINING":
this.pos += 10;
return new Asn1Containing(this.ParseValue());
case "ENCODED":
this.pos += 7;
this.AssertNextToken("BY");
return new Asn1EncodedBy(this.ParseValue());
case "WITH":
this.pos += 4;
this.AssertNextToken("COMPONENTS");
return new Asn1WithComponents(this.ParseValue());
default:
return new Asn1InSet(this.ParseUnions());
}
}
private Asn1Values ParseSet()
{
this.AssertNextToken("(");
Asn1Values Result = this.ParseUnions();
this.AssertNextToken(")");
return Result;
}
private Asn1Values ParseUnions()
{
Asn1Values Result = this.ParseIntersections();
string s = this.PeekNextToken();
while (s == "|" || s == "UNION")
{
this.pos += s.Length;
Result = new Asn1Union(Result, this.ParseIntersections());
s = this.PeekNextToken();
}
return Result;
}
private Asn1Values ParseIntersections()
{
Asn1Values Result = this.ParseIntervals();
string s = this.PeekNextToken();
while (s == "^" || s == "INTERSECTION")
{
this.pos += s.Length;
Result = new Asn1Union(Result, this.ParseIntervals());
s = this.PeekNextToken();
}
return Result;
}
private Asn1Values ParseIntervals()
{
string s = this.PeekNextToken();
if (s == "(")
{
this.pos++;
Asn1Values Result = this.ParseUnions();
this.AssertNextToken(")");
return Result;
}
else if (s == "ALL")
{
this.pos += 3;
return new Asn1All();
}
else
{
Asn1Value Value = this.ParseValue();
if (this.PeekNextToken() == "..")
{
this.pos += 2;
Asn1Value Value2 = this.ParseValue();
return new Asn1Interval(Value, Value2);
}
else
return new Asn1Element(Value);
}
}
private string ParseIdentifier()
{
string s = this.NextToken();
if (!IsIdentifier(s))
throw this.SyntaxError("Identifier expected.");
return s;
}
private string ParseTypeNameIdentifier()
{
string s = this.NextToken();
if (!IsTypeIdentifier(s))
throw this.SyntaxError("Type name identifier expected.");
return s;
}
private static bool IsIdentifier(string s)
{
return !string.IsNullOrEmpty(s) && char.IsLetter(s[0]);
}
private static bool IsTypeIdentifier(string s)
{
char ch;
return !string.IsNullOrEmpty(s) && char.IsLetter(ch = s[0]) && char.IsUpper(ch);
}
private static bool IsFieldIdentifier(string s)
{
char ch;
return !string.IsNullOrEmpty(s) && char.IsLetter(ch = s[0]) && char.IsLower(ch);
}
private Asn1Oid ParseOid()
{
Asn1Node[] Values = this.ParseValues();
return new Asn1Oid(Values);
}
internal Asn1Type ParseType(string Name, bool TypeDef)
{
bool Implicit = false;
switch (this.PeekNextToken())
{
case "IMPLICIT":
this.pos += 8;
Implicit = true;
break;
}
Asn1Type Result = this.ParseDataType(Name, TypeDef);
Result.Implicit = Implicit;
string s2;
while (true)
{
s2 = this.PeekNextToken();
switch (s2)
{
case "(":
Result.Restriction = this.ParseRestriction();
break;
case "{":
this.pos++;
List<Asn1NamedValue> NamedOptions = new List<Asn1NamedValue>();
while (true)
{
s2 = this.NextToken();
if (!IsFieldIdentifier(s2))
throw this.SyntaxError("Value name expected.");
if (this.PeekNextToken() == "(")
{
this.pos++;
NamedOptions.Add(new Asn1NamedValue(s2, this.ParseValue(), this));
if (this.NextToken() != ")")
throw this.SyntaxError(") expected");
}
else
NamedOptions.Add(new Asn1NamedValue(s2, null, this));
s2 = this.NextToken();
if (s2 == ",")
continue;
else if (s2 == "}")
{