-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathCombinators.cs
1209 lines (1046 loc) · 57.1 KB
/
Combinators.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
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
// Copyright 2016 Datalust, Superpower Contributors, Sprache Contributors
//
// 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.
using System;
using System.Collections.Generic;
using Superpower.Display;
using Superpower.Model;
using Superpower.Util;
// ReSharper disable MemberCanBePrivate.Global
namespace Superpower
{
/// <summary>
/// Functions that construct more complex parsers by combining simpler ones.
/// </summary>
public static class Combinators
{
/// <summary>
/// Apply the text parser <paramref name="valueParser"/> to the span represented by the parsed token.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="valueParser">A function that determines which text parser to apply.</param>
/// <returns>A parser that returns the result of parsing the token value.</returns>
public static TokenListParser<TKind, U> Apply<TKind, U>(this TokenListParser<TKind, Token<TKind>> parser, Func<Token<TKind>, TextParser<U>> valueParser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (valueParser == null) throw new ArgumentNullException(nameof(valueParser));
return input =>
{
var rt = parser(input);
if (!rt.HasValue)
return TokenListParserResult.CastEmpty<TKind, Token<TKind>, U>(rt);
var uParser = valueParser(rt.Value);
var uResult = uParser.AtEnd()(rt.Value.Span);
if (uResult.HasValue)
return TokenListParserResult.Value(uResult.Value, rt.Location, rt.Remainder);
var message = $"invalid {Presentation.FormatExpectation(rt.Value.Kind)}, {uResult.FormatErrorMessageFragment()}";
return new TokenListParserResult<TKind, U>(input, uResult.Remainder.Position, message, null, uResult.Backtrack);
};
}
/// <summary>
/// Apply the text parser <paramref name="valueParser"/> to the span represented by the parsed token.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="valueParser">A text parser to apply.</param>
/// <returns>A parser that returns the result of parsing the token value.</returns>
public static TokenListParser<TKind, U> Apply<TKind, U>(this TokenListParser<TKind, Token<TKind>> parser, TextParser<U> valueParser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (valueParser == null) throw new ArgumentNullException(nameof(valueParser));
var valueParserAtEnd = valueParser.AtEnd();
return input =>
{
var rt = parser(input);
if (!rt.HasValue)
return TokenListParserResult.CastEmpty<TKind, Token<TKind>, U>(rt);
var uResult = valueParserAtEnd(rt.Value.Span);
if (uResult.HasValue)
return TokenListParserResult.Value(uResult.Value, rt.Location, rt.Remainder);
var problem = uResult.Remainder.IsAtEnd ? "incomplete" : "invalid";
var textError = uResult.Remainder.IsAtEnd ? (uResult.Expectations != null ? $", expected {Friendly.List(uResult.Expectations)}" : "") : $", {uResult.FormatErrorMessageFragment()}";
var message = $"{problem} {Presentation.FormatExpectation(rt.Value.Kind)}{textError}";
return new TokenListParserResult<TKind, U>(input, rt.Remainder, uResult.Remainder.Position, message, null, uResult.Backtrack);
};
}
/// <summary>
/// Apply the text parser <paramref name="valueParser"/> to the span
/// captured by the parser.
/// </summary>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="valueParser">A text parser to apply to the span.</param>
/// <returns>A parser that returns the result of parsing the span value.</returns>
public static TextParser<U> Apply<U>(this TextParser<TextSpan> parser, TextParser<U> valueParser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (valueParser == null) throw new ArgumentNullException(nameof(valueParser));
return input =>
{
var rt = parser(input);
if (!rt.HasValue)
return Result.CastEmpty<TextSpan, U>(rt);
var uResult = valueParser(rt.Value);
if (!uResult.HasValue)
{
var errloc = rt.Value.Source != input.Source ? rt.Location : uResult.Location;
return new Result<U>(errloc, rt.Remainder, uResult.ErrorMessage, uResult.Expectations, false);
}
if (!uResult.Remainder.IsAtEnd)
{
var errloc = rt.Value.Source != input.Source ? rt.Location : uResult.Remainder;
return Result.Empty<U>(errloc);
}
return Result.Value(uResult.Value, rt.Location, rt.Remainder);
};
}
/// <summary>
/// Construct a parser that succeeds only if the source is at the end of input.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> AtEnd<T>(this TextParser<T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var result = parser(input);
if (!result.HasValue)
return result;
if (result.Remainder.IsAtEnd)
return result;
return Result.Empty<T>(result.Remainder);
};
}
/// <summary>
/// Construct a parser that succeeds only if the source is at the end of input.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> AtEnd<TKind, T>(this TokenListParser<TKind, T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var result = parser(input);
if (!result.HasValue)
return result;
if (result.Remainder.IsAtEnd)
return result;
return TokenListParserResult.Empty<TKind, T>(result.Remainder);
};
}
/// <summary>
/// Construct a parser that matches one or more instances of applying <paramref name="parser"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T[]> AtLeastOnce<TKind, T>(this TokenListParser<TKind, T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Then(first => parser.Many().Select(rest => ArrayEnumerable.Cons(first, rest)));
}
/// <summary>
/// Construct a parser that matches one or more instances of applying <paramref name="parser"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T[]> AtLeastOnce<T>(this TextParser<T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Then(first => parser.Many().Select(rest => ArrayEnumerable.Cons(first, rest)));
}
/// <summary>
/// Construct a parser that matches a specified number of instances of applying <paramref name="parser"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="count">The number of times to apply <paramref name="parser"/>.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T[]> Repeat<TKind, T>(this TokenListParser<TKind, T> parser, int count)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (count < 0) throw new ArgumentOutOfRangeException(nameof(count));
return input =>
{
// Assuming we'll try the parser and fail quite often, allocating the result
// array lazily should save some allocs for not much effort here.
T[]? result = null;
var remainder = input;
for (var i = 0; i < count; ++i)
{
var r = parser(remainder);
if (!r.HasValue)
return TokenListParserResult.CastEmpty<TKind, T, T[]>(r);
result ??= new T[count];
result[i] = r.Value;
remainder = r.Remainder;
}
return TokenListParserResult.Value(result ?? Array.Empty<T>(), input, remainder);
};
}
/// <summary>
/// Construct a parser that matches a specified number of instances of applying <paramref name="parser"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="count">The number of times to apply <paramref name="parser"/>.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T[]> Repeat<T>(this TextParser<T> parser, int count)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (count < 0) throw new ArgumentOutOfRangeException(nameof(count));
return input =>
{
// Assuming we'll try the parser and fail quite often, allocating the result
// array lazily should save some allocs for not much effort here.
T[]? result = null;
var remainder = input;
for (var i = 0; i < count; ++i)
{
var r = parser(remainder);
if (!r.HasValue)
return Result.CastEmpty<T, T[]>(r);
result ??= new T[count];
result[i] = r.Value;
remainder = r.Remainder;
}
return Result.Value(result ?? Array.Empty<T>(), input, remainder);
};
}
/// <summary>
/// Construct a parser that matches one or more instances of applying <paramref name="parser"/>, delimited by <paramref name="delimiter"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="delimiter">The parser that matches the delimiters.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T[]> AtLeastOnceDelimitedBy<TKind, T, U>(this TokenListParser<TKind, T> parser, TokenListParser<TKind, U> delimiter)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (delimiter == null) throw new ArgumentNullException(nameof(delimiter));
return parser.Then(first => delimiter.IgnoreThen(parser).Many().Select(rest => ArrayEnumerable.Cons(first, rest)));
}
/// <summary>
/// Construct a parser that matches one or more instances of applying <paramref name="parser"/>, delimited by <paramref name="delimiter"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="delimiter">The parser that matches the delimiters.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T[]> AtLeastOnceDelimitedBy<T, U>(this TextParser<T> parser, TextParser<U> delimiter)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (delimiter == null) throw new ArgumentNullException(nameof(delimiter));
return parser.Then(first => delimiter.IgnoreThen(parser).Many().Select(rest => ArrayEnumerable.Cons(first, rest)));
}
/// <summary>
/// Construct a parser that matches <paramref name="left"/>, discards the resulting value,
/// then matches <paramref name="parser"/>, keeps the value, then matches <paramref name="right"/>
/// and returns the value matched by <paramref name="parser"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="left">First parser to match, value is ignored.</param>
/// <param name="right">Last parser to match, value is ignored.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> Between<TKind, T, U>(this TokenListParser<TKind, T> parser, TokenListParser<TKind, U> left, TokenListParser<TKind, U> right)
{
return left.IgnoreThen(parser.Then(right.Value));
}
/// <summary>
/// Construct a parser that matches <paramref name="left"/>, discards the resulting value,
/// then matches <paramref name="parser"/>, keeps the value, then matches <paramref name="right"/>
/// and returns the value matched by <paramref name="parser"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="left">First parser to match, value is ignored.</param>
/// <param name="right">Last parser to match, value is ignored.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> Between<T, U>(this TextParser<T> parser, TextParser<U> left, TextParser<U> right)
{
return left.IgnoreThen(parser.Then(right.Value));
}
/// <summary>
/// Construct a parser that matches <paramref name="first"/>, discards the resulting value, then returns the result of <paramref name="second"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="first">The first parser.</param>
/// <param name="second">The second parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, U> IgnoreThen<TKind, T, U>(this TokenListParser<TKind, T> first, TokenListParser<TKind, U> second)
{
if (first == null) throw new ArgumentNullException(nameof(first));
if (second == null) throw new ArgumentNullException(nameof(second));
return input =>
{
var rt = first(input);
if (!rt.HasValue)
return TokenListParserResult.CastEmpty<TKind, T, U>(rt);
var ru = second(rt.Remainder);
if (!ru.HasValue)
return ru;
return TokenListParserResult.Value(ru.Value, input, ru.Remainder);
};
}
/// <summary>
/// Construct a parser that matches <paramref name="first"/>, discards the resulting value, then returns the result of <paramref name="second"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="first">The first parser.</param>
/// <param name="second">The second parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<U> IgnoreThen<T, U>(this TextParser<T> first, TextParser<U> second)
{
if (first == null) throw new ArgumentNullException(nameof(first));
if (second == null) throw new ArgumentNullException(nameof(second));
return input =>
{
var rt = first(input);
if (!rt.HasValue)
return Result.CastEmpty<T, U>(rt);
var ru = second(rt.Remainder);
if (!ru.HasValue)
return ru;
return Result.Value(ru.Value, input, ru.Remainder);
};
}
/// <summary>
/// Construct a parser that matches <paramref name="parser"/> zero or more times.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
/// <remarks>Many will fail if any item partially matches this. To modify this behavior use <see cref="Try{TKind,T}(TokenListParser{TKind,T})"/>.</remarks>
public static TokenListParser<TKind, T[]> Many<TKind, T>(this TokenListParser<TKind, T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var result = new List<T>();
var from = input;
var r = parser(input);
while (r.HasValue)
{
if (from == r.Remainder) // Broken parser, not a failed parsing.
throw new ParseException($"Many() cannot be applied to zero-width parsers; value {r.Value} at position {r.Location.Position}.", r.ErrorPosition);
result.Add(r.Value);
from = r.Remainder;
r = parser(r.Remainder);
}
if (!r.Backtrack && r.IsPartial(from))
return TokenListParserResult.CastEmpty<TKind, T, T[]>(r);
return TokenListParserResult.Value(result.ToArray(), input, from);
};
}
/// <summary>
/// Construct a parser that matches <paramref name="parser"/> zero or more times.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
/// <remarks>Many will fail if any item partially matches this. To modify this behavior use <see cref="Try{T}(TextParser{T})"/>.</remarks>
public static TextParser<T[]> Many<T>(this TextParser<T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var result = new List<T>();
var from = input;
var r = parser(input);
while (r.HasValue)
{
if (from == r.Remainder) // Broken parser, not a failed parsing.
throw new ParseException($"Many() cannot be applied to zero-width parsers; value {r.Value} at position {r.Location.Position}.", r.Location.Position);
result.Add(r.Value);
from = r.Remainder;
r = parser(r.Remainder);
}
if (!r.Backtrack && r.IsPartial(from))
return Result.CastEmpty<T, T[]>(r);
return Result.Value(result.ToArray(), input, from);
};
}
/// <summary>
/// Construct a parser that matches <paramref name="parser"/> zero or more times, discarding the
/// result. This is useful for avoiding the array allocation performed by <see cref="Many{T}"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
/// <remarks>IgnoreMany will fail if any item partially matches this. To modify this behavior use <see cref="Try{T}(TextParser{T})"/>.</remarks>
public static TextParser<Unit> IgnoreMany<T>(this TextParser<T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var from = input;
var r = parser(input);
while (r.HasValue)
{
if (from == r.Remainder) // Broken parser, not a failed parsing.
throw new ParseException($"IgnoreMany() cannot be applied to zero-width parsers; value {r.Value} at position {r.Location.Position}.", r.Location.Position);
from = r.Remainder;
r = parser(r.Remainder);
}
if (!r.Backtrack && r.IsPartial(from))
return Result.CastEmpty<T, Unit>(r);
return Result.Value(Unit.Value, input, from);
};
}
/// <summary>
/// Construct a parser that matches <paramref name="parser"/> zero or more times, delimited by <paramref name="delimiter"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="delimiter">The parser that matches the delimiters.</param>
/// <param name="end">A parser to match a final trailing delimiter, if required. Specifying
/// this can improve error reporting for some lists.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T[]> ManyDelimitedBy<TKind, T, U>(
this TokenListParser<TKind, T> parser,
TokenListParser<TKind, U> delimiter,
TokenListParser<TKind, U>? end = null)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (delimiter == null) throw new ArgumentNullException(nameof(delimiter));
// ReSharper disable once ConvertClosureToMethodGroup
if (end != null)
return parser
.AtLeastOnceDelimitedBy(delimiter)
.Then(p => end.Value(p))
.Or(end.Value(Array.Empty<T>()));
return parser
.Then(first => delimiter.IgnoreThen(parser).Many().Select(rest => ArrayEnumerable.Cons(first, rest)))
.OptionalOrDefault(Array.Empty<T>());
}
/// <summary>
/// Construct a parser that matches <paramref name="parser"/> zero or more times, delimited by <paramref name="delimiter"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="delimiter">The parser that matches the delimiters.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T[]> ManyDelimitedBy<T, U>(this TextParser<T> parser, TextParser<U> delimiter)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (delimiter == null) throw new ArgumentNullException(nameof(delimiter));
return parser.Then(first => delimiter.IgnoreThen(parser).Many().Select(rest => ArrayEnumerable.Cons(first, rest)))
.OptionalOrDefault(Array.Empty<T>());
}
/// <summary>
/// Constructs a parser that converts a char[]-parser to a string-parser.
/// </summary>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<string> Text(this TextParser<char[]> parser)
=> parser.Select(chars => new string(chars));
/// <summary>
/// Constructs a parser that converts a TextSpan-parser to a string-parser.
/// </summary>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<string> Text(this TextParser<TextSpan> parser)
=> parser.Select(textSpan => textSpan.ToStringValue());
/// <summary>
/// Construct a parser that fails with error message <paramref name="errorMessage"/> when <paramref name="parser"/> fails.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="errorMessage">The error message.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> Message<TKind, T>(this TokenListParser<TKind, T> parser, string errorMessage)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (errorMessage == null) throw new ArgumentNullException(nameof(errorMessage));
return input =>
{
var result = parser(input);
if (result.HasValue)
return result;
return TokenListParserResult.Empty<TKind, T>(result.Remainder, result.SubTokenErrorPosition, errorMessage);
};
}
/// <summary>
/// Construct a parser that fails with error message <paramref name="errorMessage"/> when <paramref name="parser"/> fails.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="errorMessage">The error message.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> Message<T>(this TextParser<T> parser, string errorMessage)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (errorMessage == null) throw new ArgumentNullException(nameof(errorMessage));
return input =>
{
var result = parser(input);
if (result.HasValue)
return result;
return Result.Empty<T>(result.Remainder, errorMessage);
};
}
/// <summary>
/// Construct a parser that returns <paramref name="name"/> as its "expectation" if <paramref name="parser"/> fails.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="name">The name given to <paramref name="parser"/>.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> Named<TKind, T>(this TokenListParser<TKind, T> parser, string name)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (name == null) throw new ArgumentNullException(nameof(name));
return input =>
{
var result = parser(input);
if (result.HasValue || result.IsPartial(input))
return result;
return TokenListParserResult.Empty<TKind, T>(result.Remainder, new[] { name });
};
}
/// <summary>
/// Construct a parser that returns <paramref name="name"/> as its "expectation" if <paramref name="parser"/> fails.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="name">The name given to <paramref name="parser"/>.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> Named<T>(this TextParser<T> parser, string name)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (name == null) throw new ArgumentNullException(nameof(name));
return input =>
{
var result = parser(input);
if (result.HasValue || result.IsPartial(input))
return result;
return Result.Empty<T>(result.Remainder, new[] { name });
};
}
/// <summary>
/// Construct a parser that matches zero or one instance of <paramref name="parser"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T?> Optional<TKind, T>(this TokenListParser<TKind, T> parser)
where T : struct
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Select(t => (T?)t).Or(Parse.Return<TKind, T?>(null));
}
/// <summary>
/// Construct a parser that matches zero or one instance of <paramref name="parser"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T?> Optional<T>(this TextParser<T> parser)
where T : struct
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Select(t => (T?)t).Or(Parse.Return<T?>(null));
}
/// <summary>
/// Construct a parser that matches zero or one instance of <paramref name="parser"/>, returning <paramref name="defaultValue"/> when
/// no match is possible.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="defaultValue">The default value</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> OptionalOrDefault<TKind, T>(this TokenListParser<TKind, T> parser, T defaultValue = default!)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Or(Parse.Return<TKind, T>(defaultValue!));
}
/// <summary>
/// Construct a parser that matches zero or one instance of <paramref name="parser"/>, returning <paramref name="defaultValue"/> when
/// no match is possible.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="defaultValue">The default value.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> OptionalOrDefault<T>(this TextParser<T> parser, T defaultValue = default!)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Or(Parse.Return(defaultValue!));
}
/// <summary>
/// Construct a parser that tries first the <paramref name="lhs"/> parser, and if it fails, applies <paramref name="rhs"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="lhs">The first parser to try.</param>
/// <param name="rhs">The second parser to try.</param>
/// <returns>The resulting parser.</returns>
/// <remarks>Or will fail if the first item partially matches this. To modify this behavior use <see cref="Try{TKind,T}(TokenListParser{TKind,T})"/>.</remarks>
public static TokenListParser<TKind, T> Or<TKind, T>(this TokenListParser<TKind, T> lhs, TokenListParser<TKind, T> rhs)
{
if (lhs == null) throw new ArgumentNullException(nameof(lhs));
if (rhs == null) throw new ArgumentNullException(nameof(rhs));
return input =>
{
var first = lhs(input);
if (first.HasValue || !first.Backtrack && first.IsPartial(input))
return first;
var second = rhs(input);
if (second.HasValue)
return second;
return TokenListParserResult.CombineEmpty(first, second);
};
}
/// <summary>
/// Construct a parser that tries first the <paramref name="lhs"/> parser, and if it fails, applies <paramref name="rhs"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="lhs">The first parser to try.</param>
/// <param name="rhs">The second parser to try.</param>
/// <returns>The resulting parser.</returns>
/// <remarks>Or will fail if the first item partially matches this. To modify this behavior use <see cref="Try{T}(TextParser{T})"/>.</remarks>
public static TextParser<T> Or<T>(this TextParser<T> lhs, TextParser<T> rhs)
{
if (lhs == null) throw new ArgumentNullException(nameof(lhs));
if (rhs == null) throw new ArgumentNullException(nameof(rhs));
return input =>
{
var first = lhs(input);
if (first.HasValue || !first.Backtrack && first.IsPartial(input))
return first;
var second = rhs(input);
if (second.HasValue)
return second;
return Result.CombineEmpty(first, second);
};
}
/// <summary>
/// Construct a parser that takes the result of <paramref name="parser"/> and converts it value using <paramref name="selector"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="selector">A mapping from the first result to the second.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, U> Select<TKind, T, U>(this TokenListParser<TKind, T> parser, Func<T, U> selector)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (selector == null) throw new ArgumentNullException(nameof(selector));
return input =>
{
var rt = parser(input);
if (!rt.HasValue)
return TokenListParserResult.CastEmpty<TKind, T, U>(rt);
var u = selector(rt.Value);
return TokenListParserResult.Value(u, input, rt.Remainder);
};
}
/// <summary>
/// Construct a parser that takes the result of <paramref name="parser"/> and converts it value using <paramref name="selector"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <param name="selector">A mapping from the first result to the second.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<U> Select<T, U>(this TextParser<T> parser, Func<T, U> selector)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (selector == null) throw new ArgumentNullException(nameof(selector));
return input =>
{
var rt = parser(input);
if (!rt.HasValue)
return Result.CastEmpty<T, U>(rt);
var u = selector(rt.Value);
return Result.Value(u, input, rt.Remainder);
};
}
/// <summary>
/// Construct a parser that takes the result of <paramref name="parser"/> and casts it to <typeparamref name="U"/>.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, U> Cast<TKind, T, U>(this TokenListParser<TKind, T> parser)
where T: U
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Select(rt => (U)rt);
}
/// <summary>
/// Construct a parser that takes the result of <paramref name="parser"/> and casts it to <typeparamref name="U"/>.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<U> Cast<T, U>(this TextParser<T> parser)
where T: U
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return parser.Select(rt => (U)rt);
}
/// <summary>
/// Convert a parser of a non-null class type to its nullable equivalent.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T?> AsNullable<TKind, T>(this TokenListParser<TKind, T> parser)
where T: class
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
// ReSharper disable once RedundantCast
return (TokenListParser<TKind, T?>)(object)parser;
}
/// <summary>
/// Convert a parser of a non-null class type to its nullable equivalent.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T?> AsNullable<T>(this TextParser<T> parser)
where T: class
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
// ReSharper disable once RedundantCast
return (TextParser<T?>)(object)parser;
}
/// <summary>
/// The LINQ query comprehension pattern.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <typeparam name="V"></typeparam>
/// <param name="parser">The parser.</param>
/// <param name="selector">A mapping from the first result to the second parser.</param>
/// <param name="projector">Function mapping the results of the first two parsers onto the final result.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<V> SelectMany<T, U, V>(
this TextParser<T> parser,
Func<T, TextParser<U>> selector,
Func<T, U, V> projector)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (selector == null) throw new ArgumentNullException(nameof(selector));
if (projector == null) throw new ArgumentNullException(nameof(projector));
return parser.Then(t => selector(t).Select(u => projector(t, u)));
}
/// <summary>
/// The LINQ query comprehension pattern.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <typeparam name="V"></typeparam>
/// <param name="parser">The parser.</param>
/// <param name="selector">A mapping from the first result to the second parser.</param>
/// <param name="projector">Function mapping the results of the first two parsers onto the final result.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, V> SelectMany<TKind, T, U, V>(
this TokenListParser<TKind, T> parser,
Func<T, TokenListParser<TKind, U>> selector,
Func<T, U, V> projector)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
if (selector == null) throw new ArgumentNullException(nameof(selector));
if (projector == null) throw new ArgumentNullException(nameof(projector));
return parser.Then(t => selector(t).Select(u => projector(t, u)));
}
/// <summary>
/// Construct a parser that applies <paramref name="first"/>, provides the value to <paramref name="second"/> and returns the result.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="first">The first parser.</param>
/// <param name="second">The second parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, U> Then<TKind, T, U>(this TokenListParser<TKind, T> first, Func<T, TokenListParser<TKind, U>> second)
{
if (first == null) throw new ArgumentNullException(nameof(first));
if (second == null) throw new ArgumentNullException(nameof(second));
return input =>
{
var rt = first(input);
if (!rt.HasValue)
return TokenListParserResult.CastEmpty<TKind, T, U>(rt);
var ru = second(rt.Value)(rt.Remainder);
if (!ru.HasValue)
return ru;
return TokenListParserResult.Value(ru.Value, input, ru.Remainder);
};
}
/// <summary>
/// Construct a parser that applies <paramref name="first"/>, provides the value to <paramref name="second"/> and returns the result.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <typeparam name="U">The type of the resulting value.</typeparam>
/// <param name="first">The first parser.</param>
/// <param name="second">The second parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<U> Then<T, U>(this TextParser<T> first, Func<T, TextParser<U>> second)
{
if (first == null) throw new ArgumentNullException(nameof(first));
if (second == null) throw new ArgumentNullException(nameof(second));
return input =>
{
var rt = first(input);
if (!rt.HasValue)
return Result.CastEmpty<T, U>(rt);
var ru = second(rt.Value)(rt.Remainder);
if (!ru.HasValue)
return ru;
return Result.Value(ru.Value, input, ru.Remainder);
};
}
/// <summary>
/// Construct a parser that tries one parser, and backtracks if unsuccessful so that no input
/// appears to have been consumed by subsequent checks against the result.
/// </summary>
/// <typeparam name="TKind">The kind of the tokens being parsed.</typeparam>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TokenListParser<TKind, T> Try<TKind, T>(this TokenListParser<TKind, T> parser)
{
if (parser == null) throw new ArgumentNullException(nameof(parser));
return input =>
{
var rt = parser(input);
if (rt.HasValue)
return rt;
rt.Backtrack = true;
return rt;
};
}
/// <summary>
/// Construct a parser that tries one parser, and backtracks if unsuccessful so that no input
/// appears to have been consumed by subsequent checks against the result.
/// </summary>
/// <typeparam name="T">The type of value being parsed.</typeparam>
/// <param name="parser">The parser.</param>
/// <returns>The resulting parser.</returns>
public static TextParser<T> Try<T>(this TextParser<T> parser)
{