]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/acic_content/acic2astMatcher.ml
7575dc8ba9eb2d3b4d1e750bb890b3297ea5897e
[helm.git] / helm / ocaml / acic_content / acic2astMatcher.ml
1 (* Copyright (C) 2005, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 module Ast = CicNotationPt
27 module Util = CicNotationUtil
28
29 module Matcher32 =
30 struct
31   module Pattern32 =
32   struct
33     type cic_mask_t =
34       Blob
35     | Uri of UriManager.uri
36     | Appl of cic_mask_t list
37
38     let uri_of_term t = CicUtil.uri_of_term (Deannotate.deannotate_term t)
39
40     let mask_of_cic = function
41       | Cic.AAppl (_, tl) -> Appl (List.map (fun _ -> Blob) tl), tl
42       | Cic.AConst (_, _, [])
43       | Cic.AVar (_, _, [])
44       | Cic.AMutInd (_, _, _, [])
45       | Cic.AMutConstruct (_, _, _, _, []) as t -> Uri (uri_of_term t), []
46       | _ -> Blob, []
47
48     let tag_of_term t =
49       let mask, tl = mask_of_cic t in
50       Hashtbl.hash mask, tl
51
52     let mask_of_appl_pattern = function
53       | Ast.UriPattern uri -> Uri uri, []
54       | Ast.ImplicitPattern
55       | Ast.VarPattern _ -> Blob, []
56       | Ast.ApplPattern pl -> Appl (List.map (fun _ -> Blob) pl), pl
57
58     let tag_of_pattern p =
59       let mask, pl = mask_of_appl_pattern p in
60       Hashtbl.hash mask, pl
61
62     type pattern_t = Ast.cic_appl_pattern
63     type term_t = Cic.annterm
64
65     let string_of_pattern = CicNotationPp.pp_cic_appl_pattern
66     let string_of_term t = CicPp.ppterm (Deannotate.deannotate_term t)
67
68     let classify = function
69       | Ast.ImplicitPattern
70       | Ast.VarPattern _ -> PatternMatcher.Variable
71       | Ast.UriPattern _
72       | Ast.ApplPattern _ -> PatternMatcher.Constructor
73   end
74
75   module M = PatternMatcher.Matcher (Pattern32)
76
77   let compiler rows =
78     let match_cb rows =
79       let pl, pid = try List.hd rows with Not_found -> assert false in
80       (fun matched_terms constructors ->
81         let env =
82           try
83             List.map2
84               (fun p t ->
85                 match p with
86                 | Ast.ImplicitPattern -> Util.fresh_name (), t
87                 | Ast.VarPattern name -> name, t
88                 | _ -> assert false)
89               pl matched_terms
90           with Invalid_argument _ -> assert false
91         in
92         Some (env, constructors, pid))
93     in
94     M.compiler rows match_cb (fun () -> None)
95 end
96