summaryrefslogtreecommitdiff
path: root/src/packrat-lexers.ads
blob: 4b6bbc9b7e05f650238ceac7d222d261a9d6e8ec (plain)
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


--  This source is licensed under the Sunset License v1.0


with

    Packrat.Traits;

private with

    Ada.Containers.Vectors,
    Ada.Containers.Ordered_Sets;


generic

    with package Traits is new Packrat.Traits (<>);

package Packrat.Lexers is


    type Lexer_Context is private;




    type Combinator_Result is private;

    type Combinator is access function
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    type Combinator_Array is array (Positive range <>) of Combinator;




    type Component_Result is private;

    type Component is access function
           (Input   : in     Traits.Element_Array;
            Context : in out Lexer_Context)
        return Component_Result;

    type Component_Array is array (Positive range <>) of Component;




    type With_Input is access function
           return Traits.Element_Array;




    generic
        Components : in Component_Array;
    package Scan_Parts is

        function Scan
               (Input : in Traits.Element_Array)
            return Traits.Tokens.Token_Array;

        procedure Reset;

    end Scan_Parts;


    generic
        Components : in Component_Array;
    package Scan_Once is

        function Scan
               (Input : in Traits.Element_Array)
            return Traits.Tokens.Token_Array;

        procedure Reset;

    end Scan_Once;


    generic
        Components : in Component_Array;
    package Scan_With is

        function Scan
               (Input : in With_Input)
            return Traits.Tokens.Token_Array;

        procedure Reset;

    end Scan_With;


    generic
        Components : in Component_Array;
        Pad_In     : in Traits.Element_Type;
        Pad_Out    : in Traits.Tokens.Token_Type;
    package Scan_Set is

        procedure Scan
               (Input  : in     Traits.Element_Array;
                Output :    out Traits.Tokens.Token_Array);

        procedure Reset;

    end Scan_Set;


    generic
        Components : in Component_Array;
        Pad_In     : in Traits.Element_Type;
        Pad_Out    : in Traits.Tokens.Token_Type;
    package Scan_Set_With is

        procedure Scan
               (Input  : in     With_Input;
                Output :    out Traits.Tokens.Token_Array);

        procedure Reset;

    end Scan_Set_With;




    generic
        Label : in Traits.Label_Enum;
        with function Combo
               (Input : in Traits.Element_Array;
                Start : in Positive)
            return Combinator_Result;
    function Stamp
           (Input   : in     Traits.Element_Array;
            Context : in out Lexer_Context)
        return Component_Result;

    generic
        Label : in Traits.Label_Enum;
        with function Combo
               (Input : in Traits.Element_Array;
                Start : in Positive)
            return Combinator_Result;
    function Discard
           (Input   : in     Traits.Element_Array;
            Context : in out Lexer_Context)
        return Component_Result;




    generic
        Params : in Combinator_Array;
    function Sequence
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Param
               (Input : in Traits.Element_Array;
                Start : in Positive)
            return Combinator_Result;
        Number : in Positive;
    function Count
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Param
               (Input : in Traits.Element_Array;
                Start : in Positive)
            return Combinator_Result;
        Minimum : in Natural := 0;
    function Many
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Param
               (Input : in Traits.Element_Array;
                Start : in Positive)
            return Combinator_Result;
        with function Test
               (Item : in Traits.Element_Type)
            return Boolean;
        Minimum : in Natural := 0;
    function Many_Until
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;




    generic
        with function Test
               (Item : in Traits.Element_Type)
            return Boolean;
    function Satisfy
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Test
               (Item : in Traits.Element_Type)
            return Boolean;
        with function Change
               (From : in Traits.Element_Type)
            return Traits.Element_Type;
    function Satisfy_With
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        Item : in Traits.Element_Type;
    function Match
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        Item : in Traits.Element_Type;
        with function Change
               (From : in Traits.Element_Type)
            return Traits.Element_Type;
    function Match_With
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        Items : in Traits.Element_Array;
    function Multimatch
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        Number : in Positive := 1;
    function Take
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Test
               (Item : in Traits.Element_Type)
            return Boolean;
    function Take_While
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;

    generic
        with function Test
               (Item : in Traits.Element_Type)
            return Boolean;
    function Take_Until
           (Input : in Traits.Element_Array;
            Start : in Positive)
        return Combinator_Result;


private


    use type Traits.Label_Enum;
    use type Traits.Element_Type;
    use type Traits.Element_Array;




    package Token_Vectors is new Ada.Containers.Vectors
       (Index_Type   => Positive,
        Element_Type => Traits.Tokens.Token_Type,
        "="          => Traits.Tokens."=");

    package Label_Vectors is new Ada.Containers.Vectors
       (Index_Type   => Positive,
        Element_Type => Traits.Label_Enum);

    package Label_Sets is new Ada.Containers.Ordered_Sets
       (Element_Type => Traits.Label_Enum);

    package Input_Holders is new Ada.Containers.Indefinite_Holders
       (Element_Type => Traits.Element_Array);




    type Combinator_Result is record
        Finish : Natural;
        Status : Result_Status;
    end record;

    Empty_Fail : constant Combinator_Result :=
       (Finish => 0,
        Status => Failure);




    type Component_Result is (Component_Failure, Component_Success);




    type Lexer_Context is record
        Result_So_Far    : Token_Vectors.Vector;
        Position         : Positive := 1;
        Offset           : Natural := 0;
        Status           : Result_Status := Success;
        Pass_Forward     : Input_Holders.Holder;
        Empty_Labels     : Label_Sets.Set;
        Error_Labels     : Label_Vectors.Vector;
        Allow_Incomplete : Boolean := True;
    end record;

    Empty_Context : constant Lexer_Context :=
       (Result_So_Far    => Token_Vectors.Empty_Vector,
        Position         => 1,
        Offset           => 0,
        Status           => Success,
        Pass_Forward     => Input_Holders.Empty_Holder,
        Empty_Labels     => Label_Sets.Empty_Set,
        Error_Labels     => Label_Vectors.Empty_Vector,
        Allow_Incomplete => True);


end Packrat.Lexers;