]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/sequentPp.ml
Initial revision
[helm.git] / helm / gTopLevel / sequentPp.ml
1 (* Copyright (C) 2000-2002, 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://cs.unibo.it/helm/.
24  *)
25
26 module TextualPp =
27  struct
28   (* It also returns the pretty-printing context! *)
29   let print_context ctx =
30     let print_name =
31      function
32         Cic.Name n -> n
33       | Cic.Anonimous -> "_"
34     in
35      List.fold_right
36       (fun i (output,context) ->
37         let (newoutput,context') =
38          match i with
39             Some (n,Cic.Decl t) ->
40               print_name n ^ ":" ^ CicPp.pp t context ^ "\n", (Some n)::context
41           | Some (n,Cic.Def t) ->
42               print_name n ^ ":=" ^ CicPp.pp t context ^ "\n", (Some n)::context
43           | None ->
44               "_ ?= _\n", None::context
45         in
46          output^newoutput,context'
47       ) ctx ("",[])
48   ;;
49
50   exception NotImplemented;;
51
52   let print_sequent (metano,context,goal) =
53    let module P = ProofEngine in
54     "\n" ^
55      let (output,pretty_printer_context_of_context) = print_context context in
56       output ^
57        "---------------------- ?" ^ string_of_int metano ^ "\n" ^
58         CicPp.pp goal pretty_printer_context_of_context
59   ;;
60  end
61 ;;
62
63 module XmlPp =
64  struct
65   let print_sequent metasenv (metano,context,goal) =
66    let module X = Xml in
67     let ids_to_terms = Hashtbl.create 503 in
68     let ids_to_father_ids = Hashtbl.create 503 in
69     let ids_to_inner_sorts = Hashtbl.create 503 in
70     let ids_to_inner_types = Hashtbl.create 503 in
71     let ids_to_hypotheses = Hashtbl.create 11 in
72     let hypotheses_seed = ref 0 in
73     let seed = ref 0 in
74      let acic_of_cic_context =
75       Cic2acic.acic_of_cic_context' seed ids_to_terms ids_to_father_ids
76        ids_to_inner_sorts ids_to_inner_types metasenv
77      in
78       let final_s,_ =
79        (List.fold_right
80          (fun binding (s,context) ->
81            let hid = "h" ^ string_of_int !hypotheses_seed in
82             Hashtbl.add ids_to_hypotheses hid binding ;
83             incr hypotheses_seed ;
84             match binding with
85                (Some (n,(Cic.Def t as b)) as entry)
86              | (Some (n,(Cic.Decl t as b)) as entry) ->
87                 let acic = acic_of_cic_context context t None in
88                  [< s ;
89                     X.xml_nempty
90                      (match b with Cic.Decl _ -> "Decl" | Cic.Def _ -> "Def")
91                      ["name",(match n with Cic.Name n -> n | _ -> assert false);
92                       "id",hid]
93                      (Cic2Xml.print_term
94                        (UriManager.uri_of_string "cic:/dummy.con")
95                        ~ids_to_inner_sorts acic)
96                  >], (entry::context)
97              | None ->
98                 [< s ; X.xml_empty "Hidden" [] >], (None::context)
99          ) context ([<>],[])
100        )
101       in
102        let acic = acic_of_cic_context context goal None in
103         X.xml_nempty "Sequent" ["no",string_of_int metano]
104          [< final_s ;
105             Xml.xml_nempty "Goal" []
106              (Cic2Xml.print_term (UriManager.uri_of_string "cic:/dummy.con")
107                ~ids_to_inner_sorts acic)
108          >],
109          ids_to_terms,ids_to_father_ids,ids_to_hypotheses
110   ;;
111  end
112 ;;