9682bd1b76ab95231b1d3ddbdabfb5540ac8f79a
[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 quer : StateSet.t;
51   mutable reco : StateSet.t;
52   mutable selec : StateSet.t;
53   mutable bottom : StateSet.t;
54   mutable top : StateSet.t;
55   mutable trans : SetT.t;
56 }
57
58 exception Not_found_transition
59 exception Transition_not_injective
60
61 let transition asta st lab =
62   let filter (s,l,f) =
63     (State.compare s st = 0) && (QNameSet.compare l lab = 0) in
64   let tr_set = SetT.elements (SetT.filter filter asta.trans) in
65   match tr_set with
66     | [] -> raise Not_found_transition
67     | x::y::z -> raise Transition_not_injective
68     | [l] -> Transition.fo l
69
70 let transitions asta st =
71   let filter (s,l,f) = State.compare s st = 0 in
72   let rec remove_states l = match l with
73     | [] -> []
74     | (a,s,l) :: tl -> (s,l) :: (remove_states tl) in
75   remove_states (SetT.elements (SetT.filter filter asta.trans))
76
77 let empty = {
78   quer = StateSet.empty;
79   reco = StateSet.empty;
80   selec = StateSet.empty;
81   bottom = StateSet.empty;
82   top = StateSet.empty;
83   trans = SetT.empty;
84 }
85
86 let any_label = QNameSet.complement (QNameSet.empty)
87
88 let new_state () = State.make()
89
90 let add_tr ast tr = ast.trans <- (SetT.add tr (ast.trans))
91
92 let add_quer ast st = ast.quer <- (StateSet.add st (ast.quer))
93
94 let add_reco ast st = ast.reco <- (StateSet.add st (ast.reco))
95
96 let add_selec ast st = ast.selec <- (StateSet.add st (ast.selec))
97
98 let add_bot ast st = ast.bottom <- (StateSet.add st (ast.bottom))
99
100 let add_top ast st = ast.top <- (StateSet.add st (ast.top))
101
102 let init_top ast  = ast.top <- (StateSet.empty)
103
104 let top_states ast = StateSet.elements ast.top
105
106 let print fmt asta =
107   let pp = Format.fprintf fmt in
108   pp "Query states: ";
109   StateSet.print fmt asta.quer;
110   pp "\nRecognizing states: ";
111   StateSet.print fmt asta.reco;
112   pp "\nSelecting states: ";
113   StateSet.print fmt asta.selec;
114   pp "\nBottom states: ";
115   StateSet.print fmt asta.bottom;
116   pp "\nTop states: ";
117   StateSet.print fmt asta.top;
118   pp "\nTransitions: \n";
119   Format.fprintf fmt "{";
120   Format.open_vbox 20;
121   SetT.iter (fun x -> Format.fprintf fmt "%a @." Transition.print x)
122     (asta.trans);
123   Format.print_flush ();
124   Format.fprintf fmt "}"
125     
126
127 let to_file out asta = ()