File: cf_dfa.ml

package info (click to toggle)
pagodacf 0.5-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,092 kB
  • ctags: 2,135
  • sloc: ml: 7,515; ansic: 3,271; makefile: 172
file content (354 lines) | stat: -rw-r--r-- 11,025 bytes parent folder | download
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
(*---------------------------------------------------------------------------*
  IMPLEMENTATION  cf_dfa.ml

  Copyright (c) 2002-2004, James H. Woodyatt
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:

    Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.

    Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  OF THE POSSIBILITY OF SUCH DAMAGE.
 *---------------------------------------------------------------------------*)

class ['i] cursor pos =
    object(_:'self)
        inherit ['i] Cf_parser.cursor pos
        
        method error (_: int) (_: ('i * 'self) Cf_seq.t) = ()
    end

module NFA_state = struct
    type t = int

    module Order = Cf_ordered.Int_order
    module Map = Cf_rbtree.Map(Order)
    module Set = Cf_rbtree.Set(Order)
end

type y = {
    y_counter_: int;
    y_first_: NFA_state.Set.t;
    y_last_: NFA_state.Set.t;
    y_follow_: Obj.t NFA_state.Map.t -> Obj.t NFA_state.Map.t;
}

type x = {
    x_null_: bool;
    x_cons_: int -> y;
}

let nil_ =
    let cons i = {
        y_counter_ = i;
        y_first_ = NFA_state.Set.nil;
        y_last_ = NFA_state.Set.nil;
        y_follow_ = Obj.magic;
    }
    in {
        x_null_ = true;
        x_cons_ = cons;
    }

class virtual ['action] satisfier =
    object(_:'self)
        val state_ = NFA_state.Set.nil
        
        method virtual edge: int -> NFA_state.Set.t -> NFA_state.Set.t
        method follow s = {< state_ = NFA_state.Set.union state_ s >}
        method accept x = (x : 'action)
    end

class ['action] acceptor f =
    object(self:'self)
        constraint 'action =
            (int -> ('i #cursor, 'i, 'o) Cf_parser.X.t) option
        
        inherit ['action] satisfier
        
        method edge _ u = u
        method follow _ = (self :> 'self)
        method accept = function None -> Some f | x -> x
    end

class ['action] literal i =
    object(self)
        inherit ['action] satisfier
        
        method edge sym u =
            if sym = i then NFA_state.Set.union state_ u else u
    end

class ['action] mapped f =
    object(self)
        inherit ['action] satisfier
        
        method edge sym u =
            if f sym then NFA_state.Set.union state_ u else u
    end

let node_ n =
    let _ = (n :> 'action satisfier) in
    let cons i =
        let s = NFA_state.Set.singleton i in {
            y_counter_ = succ i;
            y_first_ = s;
            y_last_ = s;
            y_follow_ = Obj.magic (NFA_state.Map.replace (i, n));
        }
    in {
        x_null_ = false;
        x_cons_ = cons;
    }

type ('i, 'o) suspension_t = {
    s_accept_: (int -> ('i cursor, 'i, 'o) Cf_parser.X.t) option;
    s_next_: ('i, 'o) suspension_t Lazy.t array;
}

module DFA_state = struct
    type t = int array

    module Order = struct
        type t = int array
        let compare = Pervasives.compare
    end

    module Map = Cf_rbtree.Map(Order)
end

exception Unrecognized

module type Symbol_T = sig
    type t
    val size: int
    val to_int: t -> int
    val of_int: int -> t
end

module type T = sig
    module S: Symbol_T

    type ('c, 'x) t = ('c, S.t, 'x) Cf_parser.X.t constraint 'c = S.t #cursor

    type expr_t
    type ('c, 'x) rule_t constraint 'c = S.t #cursor

    val nil: expr_t

    module Op: sig
        val ( $| ): expr_t -> expr_t -> expr_t
        val ( $& ): expr_t -> expr_t -> expr_t
        val ( !* ): expr_t -> expr_t
        val ( !+ ): expr_t -> expr_t
        val ( !? ): expr_t -> expr_t

        val ( !: ): S.t -> expr_t
        val ( !^ ): (S.t -> bool) -> expr_t
        val ( !~ ): S.t Cf_seq.t -> expr_t

        val ( $= ): expr_t -> 'x -> ('c, 'x) rule_t
        val ( $> ): expr_t -> (S.t Cf_seq.t -> 'x) -> ('c, 'x) rule_t
        val ( $@ ): expr_t -> (int -> ('c, 'x) t) -> ('c, 'x) rule_t
        
        val ( !@ ): ('c, 'x) rule_t list -> ('c, 'x) rule_t
    end
    
    val create: ('c, 'x) rule_t -> ('c, 'x) t
end

module Create(S: Symbol_T) : (T with module S = S) = struct
    if S.size < 1 then
        invalid_arg "Cf_dfa.Create(S): size < 1";;

    module S = S

    type ('c, 'o) t = ('c, S.t, 'o) Cf_parser.X.t constraint 'c = S.t #cursor

    type expr_t = x
    type ('c, 'x) rule_t = x constraint 'c = S.t #cursor
    
    let nil = nil_
    
    module Op = struct
        let union_follow_ y0 y1 w = y1.y_follow_ (y0.y_follow_ w)
    
        let ( $| ) x0 x1 =
            let cons i =
                let y0 = x0.x_cons_ i in
                let y1 = x1.x_cons_ y0.y_counter_ in {
                    y_counter_ = y1.y_counter_;
                    y_first_ = NFA_state.Set.union y0.y_first_ y1.y_first_;
                    y_last_ = NFA_state.Set.union y0.y_last_ y1.y_last_;
                    y_follow_ = union_follow_ y0 y1;
                }
            in {
                x_null_ = x0.x_null_ || x1.x_null_;
                x_cons_ = cons;
            }
        
        let follow_fold_aux_ a w i =
            assert (NFA_state.Map.member i w);
            let n = Obj.obj (NFA_state.Map.search i w) in
            let _ = (n :> 'action satisfier) in
            let n = Obj.repr (n#follow a) in
            NFA_state.Map.replace (i, n) w
        
        let cat_follow_ y0 y1 w =
            let w = y0.y_follow_ w in
            let w = y1.y_follow_ w in
            NFA_state.Set.fold (follow_fold_aux_ y1.y_first_) w y0.y_last_
    
        let ( $& ) x0 x1 =
            let cons i =
                let y0 = x0.x_cons_ i in
                let y1 = x1.x_cons_ y0.y_counter_ in
                let first =
                    if x0.x_null_ then
                        NFA_state.Set.union y0.y_first_ y1.y_first_
                    else
                        y0.y_first_
                and last =
                    if x1.x_null_ then
                        NFA_state.Set.union y0.y_last_ y1.y_last_
                    else
                        y1.y_last_
                in {
                    y_counter_ = y1.y_counter_;
                    y_first_ = first;
                    y_last_ = last;
                    y_follow_ = cat_follow_ y0 y1;
                }
            in {
                x_null_ = x0.x_null_ && x1.x_null_;
                x_cons_ = cons; 
            }
        
        let star_follow_ y w =
            let w = y.y_follow_ w in
            NFA_state.Set.fold (follow_fold_aux_ y.y_first_) w y.y_last_

        let ( !* ) x =
            let cons i =
                let y = x.x_cons_ i in { y with y_follow_ = star_follow_ y }
            in {
                x_null_ = true;
                x_cons_ = cons;
            }
        
        let ( !? ) x = x $| nil_
        let ( !+ ) x = x $& (!* x)

        let ( !: ) sym = node_ (new literal (S.to_int sym))
        let ( !^ ) f = node_ (new mapped (fun sym -> f (S.of_int sym)))
        
        let rec ( !~ ) s =
            match Lazy.force s with
            | Cf_seq.Z -> nil_
            | Cf_seq.P (x, tl) -> !:x $& !~tl

        let ( $= ) expr lit =
            let f n z = Some (lit, Cf_seq.shift n z) in
            expr $& (node_ (new acceptor f))
    
        let ( $> ) expr action =
            let f n z =
                let hd = Cf_seq.limit n (Cf_seq.map fst z)
                and tl = Cf_seq.shift n z in
                Some (action hd, tl)
            in
            expr $& (node_ (new acceptor f))
    
        let ( $@ ) expr f =
            expr $& (node_ (new acceptor f))

        let ( !@ ) =
            let rec loop e rs =
                match rs with
                | hd :: tl -> loop (hd $| e) tl
                | [] -> e
            in
            fun rs -> loop nil_ rs
    end
    
    let suspend_ x =
        let y = x.x_cons_ 0 in
        let w = y.y_follow_ NFA_state.Map.nil in
        let h = ref DFA_state.Map.nil in
        let g1 sym u p =
            let n = Obj.obj (NFA_state.Map.search p w) in
            let _ = (n :> 'action #satisfier) in
            n#edge sym u
        in
        let g2 a p =
            let n = Obj.obj (NFA_state.Map.search p w) in
            let _ = (n :> 'action #satisfier) in
            n#accept a
        in
        let rec state u =
            let edge i =
                lazy begin
                    let v = Array.fold_left (g1 i) NFA_state.Set.nil u in
                    if NFA_state.Set.empty v then raise Unrecognized;
                    let u = Array.of_list (NFA_state.Set.to_list_incr v) in
                    try DFA_state.Map.search u !h with Not_found -> state u
                end
            in
            let s = {
                s_accept_ = Array.fold_left g2 None u;
                s_next_ = Array.init S.size edge;
            } in
            h := DFA_state.Map.replace (u, s) !h;
            s
        in
        state (Array.of_list (NFA_state.Set.to_list_incr y.y_first_))
    
    let s_accept_ susp acc lim z0 =
        match susp.s_accept_ with
        | None -> acc
        | Some action -> lazy ((Obj.magic action) lim z0)
    
    let create =
        let rec loop ~z0 ~lim acc susp seq =
            match Lazy.force seq with
            | Cf_seq.Z ->
                Lazy.force acc
            | Cf_seq.P ((i, c), tl) ->
                let next = susp.s_next_.(S.to_int i) in
                match try Some (Lazy.force next) with Unrecognized -> None with
                | Some susp ->
                    let lim = succ lim in
                    let acc = s_accept_ susp acc lim z0 in
                    loop ~z0 ~lim acc susp tl
                | None ->
                    match Lazy.force acc with
                    | Some _ as v -> v
                    | None -> c#error lim z0; None
        in
        fun dfa ->
            let susp = suspend_ dfa in
            fun z0 ->
                let acc = s_accept_ susp (Lazy.lazy_from_val None) 0 z0 in
                loop ~z0 ~lim:0 acc susp z0
end

(*--- End of File [ cf_dfa.ml ] ---*)