package fmlib_parse

  1. Overview
  2. Docs

Source file token_parser.ml

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
open Fmlib_std.Interfaces


module State (User: ANY) =
struct
    type t = {
        indent: Indent.t;
        user:   User.t;
        pos1:   Position.t;
        pos2:   Position.t;
        consumed: bool;
    }

    let make (user: User.t): t =
        {indent = Indent.initial;
         user;
         pos1 = Position.start;
         pos2 = Position.start;
         consumed = false;}


    let check_position (column: int) (s: t): Indent.expectation option =
        Indent.check_position column s.indent


    let next (pos1: Position.t) (pos2: Position.t) (user: User.t) (s: t): t =
        {
            user;
            indent =
                Indent.token (Position.column pos1) s.indent;
            pos1 =
                if s.consumed then
                    s.pos1
                else
                    pos1;
            pos2;
            consumed = true;
        }


    let range (s: t): Position.range =
        s.pos1, s.pos2


    let start_located (s: t): t =
        {s with pos1 = s.pos2; consumed = false}

    let end_located (s0: t) (s: t): t =
        if s0.consumed then
            {s with pos1 = s0.pos1}
        else
            s


    let user (s: t): User.t =
        s.user


    let put (user: User.t) (s: t): t =
        {s with user}


    let update (f: User.t -> User.t) (s: t): t =
        {s with user = f s.user}


    let align (s: t): t =
        {s with indent = Indent.align s.indent}


    let left_align (s: t): t =
        {s with indent = Indent.left_align s.indent}


    let start_detach (s:t): t =
        {s with indent = Indent.initial}


    let end_detach (s0:t) (s:t): t =
        {s with indent = s0.indent}


    let start_indent (i: int) (s: t): t =
        assert (0 <= i);
        {s with indent = Indent.start_indent i s.indent}


    let end_indent (i: int) (s0: t) (s: t): t =
        {s with indent = Indent.end_indent i s0.indent s.indent}
end







module Make
        (User:     ANY)
        (Token:    ANY)
        (Final:    ANY)
        (Semantic: ANY)
=
struct

    module State = State (User)

    module Tok =
    struct
        type t = Token.t Located.t
    end

    module Expect =
    struct
        type t = String.t * Indent.violation option
    end


    module Basic = Generic.Make (Tok) (State) (Expect) (Semantic) (Final)

    include Basic

    module Parser =
    struct
        module P0 = Basic.Parser
        include P0

        type state = User.t

        let state (p: t): User.t =
            P0.state p |> State.user
    end


    type expect   = String.t
    type state    = User.t
    type semantic = Semantic.t


    let map_and_update (f: User.t -> 'a -> 'b * User.t) (p: 'a t): 'b t =
        Basic.map_and_update
            (fun state a ->
                 let b, user = f (State.user state) a in
                 b, State.put user state)
            p


    let unexpected (e: String.t): 'a t =
        Basic.unexpected (e, None)


    let (<?>) (p: 'a t) (e: String.t): 'a t =
        Basic.(
            update_expectations
                (fun state -> function
                     | None ->
                         (* end of input reached *)
                         (e, None)
                     | Some ((p1, _), _) ->
                         let column = Position.column p1 in
                         (e, State.check_position column state)
                )
                p
        )


    let get: User.t t =
        Basic.(map State.user get)


    let update (f: User.t -> User.t): unit t =
        Basic.update (State.update f)


    let set (user: User.t): unit t =
        update (fun _ -> user)


    let get_and_update (f: User.t -> User.t): User.t t =
        Basic.(
            map
                State.user
                (get_and_update (State.update f))
        )

    let state_around
            (before: User.t -> User.t)
            (p: 'a t)
            (after: User.t -> 'a -> User.t -> User.t)
        : 'a t
        =
        Basic.state_around
            (State.update before)
            p
            (fun s0 a s1 -> State.(update (after (user s0) a) s1))


    let backtrack (p: 'a t) (e: String.t): 'a t =
        Basic.( backtrack p (e, None) )


    let followed_by (p: 'a t) (e: String.t): 'a t =
        Basic.( followed_by p (e, None) )


    let not_followed_by (p: 'a t) (e: String.t): unit t =
        Basic.( not_followed_by p (e, None) )


    let expect_end (a: 'a): 'a t =
        Basic.expect_end (fun _ -> "end of input", None) a


    let step
            (expect: String.t)
            (f: User.t -> Position.range -> Token.t -> ('a * User.t) option)
        : 'a Basic.t
        =
        Basic.step
            (fun state -> function
                 | None ->
                     (* end of input reached *)
                     Error (expect, None)

                 | Some ((p1, p2), tok) ->
                     let column = Position.column p1
                     in
                     match State.check_position column state with
                     | None ->
                         (* position ok *)
                         begin
                             match f (State.user state) (p1,p2) tok with
                             | None ->
                                 Error (expect, None)
                             | Some (a, user) ->
                                 Ok (a, State.next p1 p2 user state)
                         end

                     | Some vio ->
                         (* violated indentation expectation *)
                         Error (expect, Some vio)
            )





    (* Location Combinators
     * ====================
     *)


    let located (p: 'a t): (Position.range * 'a) t =
        let* s0 = Basic.get_and_update State.start_located in
        let* a  = p in
        let* s1 = Basic.get_and_update (State.end_located s0) in
        return (State.range s1, a)



    (* Indentation combinators *)

    let indent (i: int) (p: 'a t): 'a t =
        assert (0 <= i);
        let* state = Basic.get_and_update (State.start_indent i) in
        let* a     = p in
        let* _     = Basic.update (State.end_indent i state) in
        return a


    let align (p:'a t): 'a t =
        let* _ = Basic.update State.align in
        p


    let left_align (p:'a t): 'a t =
        let* _ = Basic.update State.left_align in
        p


    let detach (p: 'a t): 'a t =
        let* state = Basic.get_and_update State.start_detach in
        let* a     = p in
        let* _     = Basic.update (State.end_detach state) in
        return a



    (* Make the final parser *)

    let make (user: User.t) (p: Final.t t): Parser.t =
        Basic.make
            (State.make user)
            p
            (fun _ -> "end of input", None)


    let make_partial (user: User.t) (p: Final.t t): Parser.t =
        Basic.make_partial
            (State.make user)
            p
end
OCaml

Innovation. Community. Security.