Print labels (=QName -> qname.ml? )
[tatoo.git] / src / asta.ml
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                  Lucca Hirschi, ?   *)
6 (*                  ?   *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 type state = State.t
17
18 type label = QNameSet.t
19   
20 type formula = Formula.t
21
22 module Transition = 
23 struct
24   type t = state * label * formula
25
26   let compare (st,la,f) (st',la',f') =
27     let x_1 = State.compare st st' in
28     if x_1 != 0 then x_1
29     else let x_2 = QNameSet.compare la la' in
30          if x_2 != 0 then x_2
31          else Formula.compare f f'
32   let st (st,la,f) = st
33   let la (st,la,f) = la
34   let fo (st,la,f) = f
35   let print fmt (st,la,f) =
36     Format.fprintf fmt "(%a,%s,%a)"
37       State.print st
38       (QNameSet.to_string la)
39       Formula.print f
40 end
41
42 module  SetT = 
43 struct
44   include Set.Make(Transition)
45 end
46
47 type transition = Transition.t
48
49 type t = {
50   mutable reco : StateSet.t;
51   mutable selec : StateSet.t;
52   mutable bottom : StateSet.t;
53   mutable top : StateSet.t;
54   mutable trans : SetT.t;
55 }
56
57 exception Not_found_transition
58 exception Transition_not_injective
59
60 let transition asta st lab =
61   let filter (s,l,f) =
62     (State.compare s st = 0) && (QNameSet.compare l lab = 0) in
63   let tr_set = SetT.elements (SetT.filter filter asta.trans) in
64   match tr_set with
65     | [] -> raise Not_found_transition
66     | x::y::z -> raise Transition_not_injective
67     | [l] -> Transition.fo l
68
69 let transitions asta st =
70   let filter (s,l,f) = State.compare s st = 0 in
71   let rec remove_states l = match l with
72     | [] -> []
73     | (a,s,l) :: tl -> (s,l) :: (remove_states tl) in
74   remove_states (SetT.elements (SetT.filter filter asta.trans))
75
76 let empty = {
77   reco = StateSet.empty;
78   selec = StateSet.empty;
79   bottom = StateSet.empty;
80   top = StateSet.empty;
81   trans = SetT.empty;
82 }
83
84 let any_label = QNameSet.complement (QNameSet.empty)
85
86 let new_state () = State.make()
87
88 let add_tr ast tr = ast.trans <- (SetT.add tr (ast.trans))
89
90 let add_reco ast st = ast.reco <- (StateSet.add st (ast.reco))
91
92 let add_selec ast st = ast.selec <- (StateSet.add st (ast.selec))
93
94 let add_bot ast st = ast.bottom <- (StateSet.add st (ast.bottom))
95
96 let add_top ast st = ast.top <- (StateSet.add st (ast.top))
97
98 let top_states ast = StateSet.elements ast.top
99
100 let print fmt asta =
101   let pp = Format.fprintf fmt in
102   pp "Recognizing states: ";
103   StateSet.print fmt asta.reco;
104   pp "\nSelecting states: ";
105   StateSet.print fmt asta.selec;
106   pp "\nBottom states: ";
107   StateSet.print fmt asta.bottom;
108   pp "\nTop states: ";
109   StateSet.print fmt asta.top;
110   pp "\nTransitions: \n";
111   Format.fprintf fmt "{@[<hov 2> %a @]}" (* todo: check boxes *)
112     (Pretty.print_list ~sep:"@, " (Transition.print))
113     (SetT.elements (asta.trans))
114
115
116 let to_file out asta = ()