]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/gTopLevel.ml
Better handling of queries. Now both the locate and backward queries give
[helm.git] / helm / gTopLevel / gTopLevel.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 (******************************************************************************)
27 (*                                                                            *)
28 (*                               PROJECT HELM                                 *)
29 (*                                                                            *)
30 (*                Claudio Sacerdoti Coen <sacerdot@cs.unibo.it>               *)
31 (*                                 06/01/2002                                 *)
32 (*                                                                            *)
33 (*                                                                            *)
34 (******************************************************************************)
35
36 (* GLOBAL CONSTANTS *)
37
38 let helmns = Gdome.domString "http://www.cs.unibo.it/helm";;
39
40 let htmlheader =
41  "<html>" ^
42  " <body bgColor=\"white\">"
43 ;;
44
45 let htmlfooter =
46  " </body>" ^
47  "</html>"
48 ;;
49
50 let prooffile = "/public/sacerdot/currentproof";;
51 (*CSC: the getter should handle the innertypes, not the FS *)
52 let innertypesfile = "/public/sacerdot/innertypes";;
53
54 (* GLOBAL REFERENCES (USED BY CALLBACKS) *)
55
56 let htmlheader_and_content = ref htmlheader;;
57
58 let current_cic_infos = ref None;;
59 let current_goal_infos = ref None;;
60 let current_scratch_infos = ref None;;
61
62 (* COMMAND LINE OPTIONS *)
63
64 let usedb = ref true
65
66 let argspec =
67   [
68     "-nodb", Arg.Clear usedb, "disable use of MathQL DB"
69   ]
70 in
71 Arg.parse argspec ignore ""
72
73
74 (* MISC FUNCTIONS *)
75
76 let domImpl = Gdome.domImplementation ();;
77
78 let parseStyle name =
79  let style =
80   domImpl#createDocumentFromURI
81 (*
82    ~uri:("http://phd.cs.unibo.it:8081/getxslt?uri=" ^ name) ?mode:None
83 *)
84    ~uri:("styles/" ^ name) ()
85  in
86   Gdome_xslt.processStylesheet style
87 ;;
88
89 let d_c = parseStyle "drop_coercions.xsl";;
90 let tc1 = parseStyle "objtheorycontent.xsl";;
91 let hc2 = parseStyle "content_to_html.xsl";;
92 let l   = parseStyle "link.xsl";;
93
94 let c1 = parseStyle "rootcontent.xsl";;
95 let g  = parseStyle "genmmlid.xsl";;
96 let c2 = parseStyle "annotatedpres.xsl";;
97
98
99 let getterURL = Configuration.getter_url;;
100 let processorURL = Configuration.processor_url;;
101
102 let mml_styles = [d_c ; c1 ; g ; c2 ; l];;
103 let mml_args =
104  ["processorURL", "'" ^ processorURL ^ "'" ;
105   "getterURL", "'" ^ getterURL ^ "'" ;
106   "draw_graphURL", "'http%3A//phd.cs.unibo.it%3A8083/'" ;
107   "uri_set_queueURL", "'http%3A//phd.cs.unibo.it%3A8084/'" ;
108   "UNICODEvsSYMBOL", "'symbol'" ;
109   "doctype-public", "'-//W3C//DTD%20XHTML%201.0%20Transitional//EN'" ;
110   "encoding", "'iso-8859-1'" ;
111   "media-type", "'text/html'" ;
112   "keys", "'d_c%2CC1%2CG%2CC2%2CL'" ;
113   "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
114   "naturalLanguage", "'yes'" ;
115   "annotations", "'no'" ;
116   "explodeall", "'true()'" ;
117   "topurl", "'http://phd.cs.unibo.it/helm'" ;
118   "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
119 ;;
120
121 let sequent_styles = [d_c ; c1 ; g ; c2 ; l];;
122 let sequent_args =
123  ["processorURL", "'" ^ processorURL ^ "'" ;
124   "getterURL", "'" ^ getterURL ^ "'" ;
125   "draw_graphURL", "'http%3A//phd.cs.unibo.it%3A8083/'" ;
126   "uri_set_queueURL", "'http%3A//phd.cs.unibo.it%3A8084/'" ;
127   "UNICODEvsSYMBOL", "'symbol'" ;
128   "doctype-public", "'-//W3C//DTD%20XHTML%201.0%20Transitional//EN'" ;
129   "encoding", "'iso-8859-1'" ;
130   "media-type", "'text/html'" ;
131   "keys", "'d_c%2CC1%2CG%2CC2%2CL'" ;
132   "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
133   "naturalLanguage", "'no'" ;
134   "annotations", "'no'" ;
135   "explodeall", "'true()'" ;
136   "topurl", "'http://phd.cs.unibo.it/helm'" ;
137   "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
138 ;;
139
140 let parse_file filename =
141  let inch = open_in filename in
142   let rec read_lines () =
143    try
144     let line = input_line inch in
145      line ^ read_lines ()
146    with
147     End_of_file -> ""
148   in
149    read_lines ()
150 ;;
151
152 let applyStylesheets input styles args =
153  List.fold_left (fun i style -> Gdome_xslt.applyStylesheet i style args)
154   input styles
155 ;;
156
157 let mml_of_cic_object uri annobj ids_to_inner_sorts ids_to_inner_types =
158  let xml =
159   Cic2Xml.print_object uri ~ids_to_inner_sorts annobj 
160  in
161  let xmlinnertypes =
162   Cic2Xml.print_inner_types uri ~ids_to_inner_sorts
163    ~ids_to_inner_types
164  in
165   let input = Xml2Gdome.document_of_xml domImpl xml in
166 (*CSC: We save the innertypes to disk so that we can retrieve them in the  *)
167 (*CSC: stylesheet. This DOES NOT work when UWOBO and/or the getter are not *)
168 (*CSC: local.                                                              *)
169    Xml.pp xmlinnertypes (Some innertypesfile) ;
170    let output = applyStylesheets input mml_styles mml_args in
171     output
172 ;;
173
174
175 (* CALLBACKS *)
176
177 exception RefreshSequentException of exn;;
178 exception RefreshProofException of exn;;
179
180 let refresh_proof (output : GMathView.math_view) =
181  try
182   let uri,currentproof =
183    match !ProofEngine.proof with
184       None -> assert false
185     | Some (uri,metasenv,bo,ty) ->
186        uri,(Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty))
187   in
188    let
189     (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
190      ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
191    =
192     Cic2acic.acic_object_of_cic_object currentproof
193    in
194     let mml =
195      mml_of_cic_object uri acic ids_to_inner_sorts ids_to_inner_types
196     in
197      output#load_tree mml ;
198      current_cic_infos :=
199       Some (ids_to_terms,ids_to_father_ids,ids_to_conjectures,ids_to_hypotheses)
200  with
201   e ->
202  match !ProofEngine.proof with
203     None -> assert false
204   | Some (uri,metasenv,bo,ty) ->
205 prerr_endline ("Offending proof: " ^ CicPp.ppobj (Cic.CurrentProof ("questa",metasenv,bo,ty))) ; flush stderr ;
206    raise (RefreshProofException e)
207 ;;
208
209 let refresh_sequent (proofw : GMathView.math_view) =
210  try
211   match !ProofEngine.goal with
212      None -> proofw#unload
213    | Some metano ->
214       let metasenv =
215        match !ProofEngine.proof with
216           None -> assert false
217         | Some (_,metasenv,_,_) -> metasenv
218       in
219       let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
220        let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
221         SequentPp.XmlPp.print_sequent metasenv currentsequent
222        in
223         let sequent_doc =
224          Xml2Gdome.document_of_xml domImpl sequent_gdome
225         in
226          let sequent_mml =
227           applyStylesheets sequent_doc sequent_styles sequent_args
228          in
229           proofw#load_tree ~dom:sequent_mml ;
230           current_goal_infos :=
231            Some (ids_to_terms,ids_to_father_ids,ids_to_hypotheses)
232  with
233   e ->
234 let metano =
235   match !ProofEngine.goal with
236      None -> assert false
237    | Some m -> m
238 in
239 let metasenv =
240  match !ProofEngine.proof with
241     None -> assert false
242   | Some (_,metasenv,_,_) -> metasenv
243 in
244 let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
245 prerr_endline ("Offending sequent: " ^ SequentPp.TextualPp.print_sequent currentsequent) ; flush stderr ;
246    raise (RefreshSequentException e)
247 ;;
248
249 (*
250 ignore(domImpl#saveDocumentToFile ~doc:sequent_doc
251  ~name:"/home/galata/miohelm/guruguru1" ~indent:true ()) ;
252 *)
253
254 let mml_of_cic_term metano term =
255  let metasenv =
256   match !ProofEngine.proof with
257      None -> []
258    | Some (_,metasenv,_,_) -> metasenv
259  in
260  let context =
261   match !ProofEngine.goal with
262      None -> []
263    | Some metano ->
264       let (_,canonical_context,_) =
265        List.find (function (m,_,_) -> m=metano) metasenv
266       in
267        canonical_context
268  in
269    let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
270     SequentPp.XmlPp.print_sequent metasenv (metano,context,term)
271    in
272     let sequent_doc =
273      Xml2Gdome.document_of_xml domImpl sequent_gdome
274     in
275      let res =
276       applyStylesheets sequent_doc sequent_styles sequent_args ;
277      in
278       current_scratch_infos :=
279        Some (term,ids_to_terms,ids_to_father_ids,ids_to_hypotheses) ;
280       res
281 ;;
282
283 let output_html outputhtml msg =
284  htmlheader_and_content := !htmlheader_and_content ^ msg ;
285  outputhtml#source (!htmlheader_and_content ^ htmlfooter) ;
286  outputhtml#set_topline (-1)
287 ;;
288
289 (***********************)
290 (*       TACTICS       *)
291 (***********************)
292
293 let call_tactic tactic rendering_window () =
294  let proofw = (rendering_window#proofw : GMathView.math_view) in
295  let output = (rendering_window#output : GMathView.math_view) in
296  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
297  let savedproof = !ProofEngine.proof in
298  let savedgoal  = !ProofEngine.goal in
299   begin
300    try
301     tactic () ;
302     refresh_sequent proofw ;
303     refresh_proof output
304    with
305       RefreshSequentException e ->
306        output_html outputhtml
307         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
308          "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
309        ProofEngine.proof := savedproof ;
310        ProofEngine.goal := savedgoal ;
311        refresh_sequent proofw
312     | RefreshProofException e ->
313        output_html outputhtml
314         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
315          "proof: " ^ Printexc.to_string e ^ "</h1>") ;
316        ProofEngine.proof := savedproof ;
317        ProofEngine.goal := savedgoal ;
318        refresh_sequent proofw ;
319        refresh_proof output
320     | e ->
321        output_html outputhtml
322         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
323        ProofEngine.proof := savedproof ;
324        ProofEngine.goal := savedgoal ;
325   end
326 ;;
327
328 let call_tactic_with_input tactic rendering_window () =
329  let proofw = (rendering_window#proofw : GMathView.math_view) in
330  let output = (rendering_window#output : GMathView.math_view) in
331  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
332  let inputt = (rendering_window#inputt : GEdit.text) in
333  let savedproof = !ProofEngine.proof in
334  let savedgoal  = !ProofEngine.goal in
335 (*CSC: Gran cut&paste da sotto... *)
336   let inputlen = inputt#length in
337   let input = inputt#get_chars 0 inputlen ^ "\n" in
338    let lexbuf = Lexing.from_string input in
339    let curi =
340     match !ProofEngine.proof with
341        None -> assert false
342      | Some (curi,_,_,_) -> curi
343    in
344    let uri,metasenv,bo,ty =
345     match !ProofEngine.proof with
346        None -> assert false
347      | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
348    in
349    let context =
350     List.map
351      (function
352          Some (n,_) -> Some n
353        | None -> None)
354      (match !ProofEngine.goal with
355          None -> assert false
356        | Some metano ->
357           let (_,canonical_context,_) =
358            List.find (function (m,_,_) -> m=metano) metasenv
359           in
360            canonical_context
361      )
362    in
363     try
364      while true do
365       match
366        CicTextualParserContext.main
367         curi context metasenv CicTextualLexer.token lexbuf
368       with
369          None -> ()
370        | Some (metasenv',expr) ->
371           ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
372           tactic expr ;
373           refresh_sequent proofw ;
374           refresh_proof output
375      done
376     with
377        CicTextualParser0.Eof ->
378         inputt#delete_text 0 inputlen
379      | RefreshSequentException e ->
380         output_html outputhtml
381          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
382           "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
383         ProofEngine.proof := savedproof ;
384         ProofEngine.goal := savedgoal ;
385         refresh_sequent proofw
386      | RefreshProofException e ->
387         output_html outputhtml
388          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
389           "proof: " ^ Printexc.to_string e ^ "</h1>") ;
390         ProofEngine.proof := savedproof ;
391         ProofEngine.goal := savedgoal ;
392         refresh_sequent proofw ;
393         refresh_proof output
394      | e ->
395         output_html outputhtml
396          ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
397         ProofEngine.proof := savedproof ;
398         ProofEngine.goal := savedgoal ;
399 ;;
400
401 let call_tactic_with_goal_input tactic rendering_window () =
402  let module L = LogicalOperations in
403  let module G = Gdome in
404   let proofw = (rendering_window#proofw : GMathView.math_view) in
405   let output = (rendering_window#output : GMathView.math_view) in
406   let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
407   let savedproof = !ProofEngine.proof in
408   let savedgoal  = !ProofEngine.goal in
409    match proofw#get_selection with
410      Some node ->
411       let xpath =
412        ((node : Gdome.element)#getAttributeNS
413          ~namespaceURI:helmns
414          ~localName:(G.domString "xref"))#to_string
415       in
416        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
417        else
418         begin
419          try
420           match !current_goal_infos with
421              Some (ids_to_terms, ids_to_father_ids,_) ->
422               let id = xpath in
423                tactic (Hashtbl.find ids_to_terms id) ;
424                refresh_sequent rendering_window#proofw ;
425                refresh_proof rendering_window#output
426            | None -> assert false (* "ERROR: No current term!!!" *)
427          with
428             RefreshSequentException e ->
429              output_html outputhtml
430               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
431                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
432              ProofEngine.proof := savedproof ;
433              ProofEngine.goal := savedgoal ;
434              refresh_sequent proofw
435           | RefreshProofException e ->
436              output_html outputhtml
437               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
438                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
439              ProofEngine.proof := savedproof ;
440              ProofEngine.goal := savedgoal ;
441              refresh_sequent proofw ;
442              refresh_proof output
443           | e ->
444              output_html outputhtml
445               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
446              ProofEngine.proof := savedproof ;
447              ProofEngine.goal := savedgoal ;
448         end
449    | None ->
450       output_html outputhtml
451        ("<h1 color=\"red\">No term selected</h1>")
452 ;;
453
454 let call_tactic_with_input_and_goal_input tactic rendering_window () =
455  let module L = LogicalOperations in
456  let module G = Gdome in
457   let proofw = (rendering_window#proofw : GMathView.math_view) in
458   let output = (rendering_window#output : GMathView.math_view) in
459   let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
460   let inputt = (rendering_window#inputt : GEdit.text) in
461   let savedproof = !ProofEngine.proof in
462   let savedgoal  = !ProofEngine.goal in
463    match proofw#get_selection with
464      Some node ->
465       let xpath =
466        ((node : Gdome.element)#getAttributeNS
467          ~namespaceURI:helmns
468          ~localName:(G.domString "xref"))#to_string
469       in
470        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
471        else
472         begin
473          try
474           match !current_goal_infos with
475              Some (ids_to_terms, ids_to_father_ids,_) ->
476               let id = xpath in
477                (* Let's parse the input *)
478                let inputlen = inputt#length in
479                let input = inputt#get_chars 0 inputlen ^ "\n" in
480                 let lexbuf = Lexing.from_string input in
481                 let curi =
482                  match !ProofEngine.proof with
483                     None -> assert false
484                   | Some (curi,_,_,_) -> curi
485                 in
486                 let uri,metasenv,bo,ty =
487                  match !ProofEngine.proof with
488                     None -> assert false
489                   | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
490                 in
491                 let context =
492                  List.map
493                   (function
494                       Some (n,_) -> Some n
495                     | None -> None)
496                   (match !ProofEngine.goal with
497                       None -> assert false
498                     | Some metano ->
499                        let (_,canonical_context,_) =
500                         List.find (function (m,_,_) -> m=metano) metasenv
501                        in
502                         canonical_context
503                   )
504                 in
505                  begin
506                   try
507                    while true do
508                     match
509                      CicTextualParserContext.main curi context metasenv
510                       CicTextualLexer.token lexbuf
511                     with
512                        None -> ()
513                      | Some (metasenv',expr) ->
514                         ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
515                         tactic ~goal_input:(Hashtbl.find ids_to_terms id)
516                          ~input:expr ;
517                         refresh_sequent proofw ;
518                         refresh_proof output
519                    done
520                   with
521                      CicTextualParser0.Eof ->
522                       inputt#delete_text 0 inputlen
523                  end
524            | None -> assert false (* "ERROR: No current term!!!" *)
525          with
526             RefreshSequentException e ->
527              output_html outputhtml
528               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
529                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
530              ProofEngine.proof := savedproof ;
531              ProofEngine.goal := savedgoal ;
532              refresh_sequent proofw
533           | RefreshProofException e ->
534              output_html outputhtml
535               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
536                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
537              ProofEngine.proof := savedproof ;
538              ProofEngine.goal := savedgoal ;
539              refresh_sequent proofw ;
540              refresh_proof output
541           | e ->
542              output_html outputhtml
543               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
544              ProofEngine.proof := savedproof ;
545              ProofEngine.goal := savedgoal ;
546         end
547    | None ->
548       output_html outputhtml
549        ("<h1 color=\"red\">No term selected</h1>")
550 ;;
551
552 let call_tactic_with_goal_input_in_scratch tactic scratch_window () =
553  let module L = LogicalOperations in
554  let module G = Gdome in
555   let mmlwidget = (scratch_window#mmlwidget : GMathView.math_view) in
556   let outputhtml = (scratch_window#outputhtml : GHtml.xmhtml) in
557   let savedproof = !ProofEngine.proof in
558   let savedgoal  = !ProofEngine.goal in
559    match mmlwidget#get_selection with
560      Some node ->
561       let xpath =
562        ((node : Gdome.element)#getAttributeNS
563          ~namespaceURI:helmns
564          ~localName:(G.domString "xref"))#to_string
565       in
566        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
567        else
568         begin
569          try
570           match !current_scratch_infos with
571              (* term is the whole goal in the scratch_area *)
572              Some (term,ids_to_terms, ids_to_father_ids,_) ->
573               let id = xpath in
574                let expr = tactic term (Hashtbl.find ids_to_terms id) in
575                 let mml = mml_of_cic_term 111 expr in
576                  scratch_window#show () ;
577                  scratch_window#mmlwidget#load_tree ~dom:mml
578            | None -> assert false (* "ERROR: No current term!!!" *)
579          with
580           e ->
581            output_html outputhtml
582             ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
583         end
584    | None ->
585       output_html outputhtml
586        ("<h1 color=\"red\">No term selected</h1>")
587 ;;
588
589 let call_tactic_with_hypothesis_input tactic rendering_window () =
590  let module L = LogicalOperations in
591  let module G = Gdome in
592   let proofw = (rendering_window#proofw : GMathView.math_view) in
593   let output = (rendering_window#output : GMathView.math_view) in
594   let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
595   let savedproof = !ProofEngine.proof in
596   let savedgoal  = !ProofEngine.goal in
597    match proofw#get_selection with
598      Some node ->
599       let xpath =
600        ((node : Gdome.element)#getAttributeNS
601          ~namespaceURI:helmns
602          ~localName:(G.domString "xref"))#to_string
603       in
604        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
605        else
606         begin
607          try
608           match !current_goal_infos with
609              Some (_,_,ids_to_hypotheses) ->
610               let id = xpath in
611                tactic (Hashtbl.find ids_to_hypotheses id) ;
612                refresh_sequent rendering_window#proofw ;
613                refresh_proof rendering_window#output
614            | None -> assert false (* "ERROR: No current term!!!" *)
615          with
616             RefreshSequentException e ->
617              output_html outputhtml
618               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
619                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
620              ProofEngine.proof := savedproof ;
621              ProofEngine.goal := savedgoal ;
622              refresh_sequent proofw
623           | RefreshProofException e ->
624              output_html outputhtml
625               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
626                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
627              ProofEngine.proof := savedproof ;
628              ProofEngine.goal := savedgoal ;
629              refresh_sequent proofw ;
630              refresh_proof output
631           | e ->
632              output_html outputhtml
633               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
634              ProofEngine.proof := savedproof ;
635              ProofEngine.goal := savedgoal ;
636         end
637    | None ->
638       output_html outputhtml
639        ("<h1 color=\"red\">No term selected</h1>")
640 ;;
641
642
643 let intros rendering_window = call_tactic ProofEngine.intros rendering_window;;
644 let exact rendering_window =
645  call_tactic_with_input ProofEngine.exact rendering_window
646 ;;
647 let apply rendering_window =
648  call_tactic_with_input ProofEngine.apply rendering_window
649 ;;
650 let elimintrossimpl rendering_window =
651  call_tactic_with_input ProofEngine.elim_intros_simpl rendering_window
652 ;;
653 let elimtype rendering_window =
654  call_tactic_with_input ProofEngine.elim_type rendering_window
655 ;;
656 let whd rendering_window =
657  call_tactic_with_goal_input ProofEngine.whd rendering_window
658 ;;
659 let reduce rendering_window =
660  call_tactic_with_goal_input ProofEngine.reduce rendering_window
661 ;;
662 let simpl rendering_window =
663  call_tactic_with_goal_input ProofEngine.simpl rendering_window
664 ;;
665 let fold rendering_window =
666  call_tactic_with_input ProofEngine.fold rendering_window
667 ;;
668 let cut rendering_window =
669  call_tactic_with_input ProofEngine.cut rendering_window
670 ;;
671 let change rendering_window =
672  call_tactic_with_input_and_goal_input ProofEngine.change rendering_window
673 ;;
674 let letin rendering_window =
675  call_tactic_with_input ProofEngine.letin rendering_window
676 ;;
677 let ring rendering_window = call_tactic ProofEngine.ring rendering_window;;
678 let clearbody rendering_window =
679  call_tactic_with_hypothesis_input ProofEngine.clearbody rendering_window
680 ;;
681 let clear rendering_window =
682  call_tactic_with_hypothesis_input ProofEngine.clear rendering_window
683 ;;
684
685 let fourier rendering_window = call_tactic ProofEngine.fourier rendering_window;;
686
687
688 let whd_in_scratch scratch_window =
689  call_tactic_with_goal_input_in_scratch ProofEngine.whd_in_scratch
690   scratch_window
691 ;;
692 let reduce_in_scratch scratch_window =
693  call_tactic_with_goal_input_in_scratch ProofEngine.reduce_in_scratch
694   scratch_window
695 ;;
696 let simpl_in_scratch scratch_window =
697  call_tactic_with_goal_input_in_scratch ProofEngine.simpl_in_scratch
698   scratch_window
699 ;;
700
701
702
703 (**********************)
704 (*   END OF TACTICS   *)
705 (**********************)
706
707 exception OpenConjecturesStillThere;;
708 exception WrongProof;;
709
710 let qed rendering_window () =
711  match !ProofEngine.proof with
712     None -> assert false
713   | Some (uri,[],bo,ty) ->
714      if
715       CicReduction.are_convertible []
716        (CicTypeChecker.type_of_aux' [] [] bo) ty
717      then
718       begin
719        (*CSC: Wrong: [] is just plainly wrong *)
720        let proof = Cic.Definition (UriManager.name_of_uri uri,bo,ty,[]) in
721         let
722          (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
723           ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
724         =
725          Cic2acic.acic_object_of_cic_object proof
726         in
727          let mml =
728           mml_of_cic_object uri acic ids_to_inner_sorts ids_to_inner_types
729          in
730           (rendering_window#output : GMathView.math_view)#load_tree mml ;
731           current_cic_infos :=
732            Some
733             (ids_to_terms,ids_to_father_ids,ids_to_conjectures,
734              ids_to_hypotheses)
735       end
736      else
737       raise WrongProof
738   | _ -> raise OpenConjecturesStillThere
739 ;;
740
741 (*????
742 let dtdname = "http://www.cs.unibo.it/helm/dtd/cic.dtd";;
743 *)
744 let dtdname = "/projects/helm/V7/dtd/cic.dtd";;
745
746 let save rendering_window () =
747  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
748   match !ProofEngine.proof with
749      None -> assert false
750    | Some (uri, metasenv, bo, ty) ->
751       let currentproof =
752        Cic.CurrentProof (UriManager.name_of_uri uri,metasenv,bo,ty)
753       in
754        let (acurrentproof,_,_,ids_to_inner_sorts,_,_,_) =
755         Cic2acic.acic_object_of_cic_object currentproof
756        in
757         let xml = Cic2Xml.print_object uri ~ids_to_inner_sorts acurrentproof in
758          let xml' =
759           [< Xml.xml_cdata "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" ;
760              Xml.xml_cdata
761               ("<!DOCTYPE CurrentProof SYSTEM \"" ^ dtdname ^ "\">\n\n") ;
762              xml
763           >]
764          in
765           Xml.pp ~quiet:true xml' (Some prooffile) ;
766           output_html outputhtml
767            ("<h1 color=\"Green\">Current proof saved to " ^
768             prooffile ^ "</h1>")
769 ;;
770
771 (* Used to typecheck the loaded proofs *)
772 let typecheck_loaded_proof metasenv bo ty =
773  let module T = CicTypeChecker in
774   (*CSC: bisogna controllare anche il metasenv!!! *)
775   ignore (T.type_of_aux' metasenv [] ty) ;
776   ignore (T.type_of_aux' metasenv [] bo)
777 ;;
778
779 let load rendering_window () =
780  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
781  let output = (rendering_window#output : GMathView.math_view) in
782  let proofw = (rendering_window#proofw : GMathView.math_view) in
783   try
784    let uri = UriManager.uri_of_string "cic:/dummy.con" in
785     match CicParser.obj_of_xml prooffile uri with
786        Cic.CurrentProof (_,metasenv,bo,ty) ->
787         typecheck_loaded_proof metasenv bo ty ;
788         ProofEngine.proof :=
789          Some (uri, metasenv, bo, ty) ;
790         ProofEngine.goal :=
791          (match metasenv with
792              [] -> None
793            | (metano,_,_)::_ -> Some metano
794          ) ;
795         refresh_proof output ;
796         refresh_sequent proofw ;
797          output_html outputhtml
798           ("<h1 color=\"Green\">Current proof loaded from " ^
799             prooffile ^ "</h1>")
800      | _ -> assert false
801   with
802      RefreshSequentException e ->
803       output_html outputhtml
804        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
805         "sequent: " ^ Printexc.to_string e ^ "</h1>")
806    | RefreshProofException e ->
807       output_html outputhtml
808        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
809         "proof: " ^ Printexc.to_string e ^ "</h1>")
810    | e ->
811       output_html outputhtml
812        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
813 ;;
814
815 let proveit rendering_window () =
816  let module L = LogicalOperations in
817  let module G = Gdome in
818  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
819   match rendering_window#output#get_selection with
820     Some node ->
821      let xpath =
822       ((node : Gdome.element)#getAttributeNS
823       (*CSC: OCAML DIVERGE
824       ((element : G.element)#getAttributeNS
825       *)
826         ~namespaceURI:helmns
827         ~localName:(G.domString "xref"))#to_string
828      in
829       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
830       else
831        begin
832         try
833          match !current_cic_infos with
834             Some (ids_to_terms, ids_to_father_ids, _, _) ->
835              let id = xpath in
836               L.to_sequent id ids_to_terms ids_to_father_ids ;
837               refresh_proof rendering_window#output ;
838               refresh_sequent rendering_window#proofw
839           | None -> assert false (* "ERROR: No current term!!!" *)
840         with
841            RefreshSequentException e ->
842             output_html outputhtml
843              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
844               "sequent: " ^ Printexc.to_string e ^ "</h1>")
845          | RefreshProofException e ->
846             output_html outputhtml
847              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
848               "proof: " ^ Printexc.to_string e ^ "</h1>")
849          | e ->
850             output_html outputhtml
851              ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
852        end
853   | None -> assert false (* "ERROR: No selection!!!" *)
854 ;;
855
856 let focus rendering_window () =
857  let module L = LogicalOperations in
858  let module G = Gdome in
859  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
860   match rendering_window#output#get_selection with
861     Some node ->
862      let xpath =
863       ((node : Gdome.element)#getAttributeNS
864       (*CSC: OCAML DIVERGE
865       ((element : G.element)#getAttributeNS
866       *)
867         ~namespaceURI:helmns
868         ~localName:(G.domString "xref"))#to_string
869      in
870       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
871       else
872        begin
873         try
874          match !current_cic_infos with
875             Some (ids_to_terms, ids_to_father_ids, _, _) ->
876              let id = xpath in
877               L.focus id ids_to_terms ids_to_father_ids ;
878               refresh_sequent rendering_window#proofw
879           | None -> assert false (* "ERROR: No current term!!!" *)
880         with
881            RefreshSequentException e ->
882             output_html outputhtml
883              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
884               "sequent: " ^ Printexc.to_string e ^ "</h1>")
885          | RefreshProofException e ->
886             output_html outputhtml
887              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
888               "proof: " ^ Printexc.to_string e ^ "</h1>")
889          | e ->
890             output_html outputhtml
891              ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
892        end
893   | None -> assert false (* "ERROR: No selection!!!" *)
894 ;;
895
896 exception NoPrevGoal;;
897 exception NoNextGoal;;
898
899 let prevgoal metasenv metano =
900  let rec aux =
901   function
902      [] -> assert false
903    | [(m,_,_)] -> raise NoPrevGoal
904    | (n,_,_)::(m,_,_)::_ when m=metano -> n
905    | _::tl -> aux tl
906  in
907   aux metasenv
908 ;;
909
910 let nextgoal metasenv metano =
911  let rec aux =
912   function
913      [] -> assert false
914    | [(m,_,_)] when m = metano -> raise NoNextGoal
915    | (m,_,_)::(n,_,_)::_ when m=metano -> n
916    | _::tl -> aux tl
917  in
918   aux metasenv
919 ;;
920
921 let prev_or_next_goal select_goal rendering_window () =
922  let module L = LogicalOperations in
923  let module G = Gdome in
924  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
925   let metasenv =
926    match !ProofEngine.proof with
927       None -> assert false
928     | Some (_,metasenv,_,_) -> metasenv
929   in
930   let metano =
931    match !ProofEngine.goal with
932       None -> assert false
933     | Some m -> m
934   in
935    try
936     ProofEngine.goal := Some (select_goal metasenv metano) ;
937     refresh_sequent rendering_window#proofw
938    with
939       RefreshSequentException e ->
940        output_html outputhtml
941         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
942          "sequent: " ^ Printexc.to_string e ^ "</h1>")
943     | e ->
944        output_html outputhtml
945         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
946 ;;
947
948 exception NotADefinition;;
949
950 let open_ rendering_window () =
951  let inputt = (rendering_window#inputt : GEdit.text) in
952  let oldinputt = (rendering_window#oldinputt : GEdit.text) in
953  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
954  let output = (rendering_window#output : GMathView.math_view) in
955  let proofw = (rendering_window#proofw : GMathView.math_view) in
956   let inputlen = inputt#length in
957   let input = inputt#get_chars 0 inputlen ^ "\n" in
958    try
959     let uri = UriManager.uri_of_string ("cic:" ^ input) in
960      CicTypeChecker.typecheck uri ;
961      let metasenv,bo,ty =
962       match CicEnvironment.get_cooked_obj uri 0 with
963          Cic.Definition (_,bo,ty,_) -> [],bo,ty
964        | Cic.CurrentProof (_,metasenv,bo,ty) -> metasenv,bo,ty
965        | Cic.Axiom _
966        | Cic.Variable _
967        | Cic.InductiveDefinition _ -> raise NotADefinition
968      in
969       ProofEngine.proof :=
970        Some (uri, metasenv, bo, ty) ;
971       ProofEngine.goal := None ;
972       refresh_sequent proofw ;
973       refresh_proof output ;
974       inputt#delete_text 0 inputlen ;
975       ignore(oldinputt#insert_text input oldinputt#length)
976    with
977       RefreshSequentException e ->
978        output_html outputhtml
979         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
980          "sequent: " ^ Printexc.to_string e ^ "</h1>")
981     | RefreshProofException e ->
982        output_html outputhtml
983         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
984          "proof: " ^ Printexc.to_string e ^ "</h1>")
985     | e ->
986        output_html outputhtml
987         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
988 ;;
989
990 let state rendering_window () =
991  let inputt = (rendering_window#inputt : GEdit.text) in
992  let oldinputt = (rendering_window#oldinputt : GEdit.text) in
993  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
994  let output = (rendering_window#output : GMathView.math_view) in
995  let proofw = (rendering_window#proofw : GMathView.math_view) in
996   let inputlen = inputt#length in
997   let input = inputt#get_chars 0 inputlen ^ "\n" in
998    (* Do something interesting *)
999    let lexbuf = Lexing.from_string input in
1000     try
1001      while true do
1002       (* Execute the actions *)
1003       match CicTextualParser.main CicTextualLexer.token lexbuf with
1004          None -> ()
1005        | Some expr ->
1006           let _  = CicTypeChecker.type_of_aux' [] [] expr in
1007            ProofEngine.proof :=
1008             Some (UriManager.uri_of_string "cic:/dummy.con",
1009                    [1,[],expr], Cic.Meta (1,[]), expr) ;
1010            ProofEngine.goal := Some 1 ;
1011            refresh_sequent proofw ;
1012            refresh_proof output ;
1013      done
1014     with
1015        CicTextualParser0.Eof ->
1016         inputt#delete_text 0 inputlen ;
1017         ignore(oldinputt#insert_text input oldinputt#length)
1018      | RefreshSequentException e ->
1019         output_html outputhtml
1020          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1021           "sequent: " ^ Printexc.to_string e ^ "</h1>")
1022      | RefreshProofException e ->
1023         output_html outputhtml
1024          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1025           "proof: " ^ Printexc.to_string e ^ "</h1>")
1026      | e ->
1027         output_html outputhtml
1028          ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1029 ;;
1030
1031 let check rendering_window scratch_window () =
1032  let inputt = (rendering_window#inputt : GEdit.text) in
1033  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
1034  let output = (rendering_window#output : GMathView.math_view) in
1035  let proofw = (rendering_window#proofw : GMathView.math_view) in
1036   let inputlen = inputt#length in
1037   let input = inputt#get_chars 0 inputlen ^ "\n" in
1038   let curi,metasenv =
1039    match !ProofEngine.proof with
1040       None -> UriManager.uri_of_string "cic:/dummy.con", []
1041     | Some (curi,metasenv,_,_) -> curi,metasenv
1042   in
1043   let context,names_context =
1044    let context =
1045     match !ProofEngine.goal with
1046        None -> []
1047      | Some metano ->
1048         let (_,canonical_context,_) =
1049          List.find (function (m,_,_) -> m=metano) metasenv
1050         in
1051          canonical_context
1052    in
1053     context,
1054     List.map
1055      (function
1056          Some (n,_) -> Some n
1057        | None -> None
1058      ) context
1059   in
1060    (* Do something interesting *)
1061    let lexbuf = Lexing.from_string input in
1062     try
1063      while true do
1064       (* Execute the actions *)
1065       match
1066        CicTextualParserContext.main curi names_context metasenv
1067         CicTextualLexer.token lexbuf
1068       with
1069          None -> ()
1070        | Some (metasenv',expr) ->
1071           try
1072            let ty  = CicTypeChecker.type_of_aux' metasenv' context expr in
1073             let mml = mml_of_cic_term 111 (Cic.Cast (expr,ty)) in
1074              scratch_window#show () ;
1075              scratch_window#mmlwidget#load_tree ~dom:mml
1076           with
1077            e ->
1078             print_endline ("? " ^ CicPp.ppterm expr) ;
1079             raise e
1080      done
1081     with
1082        CicTextualParser0.Eof -> ()
1083      | e ->
1084        output_html outputhtml
1085         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1086 ;;
1087
1088 exception NoObjectsLocated;;
1089
1090 let user_uri_choice uris =
1091  let uri =
1092   match uris with
1093      [] -> raise NoObjectsLocated
1094    | [uri] -> uri
1095    | uris ->
1096       let choice =
1097        GToolbox.question_box ~title:"Ambiguous result."
1098         ~buttons:uris ~default:1
1099         "Ambiguous result. Please, choose one."
1100       in
1101        List.nth uris (choice-1)
1102  in
1103   String.sub uri 4 (String.length uri - 4)
1104 ;;
1105
1106 let locate rendering_window () =
1107  let inputt = (rendering_window#inputt : GEdit.text) in
1108  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
1109   let inputlen = inputt#length in
1110   let input = inputt#get_chars 0 inputlen in
1111    try
1112     match Str.split (Str.regexp "[ \t]+") input with
1113        [] -> ()
1114      | head :: tail ->
1115         inputt#delete_text 0 inputlen ;
1116         let MathQL.MQRefs uris, html = MQueryGenerator.locate head in
1117          output_html outputhtml html ;
1118          let uri' = user_uri_choice uris in
1119           ignore ((inputt#insert_text uri') ~pos:0)
1120    with
1121     e ->
1122      output_html outputhtml
1123       ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
1124 ;;
1125
1126 let backward rendering_window () =
1127  let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
1128  let inputt = (rendering_window#inputt : GEdit.text) in
1129   let inputlen = inputt#length in
1130   let input = inputt#get_chars 0 inputlen in
1131   let level = int_of_string input in
1132   let metasenv =
1133    match !ProofEngine.proof with
1134       None -> assert false
1135     | Some (_,metasenv,_,_) -> metasenv
1136   in
1137    try
1138     match !ProofEngine.goal with
1139        None -> ()
1140      | Some metano ->
1141         let (_, ey ,ty) = List.find (function (m,_,_) -> m=metano) metasenv in
1142          let MathQL.MQRefs uris, html =
1143           MQueryGenerator.backward metasenv ey ty level
1144          in
1145           output_html outputhtml html ;
1146           let uri' = user_uri_choice uris in
1147            inputt#delete_text 0 inputlen ;
1148            ignore ((inputt#insert_text uri') ~pos:0)
1149     with
1150      e -> 
1151       output_html outputhtml 
1152        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
1153 ;;
1154       
1155 let choose_selection
1156      (mmlwidget : GMathView.math_view) (element : Gdome.element option)
1157 =
1158  let module G = Gdome in
1159   let rec aux element =
1160    if element#hasAttributeNS
1161        ~namespaceURI:helmns
1162        ~localName:(G.domString "xref")
1163    then
1164      mmlwidget#set_selection (Some element)
1165    else
1166       match element#get_parentNode with
1167          None -> assert false
1168        (*CSC: OCAML DIVERGES!
1169        | Some p -> aux (new G.element_of_node p)
1170        *)
1171        | Some p -> aux (new Gdome.element_of_node p)
1172   in
1173    match element with
1174      Some x -> aux x
1175    | None   -> mmlwidget#set_selection None
1176 ;;
1177
1178 (* STUFF TO BUILD THE GTK INTERFACE *)
1179
1180 (* Stuff for the widget settings *)
1181
1182 let export_to_postscript (output : GMathView.math_view) () =
1183  output#export_to_postscript ~filename:"output.ps" ();
1184 ;;
1185
1186 let activate_t1 (output : GMathView.math_view) button_set_anti_aliasing
1187  button_set_kerning button_set_transparency button_export_to_postscript
1188  button_t1 ()
1189 =
1190  let is_set = button_t1#active in
1191   output#set_font_manager_type
1192    (if is_set then `font_manager_t1 else `font_manager_gtk) ;
1193   if is_set then
1194    begin
1195     button_set_anti_aliasing#misc#set_sensitive true ;
1196     button_set_kerning#misc#set_sensitive true ;
1197     button_set_transparency#misc#set_sensitive true ;
1198     button_export_to_postscript#misc#set_sensitive true ;
1199    end
1200   else
1201    begin
1202     button_set_anti_aliasing#misc#set_sensitive false ;
1203     button_set_kerning#misc#set_sensitive false ;
1204     button_set_transparency#misc#set_sensitive false ;
1205     button_export_to_postscript#misc#set_sensitive false ;
1206    end
1207 ;;
1208
1209 let set_anti_aliasing output button_set_anti_aliasing () =
1210  output#set_anti_aliasing button_set_anti_aliasing#active
1211 ;;
1212
1213 let set_kerning output button_set_kerning () =
1214  output#set_kerning button_set_kerning#active
1215 ;;
1216
1217 let set_transparency output button_set_transparency () =
1218  output#set_transparency button_set_transparency#active
1219 ;;
1220
1221 let changefont output font_size_spinb () =
1222  output#set_font_size font_size_spinb#value_as_int
1223 ;;
1224
1225 let set_log_verbosity output log_verbosity_spinb () =
1226  output#set_log_verbosity log_verbosity_spinb#value_as_int
1227 ;;
1228
1229 class settings_window (output : GMathView.math_view) sw
1230  button_export_to_postscript selection_changed_callback
1231 =
1232  let settings_window = GWindow.window ~title:"GtkMathView settings" () in
1233  let vbox =
1234   GPack.vbox ~packing:settings_window#add () in
1235  let table =
1236   GPack.table
1237    ~rows:1 ~columns:3 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
1238    ~border_width:5 ~packing:vbox#add () in
1239  let button_t1 =
1240   GButton.toggle_button ~label:"activate t1 fonts"
1241    ~packing:(table#attach ~left:0 ~top:0) () in
1242  let button_set_anti_aliasing =
1243   GButton.toggle_button ~label:"set_anti_aliasing"
1244    ~packing:(table#attach ~left:0 ~top:1) () in
1245  let button_set_kerning =
1246   GButton.toggle_button ~label:"set_kerning"
1247    ~packing:(table#attach ~left:1 ~top:1) () in
1248  let button_set_transparency =
1249   GButton.toggle_button ~label:"set_transparency"
1250    ~packing:(table#attach ~left:2 ~top:1) () in
1251  let table =
1252   GPack.table
1253    ~rows:2 ~columns:2 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
1254    ~border_width:5 ~packing:vbox#add () in
1255  let font_size_label =
1256   GMisc.label ~text:"font size:"
1257    ~packing:(table#attach ~left:0 ~top:0 ~expand:`NONE) () in
1258  let font_size_spinb =
1259   let sadj =
1260    GData.adjustment ~value:14.0 ~lower:5.0 ~upper:50.0 ~step_incr:1.0 ()
1261   in
1262    GEdit.spin_button 
1263     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:0 ~fill:`NONE) () in
1264  let log_verbosity_label =
1265   GMisc.label ~text:"log verbosity:"
1266    ~packing:(table#attach ~left:0 ~top:1) () in
1267  let log_verbosity_spinb =
1268   let sadj =
1269    GData.adjustment ~value:0.0 ~lower:0.0 ~upper:3.0 ~step_incr:1.0 ()
1270   in
1271    GEdit.spin_button 
1272     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:1) () in
1273  let hbox =
1274   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1275  let closeb =
1276   GButton.button ~label:"Close"
1277    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1278 object(self)
1279  method show = settings_window#show
1280  initializer
1281   button_set_anti_aliasing#misc#set_sensitive false ;
1282   button_set_kerning#misc#set_sensitive false ;
1283   button_set_transparency#misc#set_sensitive false ;
1284   (* Signals connection *)
1285   ignore(button_t1#connect#clicked
1286    (activate_t1 output button_set_anti_aliasing button_set_kerning
1287     button_set_transparency button_export_to_postscript button_t1)) ;
1288   ignore(font_size_spinb#connect#changed (changefont output font_size_spinb)) ;
1289   ignore(button_set_anti_aliasing#connect#toggled
1290    (set_anti_aliasing output button_set_anti_aliasing));
1291   ignore(button_set_kerning#connect#toggled
1292    (set_kerning output button_set_kerning)) ;
1293   ignore(button_set_transparency#connect#toggled
1294    (set_transparency output button_set_transparency)) ;
1295   ignore(log_verbosity_spinb#connect#changed
1296    (set_log_verbosity output log_verbosity_spinb)) ;
1297   ignore(closeb#connect#clicked settings_window#misc#hide)
1298 end;;
1299
1300 (* Scratch window *)
1301
1302 class scratch_window outputhtml =
1303  let window =
1304   GWindow.window ~title:"MathML viewer" ~border_width:2 () in
1305  let vbox =
1306   GPack.vbox ~packing:window#add () in
1307  let hbox =
1308   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1309  let whdb =
1310   GButton.button ~label:"Whd"
1311    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1312  let reduceb =
1313   GButton.button ~label:"Reduce"
1314    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1315  let simplb =
1316   GButton.button ~label:"Simpl"
1317    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1318  let scrolled_window =
1319   GBin.scrolled_window ~border_width:10
1320    ~packing:(vbox#pack ~expand:true ~padding:5) () in
1321  let mmlwidget =
1322   GMathView.math_view
1323    ~packing:(scrolled_window#add) ~width:400 ~height:280 () in
1324 object(self)
1325  method outputhtml = outputhtml
1326  method mmlwidget = mmlwidget
1327  method show () = window#misc#hide () ; window#show ()
1328  initializer
1329   ignore(mmlwidget#connect#selection_changed (choose_selection mmlwidget)) ;
1330   ignore(window#event#connect#delete (fun _ -> window#misc#hide () ; true )) ;
1331   ignore(whdb#connect#clicked (whd_in_scratch self)) ;
1332   ignore(reduceb#connect#clicked (reduce_in_scratch self)) ;
1333   ignore(simplb#connect#clicked (simpl_in_scratch self))
1334 end;;
1335
1336 (* Main window *)
1337
1338 class rendering_window output proofw (label : GMisc.label) =
1339  let window =
1340   GWindow.window ~title:"MathML viewer" ~border_width:2 () in
1341  let hbox0 =
1342   GPack.hbox ~packing:window#add () in
1343  let vbox =
1344   GPack.vbox ~packing:(hbox0#pack ~expand:false ~fill:false ~padding:5) () in
1345  let _ = vbox#pack ~expand:false ~fill:false ~padding:5 label#coerce in
1346  let scrolled_window0 =
1347   GBin.scrolled_window ~border_width:10
1348    ~packing:(vbox#pack ~expand:true ~padding:5) () in
1349  let _ = scrolled_window0#add output#coerce in
1350  let hbox1 =
1351   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1352  let settingsb =
1353   GButton.button ~label:"Settings"
1354    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1355  let button_export_to_postscript =
1356   GButton.button ~label:"export_to_postscript"
1357   ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1358  let qedb =
1359   GButton.button ~label:"Qed"
1360    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1361  let saveb =
1362   GButton.button ~label:"Save"
1363    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1364  let loadb =
1365   GButton.button ~label:"Load"
1366    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1367  let closeb =
1368   GButton.button ~label:"Close"
1369    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1370  let hbox2 =
1371   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1372  let proveitb =
1373   GButton.button ~label:"Prove It"
1374    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1375  let focusb =
1376   GButton.button ~label:"Focus"
1377    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1378  let prevgoalb =
1379   GButton.button ~label:"<"
1380    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1381  let nextgoalb =
1382   GButton.button ~label:">"
1383    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1384  let oldinputt = GEdit.text ~editable:false ~width:400 ~height:180
1385    ~packing:(vbox#pack ~padding:5) () in
1386  let hbox4 =
1387   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1388  let stateb =
1389   GButton.button ~label:"State"
1390    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1391  let openb =
1392   GButton.button ~label:"Open"
1393    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1394  let checkb =
1395   GButton.button ~label:"Check"
1396    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1397  let locateb =
1398   GButton.button ~label:"Locate"
1399    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1400  let backwardb =
1401   GButton.button ~label:"Backward"
1402    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1403  let inputt = GEdit.text ~editable:true ~width:400 ~height: 100
1404    ~packing:(vbox#pack ~padding:5) () in
1405  let vbox1 =
1406   GPack.vbox ~packing:(hbox0#pack ~expand:false ~fill:false ~padding:5) () in
1407  let scrolled_window1 =
1408   GBin.scrolled_window ~border_width:10
1409    ~packing:(vbox1#pack ~expand:true ~padding:5) () in
1410  let _ = scrolled_window1#add proofw#coerce in
1411  let hbox3 =
1412   GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
1413  let exactb =
1414   GButton.button ~label:"Exact"
1415    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1416  let introsb =
1417   GButton.button ~label:"Intros"
1418    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1419  let applyb =
1420   GButton.button ~label:"Apply"
1421    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1422  let elimintrossimplb =
1423   GButton.button ~label:"ElimIntrosSimpl"
1424    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1425  let elimtypeb =
1426   GButton.button ~label:"ElimType"
1427    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1428  let whdb =
1429   GButton.button ~label:"Whd"
1430    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1431  let reduceb =
1432   GButton.button ~label:"Reduce"
1433    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1434  let simplb =
1435   GButton.button ~label:"Simpl"
1436    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1437  let foldb =
1438   GButton.button ~label:"Fold"
1439    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1440  let cutb =
1441   GButton.button ~label:"Cut"
1442    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1443  let changeb =
1444   GButton.button ~label:"Change"
1445    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1446  let hbox4 =
1447   GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
1448  let letinb =
1449   GButton.button ~label:"Let ... In"
1450    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1451  let ringb =
1452   GButton.button ~label:"Ring"
1453    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1454  let clearbodyb =
1455   GButton.button ~label:"ClearBody"
1456    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1457  let clearb =
1458   GButton.button ~label:"Clear"
1459    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1460  let fourierb =
1461   GButton.button ~label:"Fourier"
1462    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
1463  let outputhtml =
1464   GHtml.xmhtml
1465    ~source:"<html><body bgColor=\"white\"></body></html>"
1466    ~width:400 ~height: 200
1467    ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5)
1468    ~show:true () in
1469  let scratch_window = new scratch_window outputhtml in
1470 object(self)
1471  method outputhtml = outputhtml
1472  method oldinputt = oldinputt
1473  method inputt = inputt
1474  method output = (output : GMathView.math_view)
1475  method proofw = (proofw : GMathView.math_view)
1476  method show = window#show
1477  initializer
1478   button_export_to_postscript#misc#set_sensitive false ;
1479
1480   (* signal handlers here *)
1481   ignore(output#connect#selection_changed
1482    (function elem -> proofw#unload ; choose_selection output elem)) ;
1483   ignore(proofw#connect#selection_changed (choose_selection proofw)) ;
1484   ignore(closeb#connect#clicked (fun _ -> GMain.Main.quit ())) ;
1485   let settings_window = new settings_window output scrolled_window0
1486    button_export_to_postscript (choose_selection output) in
1487   ignore(settingsb#connect#clicked settings_window#show) ;
1488   ignore(button_export_to_postscript#connect#clicked (export_to_postscript output)) ;
1489   ignore(qedb#connect#clicked (qed self)) ;
1490   ignore(saveb#connect#clicked (save self)) ;
1491   ignore(loadb#connect#clicked (load self)) ;
1492   ignore(proveitb#connect#clicked (proveit self)) ;
1493   ignore(focusb#connect#clicked (focus self)) ;
1494   ignore(prevgoalb#connect#clicked (prev_or_next_goal prevgoal self)) ;
1495   ignore(nextgoalb#connect#clicked (prev_or_next_goal nextgoal self)) ;
1496   ignore(window#event#connect#delete (fun _ -> GMain.Main.quit () ; true )) ;
1497   ignore(stateb#connect#clicked (state self)) ;
1498   ignore(openb#connect#clicked (open_ self)) ;
1499   ignore(checkb#connect#clicked (check self scratch_window)) ;
1500   ignore(locateb#connect#clicked (locate self)) ;
1501   ignore(backwardb#connect#clicked (backward self)) ;
1502   ignore(exactb#connect#clicked (exact self)) ;
1503   ignore(applyb#connect#clicked (apply self)) ;
1504   ignore(elimintrossimplb#connect#clicked (elimintrossimpl self)) ;
1505   ignore(elimtypeb#connect#clicked (elimtype self)) ;
1506   ignore(whdb#connect#clicked (whd self)) ;
1507   ignore(reduceb#connect#clicked (reduce self)) ;
1508   ignore(simplb#connect#clicked (simpl self)) ;
1509   ignore(foldb#connect#clicked (fold self)) ;
1510   ignore(cutb#connect#clicked (cut self)) ;
1511   ignore(changeb#connect#clicked (change self)) ;
1512   ignore(letinb#connect#clicked (letin self)) ;
1513   ignore(ringb#connect#clicked (ring self)) ;
1514   ignore(clearbodyb#connect#clicked (clearbody self)) ;
1515   ignore(clearb#connect#clicked (clear self)) ;
1516   ignore(fourierb#connect#clicked (fourier self)) ;
1517   ignore(introsb#connect#clicked (intros self)) ;
1518   Logger.log_callback :=
1519    (Logger.log_to_html ~print_and_flush:(output_html outputhtml))
1520 end;;
1521
1522 (* MAIN *)
1523
1524 let rendering_window = ref None;;
1525
1526 let initialize_everything () =
1527  let module U = Unix in
1528   let output = GMathView.math_view ~width:400 ~height:280 ()
1529   and proofw = GMathView.math_view ~width:400 ~height:275 ()
1530   and label = GMisc.label ~text:"gTopLevel" () in
1531     let rendering_window' =
1532      new rendering_window output proofw label
1533     in
1534      rendering_window := Some rendering_window' ;
1535      rendering_window'#show () ;
1536      GMain.Main.main ()
1537 ;;
1538
1539 let _ =
1540  CicCooking.init () ;
1541  if !usedb then
1542   begin
1543    MQueryGenerator.init () ;
1544    CicTextualParser0.set_locate_object
1545     (function id ->
1546       let MathQL.MQRefs uris, html = MQueryGenerator.locate id in
1547        begin
1548         match !rendering_window with
1549            None -> assert false
1550          | Some rw -> output_html rw#outputhtml html ;
1551        end ;
1552        let uri = 
1553         match uris with
1554            [] ->
1555             (match
1556               (GToolbox.input_string ~title:"Unknown input"
1557                ("No URI matching \"" ^ id ^ "\" found. Please enter its URI"))
1558              with
1559                 None -> None
1560               | Some uri -> Some ("cic:" ^ uri)
1561             )
1562          | [uri] -> Some uri
1563          | _ ->
1564            let choice =
1565             GToolbox.question_box ~title:"Ambiguous input."
1566              ~buttons:uris ~default:1 "Ambiguous input. Please, choose one."
1567            in
1568             if choice > 0 then
1569              Some (List.nth uris (choice - 1))
1570             else
1571              (* No choice from the user *)
1572              None
1573        in
1574         match uri with
1575            Some uri' ->
1576             (* Constant *)
1577             if String.sub uri' (String.length uri' - 4) 4 = ".con" then
1578 (*CSC: what cooking number? Here I always use 0, which may be bugged *)
1579              Some (Cic.Const (UriManager.uri_of_string uri',0))
1580             else
1581              (try
1582                (* Inductive Type *)
1583                let uri'',typeno = CicTextualLexer.indtyuri_of_uri uri' in
1584 (*CSC: what cooking number? Here I always use 0, which may be bugged *)
1585                 Some (Cic.MutInd (uri'',0,typeno))
1586               with
1587                _ ->
1588                 (* Constructor of an Inductive Type *)
1589                 let uri'',typeno,consno =
1590                  CicTextualLexer.indconuri_of_uri uri'
1591                 in
1592 (*CSC: what cooking number? Here I always use 0, which may be bugged *)
1593                  Some (Cic.MutConstruct (uri'',0,typeno,consno))
1594              )
1595          | None -> None
1596     )
1597   end ;
1598  ignore (GtkMain.Main.init ()) ;
1599  initialize_everything () ;
1600  if !usedb then MQueryGenerator.close ();
1601 ;;