]> matita.cs.unibo.it Git - helm.git/blob - matita/components/grafite/grafiteAstPp.ml
porting to recent ocaml
[helm.git] / matita / components / grafite / grafiteAstPp.ml
1 (* Copyright (C) 2004, 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 (* $Id$ *)
27
28 open GrafiteAst
29 open Printf
30
31 let tactical_terminator = ""
32 let tactic_terminator = tactical_terminator
33 let command_terminator = tactical_terminator
34
35 let pp_tactic_pattern status ~map_unicode_to_tex (what, hyp, goal) = 
36   if what = None && hyp = [] && goal = None then "" else 
37   let what_text =
38     match what with
39     | None -> ""
40     | Some t -> Printf.sprintf "in match (%s) " (NotationPp.pp_term status t) in
41   let hyp_text =
42     String.concat " "
43       (List.map (fun (name, p) -> Printf.sprintf "%s:(%s)" name
44        (NotationPp.pp_term status p)) hyp) in
45   let goal_text =
46     match goal with
47     | None -> ""
48     | Some t ->
49        let vdash = if map_unicode_to_tex then "\\vdash" else "⊢" in
50         Printf.sprintf "%s (%s)" vdash (NotationPp.pp_term status t)
51   in
52    Printf.sprintf "%sin %s%s" what_text hyp_text goal_text
53
54 let rec pp_ntactic status ~map_unicode_to_tex =
55  let pp_tactic_pattern = pp_tactic_pattern ~map_unicode_to_tex in
56  function
57   | NApply (_,t) -> "@" ^ NotationPp.pp_term status t
58   | NSmartApply (_,_t) -> "fixme"
59   | NAuto (_,(None,flgs)) ->
60       "nautobatch" ^
61         String.concat " " (List.map (fun a,b -> a ^ "=" ^ b) flgs)
62   | NAuto (_,(Some l,flgs)) ->
63       "nautobatch" ^ " by " ^
64          (String.concat "," (List.map (NotationPp.pp_term status) l)) ^
65         String.concat " " (List.map (fun a,b -> a ^ "=" ^ b) flgs)
66   | NCases (_,what,_where) -> "ncases " ^ NotationPp.pp_term status what ^
67       "...to be implemented..." ^ " " ^ "...to be implemented..."
68   | NConstructor (_,None,l) -> "@ " ^
69       String.concat " " (List.map (NotationPp.pp_term status) l)
70   | NConstructor (_,Some x,l) -> "@" ^ string_of_int x ^ " " ^
71       String.concat " " (List.map (NotationPp.pp_term status) l)
72   | NCase1 (_,n) -> "*" ^ n ^ ":"
73   | NChange (_,_what,wwhat) -> "nchange " ^ "...to be implemented..." ^ 
74       " with " ^ NotationPp.pp_term status wwhat
75   | NCut (_,t) -> "ncut " ^ NotationPp.pp_term status t
76 (*| NDiscriminate (_,t) -> "ndiscriminate " ^ NotationPp.pp_term status t
77   | NSubst (_,t) -> "nsubst " ^ NotationPp.pp_term status t *)
78   | NClear (_,l) -> "nclear " ^ String.concat " " l
79   | NDestruct (_,_dom,_skip) -> "ndestruct ..." 
80   | NElim (_,what,_where) -> "nelim " ^ NotationPp.pp_term status what ^
81       "...to be implemented..." ^ " " ^ "...to be implemented..."
82   | NId _ -> "nid"
83   | NIntro (_,n) -> "#" ^ n
84   | NIntros (_,l) -> "#" ^ String.concat " " l
85   | NInversion (_,what,_where) -> "ninversion " ^ NotationPp.pp_term status what ^
86       "...to be implemented..." ^ " " ^ "...to be implemented..."
87   | NLApply (_,t) -> "lapply " ^ NotationPp.pp_term status t
88   | NRewrite (_,dir,n,where) -> "nrewrite " ^
89      (match dir with `LeftToRight -> ">" | `RightToLeft -> "<") ^
90      " " ^ NotationPp.pp_term status n ^ " " ^ pp_tactic_pattern status where
91   | NReduce _ | NGeneralize _ | NLetIn _ | NAssert _ -> "TO BE IMPLEMENTED"
92   | NDot _ -> "."
93   | NSemicolon _ -> ";"
94   | NBranch _ -> "["
95   | NShift _ -> "|"
96   | NPos (_, l) -> String.concat "," (List.map string_of_int l)^ ":"
97   | NPosbyname (_, s) -> s ^ ":"
98   | NWildcard _ -> "*:"
99   | NMerge _ -> "]"
100   | NFocus (_,l) -> 
101       Printf.sprintf "focus %s" 
102         (String.concat " " (List.map string_of_int l))
103   | NUnfocus _ -> "unfocus"
104   | NSkip _ -> "skip"
105   | NTry (_,tac) -> "ntry " ^ pp_ntactic status ~map_unicode_to_tex tac
106   | NAssumption _ -> "nassumption"
107   | NBlock (_,l) -> 
108      "(" ^ String.concat " " (List.map (pp_ntactic status ~map_unicode_to_tex) l)^ ")"
109   | NRepeat (_,t) -> "nrepeat " ^ pp_ntactic status ~map_unicode_to_tex t
110 ;;
111
112 let pp_nmacro status = function
113   | NCheck (_, term) -> Printf.sprintf "ncheck %s" (NotationPp.pp_term status term)
114   | Screenshot (_, name) -> Printf.sprintf "screenshot \"%s\"" name
115   | NAutoInteractive _
116   | NIntroGuess _ -> assert false (* TODO *)
117 ;;
118
119 let pp_l1_pattern = NotationPp.pp_term
120 let pp_l2_pattern = NotationPp.pp_term
121
122 let pp_alias = function
123   | Ident_alias (id, uri) -> sprintf "alias id \"%s\" = \"%s\"." id uri
124   | Symbol_alias (symb, instance, desc) ->
125       sprintf "alias symbol \"%s\" %s= \"%s\"."
126         symb
127         (if instance=0 then "" else "(instance "^ string_of_int instance ^ ") ")
128         desc
129   | Number_alias (instance,desc) ->
130       sprintf "alias num (instance %d) = \"%s\"." instance desc
131   
132 let pp_associativity = function
133   | Gramext.LeftA -> "left associative"
134   | Gramext.RightA -> "right associative"
135   | Gramext.NonA -> "non associative"
136
137 let pp_precedence i = sprintf "with precedence %d" i
138
139 let pp_argument_pattern = function
140   | NotationPt.IdentArg (eta_depth, name) ->
141       let eta_buf = Buffer.create 5 in
142       for _i = 1 to eta_depth do
143         Buffer.add_string eta_buf "\\eta."
144       done;
145       sprintf "%s%s" (Buffer.contents eta_buf) name
146
147 let pp_interpretation dsc symbol arg_patterns cic_appl_pattern = 
148   sprintf "interpretation \"%s\" '%s %s = %s."
149     dsc symbol
150     (String.concat " " (List.map pp_argument_pattern arg_patterns))
151     (NotationPp.pp_cic_appl_pattern cic_appl_pattern)
152  
153 let pp_dir_opt = function
154   | None -> ""
155   | Some `LeftToRight -> "> "
156   | Some `RightToLeft -> "< "
157
158 let pp_notation status dir_opt l1_pattern assoc prec l2_pattern = 
159   sprintf "notation %s\"%s\" %s %s for %s."
160     (pp_dir_opt dir_opt)
161     (pp_l1_pattern status l1_pattern)
162     (pp_associativity assoc)
163     (pp_precedence prec)
164     (pp_l2_pattern status l2_pattern)
165
166 let pp_ncommand status = function
167   | UnificationHint (_,t, n) -> 
168       "unification hint " ^ string_of_int n ^ " " ^ NotationPp.pp_term status t
169   | NDiscriminator (_,_)
170   | NInverter (_,_,_,_,_)
171   | NUnivConstraint (_) -> "not supported"
172   | NCoercion (_) -> "not supported"
173   | NObj (_,obj,index) -> 
174       (if not index then "-" else "") ^ 
175         NotationPp.pp_obj (NotationPp.pp_term status) obj
176   | NQed (_,true) -> "qed"
177   | NQed (_,false) -> "qed-"
178   | NCopy (_,name,uri,map) -> 
179       "copy " ^ name ^ " from " ^ NUri.string_of_uri uri ^ " with " ^ 
180         String.concat " and " 
181           (List.map 
182             (fun (a,b) -> NUri.string_of_uri a ^ " ↦ " ^ NUri.string_of_uri b) 
183             map)
184   | Include (_,mode,path) -> (* not precise, since path is absolute *)
185       if mode = WithPreferences then
186         "include \"" ^ path ^ "\""
187       else
188         "include' \"" ^ path ^ "\""
189   | Alias (_,s) -> pp_alias s
190   | Interpretation (_, dsc, (symbol, arg_patterns), cic_appl_pattern) ->
191       pp_interpretation dsc symbol arg_patterns cic_appl_pattern
192   | Notation (_, dir_opt, l1_pattern, assoc, prec, l2_pattern) ->
193       pp_notation status dir_opt l1_pattern assoc prec l2_pattern
194 ;;
195     
196 let pp_executable status ~map_unicode_to_tex =
197   function
198   | NMacro (_, macro) -> pp_nmacro status macro ^ "."
199   | NTactic (_,tacl) ->
200       String.concat " " (List.map (pp_ntactic status ~map_unicode_to_tex) tacl)
201   | NCommand (_, cmd) -> pp_ncommand status cmd ^ "."
202                       
203 let pp_comment status ~map_unicode_to_tex =
204   function
205   | Note (_,"") -> Printf.sprintf "\n"
206   | Note (_,str) -> Printf.sprintf "\n(* %s *)" str
207   | Code (_,code) ->
208       Printf.sprintf "\n(** %s. **)" (pp_executable status ~map_unicode_to_tex code)
209
210 let pp_statement status =
211   function
212   | Executable (_, ex) -> pp_executable status ex 
213   | Comment (_, c) -> pp_comment status c