]> matita.cs.unibo.it Git - helm.git/blob - helm/gTopLevel/gTopLevel.ml
f00261d8e412d8a4a191dca313eb992e88306a99
[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
37 (* GLOBAL CONSTANTS *)
38
39 let helmns = Gdome.domString "http://www.cs.unibo.it/helm";;
40 let xlinkns = Gdome.domString "http://www.w3.org/1999/xlink";;
41
42 let htmlheader =
43  "<html>" ^
44  " <body bgColor=\"white\">"
45 ;;
46
47 let htmlfooter =
48  " </body>" ^
49  "</html>"
50 ;;
51
52 let prooffile =
53  try
54   Sys.getenv "GTOPLEVEL_PROOFFILE"
55  with
56   Not_found -> "/public/currentproof"
57 ;;
58
59 let prooffiletype =
60  try
61   Sys.getenv "GTOPLEVEL_PROOFFILETYPE"
62  with
63   Not_found -> "/public/currentprooftype"
64 ;;
65
66 (*CSC: the getter should handle the innertypes, not the FS *)
67
68 let innertypesfile =
69  try
70   Sys.getenv "GTOPLEVEL_INNERTYPESFILE"
71  with
72   Not_found -> "/public/innertypes"
73 ;;
74
75 let constanttypefile =
76  try
77   Sys.getenv "GTOPLEVEL_CONSTANTTYPEFILE"
78  with
79   Not_found -> "/public/constanttype"
80 ;;
81
82 let postgresqlconnectionstring =
83  try
84   Sys.getenv "POSTGRESQL_CONNECTION_STRING"
85  with
86   Not_found -> "host=mowgli.cs.unibo.it dbname=helm_mowgli_new_schema user=helm"
87 ;;
88
89 let empty_id_to_uris = ([],function _ -> None);;
90
91
92 (* GLOBAL REFERENCES (USED BY CALLBACKS) *)
93
94 let htmlheader_and_content = ref htmlheader;;
95
96 let current_cic_infos = ref None;;
97 let current_goal_infos = ref None;;
98 let current_scratch_infos = ref None;;
99
100 let id_to_uris = ref empty_id_to_uris;;
101
102 let check_term = ref (fun _ _ _ -> assert false);;
103 let mml_of_cic_term_ref = ref (fun _ _ -> assert false);;
104
105 exception RenderingWindowsNotInitialized;;
106
107 let set_rendering_window,rendering_window =
108  let rendering_window_ref = ref None in
109   (function rw -> rendering_window_ref := Some rw),
110   (function () ->
111     match !rendering_window_ref with
112        None -> raise RenderingWindowsNotInitialized
113      | Some rw -> rw
114   )
115 ;;
116
117 exception SettingsWindowsNotInitialized;;
118
119 let set_settings_window,settings_window =
120  let settings_window_ref = ref None in
121   (function rw -> settings_window_ref := Some rw),
122   (function () ->
123     match !settings_window_ref with
124        None -> raise SettingsWindowsNotInitialized
125      | Some rw -> rw
126   )
127 ;;
128
129 exception OutputHtmlNotInitialized;;
130
131 let set_outputhtml,outputhtml =
132  let outputhtml_ref = ref None in
133   (function rw -> outputhtml_ref := Some rw),
134   (function () ->
135     match !outputhtml_ref with
136        None -> raise OutputHtmlNotInitialized
137      | Some outputhtml -> outputhtml
138   )
139 ;;
140
141 exception QedSetSensitiveNotInitialized;;
142 let qed_set_sensitive =
143  ref (function _ -> raise QedSetSensitiveNotInitialized)
144 ;;
145
146 exception SaveSetSensitiveNotInitialized;;
147 let save_set_sensitive =
148  ref (function _ -> raise SaveSetSensitiveNotInitialized)
149 ;;
150
151 (* COMMAND LINE OPTIONS *)
152
153 let usedb = ref true
154
155 let argspec =
156   [
157     "-nodb", Arg.Clear usedb, "disable use of MathQL DB"
158   ]
159 in
160 Arg.parse argspec ignore ""
161
162 (* MISC FUNCTIONS *)
163
164 let term_of_cic_textual_parser_uri uri =
165  let module C = Cic in
166  let module CTP = CicTextualParser0 in
167   match uri with
168      CTP.ConUri uri -> C.Const (uri,[])
169    | CTP.VarUri uri -> C.Var (uri,[])
170    | CTP.IndTyUri (uri,tyno) -> C.MutInd (uri,tyno,[])
171    | CTP.IndConUri (uri,tyno,consno) -> C.MutConstruct (uri,tyno,consno,[])
172 ;;
173
174 let string_of_cic_textual_parser_uri uri =
175  let module C = Cic in
176  let module CTP = CicTextualParser0 in
177   let uri' =
178    match uri with
179       CTP.ConUri uri -> UriManager.string_of_uri uri
180     | CTP.VarUri uri -> UriManager.string_of_uri uri
181     | CTP.IndTyUri (uri,tyno) ->
182        UriManager.string_of_uri uri ^ "#1/" ^ string_of_int (tyno + 1)
183     | CTP.IndConUri (uri,tyno,consno) ->
184        UriManager.string_of_uri uri ^ "#1/" ^ string_of_int (tyno + 1) ^ "/" ^
185         string_of_int consno
186   in
187    (* 4 = String.length "cic:" *)
188    String.sub uri' 4 (String.length uri' - 4)
189 ;;
190
191 let output_html outputhtml msg =
192  htmlheader_and_content := !htmlheader_and_content ^ msg ;
193  outputhtml#source (!htmlheader_and_content ^ htmlfooter) ;
194  outputhtml#set_topline (-1)
195 ;;
196
197 (* UTILITY FUNCTIONS TO DISAMBIGUATE AN URI *)
198
199 (* Check window *)
200
201 let check_window outputhtml uris =
202  let window =
203   GWindow.window
204    ~width:800 ~modal:true ~title:"Check" ~border_width:2 () in
205  let notebook =
206   GPack.notebook ~scrollable:true ~packing:window#add () in
207  window#show () ;
208  let render_terms =
209   List.map
210    (function uri ->
211      let scrolled_window =
212       GBin.scrolled_window ~border_width:10
213        ~packing:
214          (notebook#append_page ~tab_label:((GMisc.label ~text:uri ())#coerce))
215        ()
216      in
217       lazy 
218        (let mmlwidget =
219          GMathViewAux.single_selection_math_view
220           ~packing:scrolled_window#add ~width:400 ~height:280 () in
221         let expr =
222          let term =
223           term_of_cic_textual_parser_uri
224            (Disambiguate.cic_textual_parser_uri_of_string uri)
225          in
226           (Cic.Cast (term, CicTypeChecker.type_of_aux' [] [] term))
227         in
228          try
229           let mml = !mml_of_cic_term_ref 111 expr in
230            mmlwidget#load_doc ~dom:mml
231          with
232           e ->
233            output_html outputhtml
234             ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
235        )
236    ) uris
237  in
238   ignore
239    (notebook#connect#switch_page
240      (function i -> Lazy.force (List.nth render_terms i)))
241 ;;
242
243 exception NoChoice;;
244
245 let
246  interactive_user_uri_choice ~(selection_mode:[`SINGLE|`EXTENDED]) ?(ok="Ok")
247   ?(enable_button_for_non_vars=false) ~title ~msg uris
248 =
249  let choices = ref [] in
250  let chosen = ref false in
251  let use_only_constants = ref false in
252  let window =
253   GWindow.dialog ~modal:true ~title ~width:600 () in
254  let lMessage =
255   GMisc.label ~text:msg
256    ~packing:(window#vbox#pack ~expand:false ~fill:false ~padding:5) () in
257  let scrolled_window =
258   GBin.scrolled_window ~border_width:10
259    ~packing:(window#vbox#pack ~expand:true ~fill:true ~padding:5) () in
260  let clist =
261   let expected_height = 18 * List.length uris in
262    let height = if expected_height > 400 then 400 else expected_height in
263     GList.clist ~columns:1 ~packing:scrolled_window#add
264      ~height ~selection_mode:(selection_mode :> Gtk.Tags.selection_mode) () in
265  let _ = List.map (function x -> clist#append [x]) uris in
266  let hbox2 =
267   GPack.hbox ~border_width:0
268    ~packing:(window#vbox#pack ~expand:false ~fill:false ~padding:5) () in
269  let explain_label =
270   GMisc.label ~text:"None of the above. Try this one:"
271    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
272  let manual_input =
273   GEdit.entry ~editable:true
274    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
275  let hbox =
276   GPack.hbox ~border_width:0 ~packing:window#action_area#add () in
277  let okb =
278   GButton.button ~label:ok
279    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
280  let _ = okb#misc#set_sensitive false in
281  let nonvarsb =
282   GButton.button
283    ~packing:
284     (function w ->
285       if enable_button_for_non_vars then
286        hbox#pack ~expand:false ~fill:false ~padding:5 w)
287    ~label:"Try constants only" () in
288  let checkb =
289   GButton.button ~label:"Check"
290    ~packing:(hbox#pack ~padding:5) () in
291  let _ = checkb#misc#set_sensitive false in
292  let cancelb =
293   GButton.button ~label:"Abort"
294    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
295  (* actions *)
296  let check_callback () =
297   assert (List.length !choices > 0) ;
298   check_window (outputhtml ()) !choices
299  in
300   ignore (window#connect#destroy GMain.Main.quit) ;
301   ignore (cancelb#connect#clicked window#destroy) ;
302   ignore
303    (okb#connect#clicked (function () -> chosen := true ; window#destroy ())) ;
304   ignore
305    (nonvarsb#connect#clicked
306      (function () ->
307        use_only_constants := true ;
308        chosen := true ;
309        window#destroy ()
310    )) ;
311   ignore (checkb#connect#clicked check_callback) ;
312   ignore
313    (clist#connect#select_row
314      (fun ~row ~column ~event ->
315        checkb#misc#set_sensitive true ;
316        okb#misc#set_sensitive true ;
317        choices := (List.nth uris row)::!choices)) ;
318   ignore
319    (clist#connect#unselect_row
320      (fun ~row ~column ~event ->
321        choices :=
322         List.filter (function uri -> uri != (List.nth uris row)) !choices)) ;
323   ignore
324    (manual_input#connect#changed
325      (fun _ ->
326        if manual_input#text = "" then
327         begin
328          choices := [] ;
329          checkb#misc#set_sensitive false ;
330          okb#misc#set_sensitive false ;
331          clist#misc#set_sensitive true
332         end
333        else
334         begin
335          choices := [manual_input#text] ;
336          clist#unselect_all () ;
337          checkb#misc#set_sensitive true ;
338          okb#misc#set_sensitive true ;
339          clist#misc#set_sensitive false
340         end));
341   window#set_position `CENTER ;
342   window#show () ;
343   GMain.Main.main () ;
344   if !chosen then
345    if !use_only_constants then
346     List.filter
347      (function uri -> not (String.sub uri (String.length uri - 4) 4 = ".var"))
348      uris
349    else
350     if List.length !choices > 0 then !choices else raise NoChoice
351   else
352    raise NoChoice
353 ;;
354
355 let interactive_interpretation_choice interpretations =
356  let chosen = ref None in
357  let window =
358   GWindow.window
359    ~modal:true ~title:"Ambiguous well-typed input." ~border_width:2 () in
360  let vbox = GPack.vbox ~packing:window#add () in
361  let lMessage =
362   GMisc.label
363    ~text:
364     ("Ambiguous input since there are many well-typed interpretations." ^
365      " Please, choose one of them.")
366    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
367  let notebook =
368   GPack.notebook ~scrollable:true
369    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
370  let _ =
371   List.map
372    (function interpretation ->
373      let clist =
374       let expected_height = 18 * List.length interpretation in
375        let height = if expected_height > 400 then 400 else expected_height in
376         GList.clist ~columns:2 ~packing:notebook#append_page ~height
377          ~titles:["id" ; "URI"] ()
378      in
379       ignore
380        (List.map
381          (function (id,uri) ->
382            let n = clist#append [id;uri] in
383             clist#set_row ~selectable:false n
384          ) interpretation
385        ) ;
386       clist#columns_autosize ()
387    ) interpretations in
388  let hbox =
389   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
390  let okb =
391   GButton.button ~label:"Ok"
392    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
393  let cancelb =
394   GButton.button ~label:"Abort"
395    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
396  (* actions *)
397  ignore (window#connect#destroy GMain.Main.quit) ;
398  ignore (cancelb#connect#clicked window#destroy) ;
399  ignore
400   (okb#connect#clicked
401     (function () -> chosen := Some notebook#current_page ; window#destroy ())) ;
402  window#set_position `CENTER ;
403  window#show () ;
404  GMain.Main.main () ;
405  match !chosen with
406     None -> raise NoChoice
407   | Some n -> n
408 ;;
409
410
411 (* MISC FUNCTIONS *)
412
413 (* CSC: IMPERATIVE AND NOT VERY CLEAN, TO GET THE LAST ISSUED QUERY *)
414 let get_last_query = 
415  let query = ref "" in
416   MQueryGenerator.set_confirm_query
417    (function q -> query := MQueryUtil.text_of_query q ; true) ;
418   function result -> !query ^ " <h1>Result:</h1> " ^ MQueryUtil.text_of_result result "<br>"
419 ;;
420
421 let domImpl = Gdome.domImplementation ();;
422
423 let parseStyle name =
424  let style =
425   domImpl#createDocumentFromURI
426 (*
427    ~uri:("http://phd.cs.unibo.it:8081/getxslt?uri=" ^ name) ?mode:None
428 *)
429    ~uri:("styles/" ^ name) ()
430  in
431   Gdome_xslt.processStylesheet style
432 ;;
433
434 let d_c = parseStyle "drop_coercions.xsl";;
435 let tc1 = parseStyle "objtheorycontent.xsl";;
436 let hc2 = parseStyle "content_to_html.xsl";;
437 let l   = parseStyle "link.xsl";;
438
439 let c1 = parseStyle "rootcontent.xsl";;
440 let g  = parseStyle "genmmlid.xsl";;
441 let c2 = parseStyle "annotatedpres.xsl";;
442
443
444 let getterURL = Configuration.getter_url;;
445 let processorURL = Configuration.processor_url;;
446
447 let mml_styles = [d_c ; c1 ; g ; c2 ; l];;
448 let mml_args ~explode_all =
449  ("explodeall",(if explode_all then "true()" else "false()"))::
450   ["processorURL", "'" ^ processorURL ^ "'" ;
451    "getterURL", "'" ^ getterURL ^ "'" ;
452    "draw_graphURL", "'http%3A//phd.cs.unibo.it%3A8083/'" ;
453    "uri_set_queueURL", "'http%3A//phd.cs.unibo.it%3A8084/'" ;
454    "UNICODEvsSYMBOL", "'symbol'" ;
455    "doctype-public", "'-//W3C//DTD%20XHTML%201.0%20Transitional//EN'" ;
456    "encoding", "'iso-8859-1'" ;
457    "media-type", "'text/html'" ;
458    "keys", "'d_c%2CC1%2CG%2CC2%2CL'" ;
459    "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
460    "naturalLanguage", "'yes'" ;
461    "annotations", "'no'" ;
462    "URLs_or_URIs", "'URIs'" ;
463    "topurl", "'http://phd.cs.unibo.it/helm'" ;
464    "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
465 ;;
466
467 let sequent_styles = [d_c ; c1 ; g ; c2 ; l];;
468 let sequent_args =
469  ["processorURL", "'" ^ processorURL ^ "'" ;
470   "getterURL", "'" ^ getterURL ^ "'" ;
471   "draw_graphURL", "'http%3A//phd.cs.unibo.it%3A8083/'" ;
472   "uri_set_queueURL", "'http%3A//phd.cs.unibo.it%3A8084/'" ;
473   "UNICODEvsSYMBOL", "'symbol'" ;
474   "doctype-public", "'-//W3C//DTD%20XHTML%201.0%20Transitional//EN'" ;
475   "encoding", "'iso-8859-1'" ;
476   "media-type", "'text/html'" ;
477   "keys", "'d_c%2CC1%2CG%2CC2%2CL'" ;
478   "interfaceURL", "'http%3A//phd.cs.unibo.it/helm/html/cic/index.html'" ;
479   "naturalLanguage", "'no'" ;
480   "annotations", "'no'" ;
481   "explodeall", "true()" ;
482   "URLs_or_URIs", "'URIs'" ;
483   "topurl", "'http://phd.cs.unibo.it/helm'" ;
484   "CICURI", "'cic:/Coq/Init/Datatypes/bool_ind.con'" ]
485 ;;
486
487 let parse_file filename =
488  let inch = open_in filename in
489   let rec read_lines () =
490    try
491     let line = input_line inch in
492      line ^ read_lines ()
493    with
494     End_of_file -> ""
495   in
496    read_lines ()
497 ;;
498
499 let applyStylesheets input styles args =
500  List.fold_left (fun i style -> Gdome_xslt.applyStylesheet i style args)
501   input styles
502 ;;
503
504 let
505  mml_of_cic_object ~explode_all uri annobj ids_to_inner_sorts ids_to_inner_types
506 =
507 (*CSC: ????????????????? *)
508  let xml, bodyxml =
509   Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:true
510    annobj 
511  in
512  let xmlinnertypes =
513   Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
514    ~ask_dtd_to_the_getter:true
515  in
516   let input =
517    match bodyxml with
518       None -> Xml2Gdome.document_of_xml domImpl xml
519     | Some bodyxml' ->
520        Xml.pp xml (Some constanttypefile) ;
521        Xml2Gdome.document_of_xml domImpl bodyxml'
522   in
523 (*CSC: We save the innertypes to disk so that we can retrieve them in the  *)
524 (*CSC: stylesheet. This DOES NOT work when UWOBO and/or the getter are not *)
525 (*CSC: local.                                                              *)
526    Xml.pp xmlinnertypes (Some innertypesfile) ;
527    let output = applyStylesheets input mml_styles (mml_args ~explode_all) in
528     output
529 ;;
530
531 let
532  save_object_to_disk uri annobj ids_to_inner_sorts ids_to_inner_types pathname
533 =
534  let name =
535   let struri = UriManager.string_of_uri uri in
536   let idx = (String.rindex struri '/') + 1 in
537    String.sub struri idx (String.length struri - idx)
538  in
539   let path = pathname ^ "/" ^ name in
540   let xml, bodyxml =
541    Cic2Xml.print_object uri ~ids_to_inner_sorts ~ask_dtd_to_the_getter:false
542     annobj 
543   in
544   let xmlinnertypes =
545    Cic2Xml.print_inner_types uri ~ids_to_inner_sorts ~ids_to_inner_types
546     ~ask_dtd_to_the_getter:false
547   in
548    (* innertypes *)
549    let innertypesuri = UriManager.innertypesuri_of_uri uri in
550     Xml.pp ~quiet:true xmlinnertypes (Some (path ^ ".types.xml")) ;
551     Getter.register innertypesuri
552      (Configuration.annotations_url ^
553        Str.replace_first (Str.regexp "^cic:") ""
554         (UriManager.string_of_uri innertypesuri) ^ ".xml"
555      ) ;
556     (* constant type / variable / mutual inductive types definition *)
557     Xml.pp ~quiet:true xml (Some (path ^ ".xml")) ;
558     Getter.register uri
559      (Configuration.annotations_url ^
560        Str.replace_first (Str.regexp "^cic:") ""
561         (UriManager.string_of_uri uri) ^ ".xml"
562      ) ;
563     match bodyxml with
564        None -> ()
565      | Some bodyxml' ->
566         (* constant body *)
567         let bodyuri =
568          match UriManager.bodyuri_of_uri uri with
569             None -> assert false
570           | Some bodyuri -> bodyuri
571         in
572          Xml.pp ~quiet:true bodyxml' (Some (path ^ ".body.xml")) ;
573          Getter.register bodyuri
574           (Configuration.annotations_url ^
575             Str.replace_first (Str.regexp "^cic:") ""
576              (UriManager.string_of_uri bodyuri) ^ ".xml"
577           )
578 ;;
579
580
581 (* CALLBACKS *)
582
583 exception RefreshSequentException of exn;;
584 exception RefreshProofException of exn;;
585
586 let refresh_proof (output : GMathViewAux.single_selection_math_view) =
587  try
588   let uri,currentproof =
589    match !ProofEngine.proof with
590       None -> assert false
591     | Some (uri,metasenv,bo,ty) ->
592        !qed_set_sensitive (List.length metasenv = 0) ;
593        (*CSC: Wrong: [] is just plainly wrong *)
594        uri,(Cic.CurrentProof (UriManager.name_of_uri uri, metasenv, bo, ty, []))
595   in
596    let
597     (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
598      ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
599    =
600     Cic2acic.acic_object_of_cic_object currentproof
601    in
602     let mml =
603      mml_of_cic_object ~explode_all:true uri acic ids_to_inner_sorts
604       ids_to_inner_types
605     in
606      output#load_doc ~dom:mml ;
607      current_cic_infos :=
608       Some (ids_to_terms,ids_to_father_ids,ids_to_conjectures,ids_to_hypotheses)
609  with
610   e ->
611  match !ProofEngine.proof with
612     None -> assert false
613   | Some (uri,metasenv,bo,ty) ->
614 prerr_endline ("Offending proof: " ^ CicPp.ppobj (Cic.CurrentProof ("questa",metasenv,bo,ty,[]))) ; flush stderr ;
615    raise (RefreshProofException e)
616 ;;
617
618 let refresh_sequent ?(empty_notebook=true) notebook =
619  try
620   match !ProofEngine.goal with
621      None ->
622       if empty_notebook then
623        begin 
624         notebook#remove_all_pages ~skip_switch_page_event:false ;
625         notebook#set_empty_page
626        end
627       else
628        notebook#proofw#unload
629    | Some metano ->
630       let metasenv =
631        match !ProofEngine.proof with
632           None -> assert false
633         | Some (_,metasenv,_,_) -> metasenv
634       in
635       let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
636        let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
637         SequentPp.XmlPp.print_sequent metasenv currentsequent
638        in
639         let regenerate_notebook () = 
640          let skip_switch_page_event =
641           match metasenv with
642              (m,_,_)::_ when m = metano -> false
643            | _ -> true
644          in
645           notebook#remove_all_pages ~skip_switch_page_event ;
646           List.iter (function (m,_,_) -> notebook#add_page m) metasenv ;
647         in
648           if empty_notebook then
649            begin
650             regenerate_notebook () ;
651             notebook#set_current_page ~may_skip_switch_page_event:false metano
652            end
653           else
654            begin
655             let sequent_doc = Xml2Gdome.document_of_xml domImpl sequent_gdome in
656             let sequent_mml =
657              applyStylesheets sequent_doc sequent_styles sequent_args
658             in
659              notebook#set_current_page ~may_skip_switch_page_event:true metano;
660              notebook#proofw#load_doc ~dom:sequent_mml
661            end ;
662           current_goal_infos :=
663            Some (ids_to_terms,ids_to_father_ids,ids_to_hypotheses)
664  with
665   e ->
666 let metano =
667   match !ProofEngine.goal with
668      None -> assert false
669    | Some m -> m
670 in
671 let metasenv =
672  match !ProofEngine.proof with
673     None -> assert false
674   | Some (_,metasenv,_,_) -> metasenv
675 in
676 try
677 let currentsequent = List.find (function (m,_,_) -> m=metano) metasenv in
678 prerr_endline ("Offending sequent: " ^ SequentPp.TextualPp.print_sequent currentsequent) ; flush stderr ;
679    raise (RefreshSequentException e)
680 with Not_found -> prerr_endline ("Offending sequent " ^ string_of_int metano ^ " unkown."); raise (RefreshSequentException e)
681 ;;
682
683 (*
684 ignore(domImpl#saveDocumentToFile ~doc:sequent_doc
685  ~name:"/home/galata/miohelm/guruguru1" ~indent:true ()) ;
686 *)
687
688 let mml_of_cic_term metano term =
689  let metasenv =
690   match !ProofEngine.proof with
691      None -> []
692    | Some (_,metasenv,_,_) -> metasenv
693  in
694  let context =
695   match !ProofEngine.goal with
696      None -> []
697    | Some metano ->
698       let (_,canonical_context,_) =
699        List.find (function (m,_,_) -> m=metano) metasenv
700       in
701        canonical_context
702  in
703    let sequent_gdome,ids_to_terms,ids_to_father_ids,ids_to_hypotheses =
704     SequentPp.XmlPp.print_sequent metasenv (metano,context,term)
705    in
706     let sequent_doc =
707      Xml2Gdome.document_of_xml domImpl sequent_gdome
708     in
709      let res =
710       applyStylesheets sequent_doc sequent_styles sequent_args ;
711      in
712       current_scratch_infos :=
713        Some (term,ids_to_terms,ids_to_father_ids,ids_to_hypotheses) ;
714       res
715 ;;
716
717 exception OpenConjecturesStillThere;;
718 exception WrongProof;;
719
720 let pathname_of_annuri uristring =
721  Configuration.annotations_dir ^    
722   Str.replace_first (Str.regexp "^cic:") "" uristring
723 ;;
724
725 let make_dirs dirpath =
726  ignore (Unix.system ("mkdir -p " ^ dirpath))
727 ;;
728
729 let save_obj uri obj =
730  let
731   (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
732    ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
733  =
734   Cic2acic.acic_object_of_cic_object obj
735  in
736   (* let's save the theorem and register it to the getter *) 
737   let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
738    make_dirs pathname ;
739    save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
740     pathname
741 ;;
742
743 let qed () =
744  match !ProofEngine.proof with
745     None -> assert false
746   | Some (uri,[],bo,ty) ->
747      if
748       CicReduction.are_convertible []
749        (CicTypeChecker.type_of_aux' [] [] bo) ty
750      then
751       begin
752        (*CSC: Wrong: [] is just plainly wrong *)
753        let proof = Cic.Constant (UriManager.name_of_uri uri,Some bo,ty,[]) in
754         let
755          (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
756           ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
757         =
758          Cic2acic.acic_object_of_cic_object proof
759         in
760          let mml =
761           mml_of_cic_object ~explode_all:false uri acic ids_to_inner_sorts
762            ids_to_inner_types
763          in
764           ((rendering_window ())#output : GMathViewAux.single_selection_math_view)#load_doc mml ;
765           !qed_set_sensitive false ;
766           (* let's save the theorem and register it to the getter *) 
767           let pathname = pathname_of_annuri (UriManager.buri_of_uri uri) in
768           make_dirs pathname ;
769           save_object_to_disk uri acic ids_to_inner_sorts ids_to_inner_types
770            pathname ;
771           current_cic_infos :=
772            Some
773             (ids_to_terms,ids_to_father_ids,ids_to_conjectures,
774              ids_to_hypotheses)
775       end
776      else
777       raise WrongProof
778   | _ -> raise OpenConjecturesStillThere
779 ;;
780
781 let save () =
782  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
783   match !ProofEngine.proof with
784      None -> assert false
785    | Some (uri, metasenv, bo, ty) ->
786       let currentproof =
787        (*CSC: Wrong: [] is just plainly wrong *)
788        Cic.CurrentProof (UriManager.name_of_uri uri,metasenv,bo,ty,[])
789       in
790        let (acurrentproof,_,_,ids_to_inner_sorts,_,_,_) =
791         Cic2acic.acic_object_of_cic_object currentproof
792        in
793         let xml, bodyxml =
794          match
795           Cic2Xml.print_object uri ~ids_to_inner_sorts
796            ~ask_dtd_to_the_getter:true acurrentproof
797          with
798             xml,Some bodyxml -> xml,bodyxml
799           | _,None -> assert false
800         in
801          Xml.pp ~quiet:true xml (Some prooffiletype) ;
802          output_html outputhtml
803           ("<h1 color=\"Green\">Current proof type saved to " ^
804            prooffiletype ^ "</h1>") ;
805          Xml.pp ~quiet:true bodyxml (Some prooffile) ;
806          output_html outputhtml
807           ("<h1 color=\"Green\">Current proof body saved to " ^
808            prooffile ^ "</h1>")
809 ;;
810
811 (* Used to typecheck the loaded proofs *)
812 let typecheck_loaded_proof metasenv bo ty =
813  let module T = CicTypeChecker in
814   ignore (
815    List.fold_left
816     (fun metasenv ((_,context,ty) as conj) ->
817       ignore (T.type_of_aux' metasenv context ty) ;
818       metasenv @ [conj]
819     ) [] metasenv) ;
820   ignore (T.type_of_aux' metasenv [] ty) ;
821   ignore (T.type_of_aux' metasenv [] bo)
822 ;;
823
824 let load () =
825  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
826  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
827  let notebook = (rendering_window ())#notebook in
828   try
829    match 
830     GToolbox.input_string ~title:"Load Unfinished Proof" ~text:"/dummy.con"
831      "Choose an URI:"
832    with
833       None -> raise NoChoice
834     | Some uri0 ->
835        let uri = UriManager.uri_of_string ("cic:" ^ uri0) in
836         match CicParser.obj_of_xml prooffiletype (Some prooffile) with
837            Cic.CurrentProof (_,metasenv,bo,ty,_) ->
838             typecheck_loaded_proof metasenv bo ty ;
839             ProofEngine.proof :=
840              Some (uri, metasenv, bo, ty) ;
841             ProofEngine.goal :=
842              (match metasenv with
843                  [] -> None
844                | (metano,_,_)::_ -> Some metano
845              ) ;
846             refresh_proof output ;
847             refresh_sequent notebook ;
848              output_html outputhtml
849               ("<h1 color=\"Green\">Current proof type loaded from " ^
850                 prooffiletype ^ "</h1>") ;
851              output_html outputhtml
852               ("<h1 color=\"Green\">Current proof body loaded from " ^
853                 prooffile ^ "</h1>") ;
854             !save_set_sensitive true
855          | _ -> assert false
856   with
857      RefreshSequentException e ->
858       output_html outputhtml
859        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
860         "sequent: " ^ Printexc.to_string e ^ "</h1>")
861    | RefreshProofException e ->
862       output_html outputhtml
863        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
864         "proof: " ^ Printexc.to_string e ^ "</h1>")
865    | e ->
866       output_html outputhtml
867        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
868 ;;
869
870 let edit_aliases () =
871  let chosen = ref false in
872  let window =
873   GWindow.window
874    ~width:400 ~modal:true ~title:"Edit Aliases..." ~border_width:2 () in
875  let vbox =
876   GPack.vbox ~border_width:0 ~packing:window#add () in
877  let scrolled_window =
878   GBin.scrolled_window ~border_width:10
879    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
880  let input = GEdit.text ~editable:true ~width:400 ~height:100
881    ~packing:scrolled_window#add () in
882  let hbox =
883   GPack.hbox ~border_width:0
884    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
885  let okb =
886   GButton.button ~label:"Ok"
887    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
888  let cancelb =
889   GButton.button ~label:"Cancel"
890    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
891  ignore (window#connect#destroy GMain.Main.quit) ;
892  ignore (cancelb#connect#clicked window#destroy) ;
893  ignore
894   (okb#connect#clicked (function () -> chosen := true ; window#destroy ())) ;
895  let dom,resolve_id = !id_to_uris in
896   ignore
897    (input#insert_text ~pos:0
898     (String.concat "\n"
899       (List.map
900         (function v ->
901           let uri =
902            match resolve_id v with
903               None -> assert false
904             | Some uri -> uri
905           in
906            "alias " ^ v ^ " " ^
907              (string_of_cic_textual_parser_uri uri)
908         ) dom))) ;
909   window#show () ;
910   GMain.Main.main () ;
911   if !chosen then
912    let dom,resolve_id =
913     let inputtext = input#get_chars 0 input#length in
914     let regexpr =
915      let alfa = "[a-zA-Z_-]" in
916      let digit = "[0-9]" in
917      let ident = alfa ^ "\(" ^ alfa ^ "\|" ^ digit ^ "\)*" in
918      let blanks = "\( \|\t\|\n\)+" in
919      let nonblanks = "[^ \t\n]+" in
920      let uri = "/\(" ^ ident ^ "/\)*" ^ nonblanks in (* not very strict check *)
921       Str.regexp
922        ("alias" ^ blanks ^ "\(" ^ ident ^ "\)" ^ blanks ^ "\(" ^ uri ^ "\)")
923     in
924      let rec aux n =
925       try
926        let n' = Str.search_forward regexpr inputtext n in
927         let id = Str.matched_group 2 inputtext in
928         let uri =
929          Disambiguate.cic_textual_parser_uri_of_string
930           ("cic:" ^ (Str.matched_group 5 inputtext))
931         in
932          let dom,resolve_id = aux (n' + 1) in
933           if List.mem id dom then
934            dom,resolve_id
935           else
936            id::dom,
937             (function id' -> if id = id' then Some uri else resolve_id id')
938       with
939        Not_found -> empty_id_to_uris
940      in
941       aux 0
942    in
943     id_to_uris := dom,resolve_id
944 ;;
945
946 let proveit () =
947  let module L = LogicalOperations in
948  let module G = Gdome in
949  let notebook = (rendering_window ())#notebook in
950  let output = (rendering_window ())#output in
951  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
952   match (rendering_window ())#output#get_selection with
953     Some node ->
954      let xpath =
955       ((node : Gdome.element)#getAttributeNS
956       (*CSC: OCAML DIVERGE
957       ((element : G.element)#getAttributeNS
958       *)
959         ~namespaceURI:helmns
960         ~localName:(G.domString "xref"))#to_string
961      in
962       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
963       else
964        begin
965         try
966          match !current_cic_infos with
967             Some (ids_to_terms, ids_to_father_ids, _, _) ->
968              let id = xpath in
969               L.to_sequent id ids_to_terms ids_to_father_ids ;
970               refresh_proof output ;
971               refresh_sequent notebook
972           | None -> assert false (* "ERROR: No current term!!!" *)
973         with
974            RefreshSequentException e ->
975             output_html outputhtml
976              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
977               "sequent: " ^ Printexc.to_string e ^ "</h1>")
978          | RefreshProofException e ->
979             output_html outputhtml
980              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
981               "proof: " ^ Printexc.to_string e ^ "</h1>")
982          | e ->
983             output_html outputhtml
984              ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
985        end
986   | None -> assert false (* "ERROR: No selection!!!" *)
987 ;;
988
989 let focus () =
990  let module L = LogicalOperations in
991  let module G = Gdome in
992  let notebook = (rendering_window ())#notebook in
993  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
994   match (rendering_window ())#output#get_selection with
995     Some node ->
996      let xpath =
997       ((node : Gdome.element)#getAttributeNS
998       (*CSC: OCAML DIVERGE
999       ((element : G.element)#getAttributeNS
1000       *)
1001         ~namespaceURI:helmns
1002         ~localName:(G.domString "xref"))#to_string
1003      in
1004       if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
1005       else
1006        begin
1007         try
1008          match !current_cic_infos with
1009             Some (ids_to_terms, ids_to_father_ids, _, _) ->
1010              let id = xpath in
1011               L.focus id ids_to_terms ids_to_father_ids ;
1012               refresh_sequent notebook
1013           | None -> assert false (* "ERROR: No current term!!!" *)
1014         with
1015            RefreshSequentException e ->
1016             output_html outputhtml
1017              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1018               "sequent: " ^ Printexc.to_string e ^ "</h1>")
1019          | RefreshProofException e ->
1020             output_html outputhtml
1021              ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1022               "proof: " ^ Printexc.to_string e ^ "</h1>")
1023          | e ->
1024             output_html outputhtml
1025              ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
1026        end
1027   | None -> assert false (* "ERROR: No selection!!!" *)
1028 ;;
1029
1030 exception NoPrevGoal;;
1031 exception NoNextGoal;;
1032
1033 let setgoal metano =
1034  let module L = LogicalOperations in
1035  let module G = Gdome in
1036  let notebook = (rendering_window ())#notebook in
1037  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1038   let metasenv =
1039    match !ProofEngine.proof with
1040       None -> assert false
1041     | Some (_,metasenv,_,_) -> metasenv
1042   in
1043    try
1044     refresh_sequent ~empty_notebook:false notebook
1045    with
1046       RefreshSequentException e ->
1047        output_html outputhtml
1048         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1049          "sequent: " ^ Printexc.to_string e ^ "</h1>")
1050     | e ->
1051        output_html outputhtml
1052         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
1053 ;;
1054
1055 let
1056  show_in_show_window_obj, show_in_show_window_uri, show_in_show_window_callback
1057 =
1058  let window =
1059   GWindow.window ~width:800 ~border_width:2 () in
1060  let scrolled_window =
1061   GBin.scrolled_window ~border_width:10 ~packing:window#add () in
1062  let mmlwidget =
1063   GMathViewAux.single_selection_math_view ~packing:scrolled_window#add ~width:600 ~height:400 () in
1064  let _ = window#event#connect#delete (fun _ -> window#misc#hide () ; true ) in
1065  let href = Gdome.domString "href" in
1066   let show_in_show_window_obj uri obj =
1067    let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1068     try
1069      let
1070       (acic,ids_to_terms,ids_to_father_ids,ids_to_inner_sorts,
1071        ids_to_inner_types,ids_to_conjectures,ids_to_hypotheses)
1072      =
1073       Cic2acic.acic_object_of_cic_object obj
1074      in
1075       let mml =
1076        mml_of_cic_object ~explode_all:false uri acic ids_to_inner_sorts
1077         ids_to_inner_types
1078       in
1079        window#set_title (UriManager.string_of_uri uri) ;
1080        window#misc#hide () ; window#show () ;
1081        mmlwidget#load_doc mml ;
1082     with
1083      e ->
1084       output_html outputhtml
1085        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1086   in
1087   let show_in_show_window_uri uri =
1088    let obj = CicEnvironment.get_obj uri in
1089     show_in_show_window_obj uri obj
1090   in
1091    let show_in_show_window_callback mmlwidget (n : Gdome.element) _ =
1092     if n#hasAttributeNS ~namespaceURI:xlinkns ~localName:href then
1093      let uri =
1094       (n#getAttributeNS ~namespaceURI:xlinkns ~localName:href)#to_string
1095      in 
1096       show_in_show_window_uri (UriManager.uri_of_string uri)
1097     else
1098      ignore (mmlwidget#action_toggle n)
1099    in
1100     let _ =
1101      mmlwidget#connect#click (show_in_show_window_callback mmlwidget)
1102     in
1103      show_in_show_window_obj, show_in_show_window_uri,
1104       show_in_show_window_callback
1105 ;;
1106
1107 exception NoObjectsLocated;;
1108
1109 let user_uri_choice ~title ~msg uris =
1110  let uri =
1111   match uris with
1112      [] -> raise NoObjectsLocated
1113    | [uri] -> uri
1114    | uris ->
1115       match
1116        interactive_user_uri_choice ~selection_mode:`SINGLE ~title ~msg uris
1117       with
1118          [uri] -> uri
1119        | _ -> assert false
1120  in
1121   String.sub uri 4 (String.length uri - 4)
1122 ;;
1123
1124 let locate_callback id =
1125  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1126  let result = MQueryGenerator.locate id in
1127  let uris =
1128   List.map
1129    (function uri,_ ->
1130      Disambiguate.wrong_xpointer_format_from_wrong_xpointer_format' uri)
1131    result in
1132  let html =
1133   (" <h1>Locate Query: </h1><pre>" ^ get_last_query result ^ "</pre>")
1134  in
1135   output_html outputhtml html ;
1136   user_uri_choice ~title:"Ambiguous input."
1137    ~msg:
1138      ("Ambiguous input \"" ^ id ^
1139       "\". Please, choose one interpetation:")
1140    uris
1141 ;;
1142
1143
1144 let input_or_locate_uri ~title =
1145  let uri = ref None in
1146  let window =
1147   GWindow.window
1148    ~width:400 ~modal:true ~title ~border_width:2 () in
1149  let vbox = GPack.vbox ~packing:window#add () in
1150  let hbox1 =
1151   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1152  let _ =
1153   GMisc.label ~text:"Enter a valid URI:" ~packing:(hbox1#pack ~padding:5) () in
1154  let manual_input =
1155   GEdit.entry ~editable:true
1156    ~packing:(hbox1#pack ~expand:true ~fill:true ~padding:5) () in
1157  let checkb =
1158   GButton.button ~label:"Check"
1159    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1160  let _ = checkb#misc#set_sensitive false in
1161  let hbox2 =
1162   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1163  let _ =
1164   GMisc.label ~text:"You can also enter an indentifier to locate:"
1165    ~packing:(hbox2#pack ~padding:5) () in
1166  let locate_input =
1167   GEdit.entry ~editable:true
1168    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
1169  let locateb =
1170   GButton.button ~label:"Locate"
1171    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1172  let _ = locateb#misc#set_sensitive false in
1173  let hbox3 =
1174   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1175  let okb =
1176   GButton.button ~label:"Ok"
1177    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
1178  let _ = okb#misc#set_sensitive false in
1179  let cancelb =
1180   GButton.button ~label:"Cancel"
1181    ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) ()
1182  in
1183   ignore (window#connect#destroy GMain.Main.quit) ;
1184   ignore
1185    (cancelb#connect#clicked (function () -> uri := None ; window#destroy ())) ;
1186   let check_callback () =
1187    let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1188    let uri = "cic:" ^ manual_input#text in
1189     try
1190       ignore (Getter.resolve (UriManager.uri_of_string uri)) ;
1191       output_html outputhtml "<h1 color=\"Green\">OK</h1>" ;
1192       true
1193     with
1194        Getter.Unresolved ->
1195         output_html outputhtml
1196          ("<h1 color=\"Red\">URI " ^ uri ^
1197           " does not correspond to any object.</h1>") ;
1198         false
1199      | UriManager.IllFormedUri _ ->
1200         output_html outputhtml
1201          ("<h1 color=\"Red\">URI " ^ uri ^ " is not well-formed.</h1>") ;
1202         false
1203      | e ->
1204         output_html outputhtml
1205          ("<h1 color=\"Red\">" ^ Printexc.to_string e ^ "</h1>") ;
1206         false
1207   in
1208   ignore
1209    (okb#connect#clicked
1210      (function () ->
1211        if check_callback () then
1212         begin
1213          uri := Some manual_input#text ;
1214          window#destroy ()
1215         end
1216    )) ;
1217   ignore (checkb#connect#clicked (function () -> ignore (check_callback ()))) ;
1218   ignore
1219    (manual_input#connect#changed
1220      (fun _ ->
1221        if manual_input#text = "" then
1222         begin
1223          checkb#misc#set_sensitive false ;
1224          okb#misc#set_sensitive false
1225         end
1226        else
1227         begin
1228          checkb#misc#set_sensitive true ;
1229          okb#misc#set_sensitive true
1230         end));
1231   ignore
1232    (locate_input#connect#changed
1233      (fun _ -> locateb#misc#set_sensitive (locate_input#text <> ""))) ;
1234   ignore
1235    (locateb#connect#clicked
1236      (function () ->
1237        let id = locate_input#text in
1238         manual_input#set_text (locate_callback id) ;
1239         locate_input#delete_text 0 (String.length id)
1240    )) ;
1241   window#show () ;
1242   GMain.Main.main () ;
1243   match !uri with
1244      None -> raise NoChoice
1245    | Some uri -> UriManager.uri_of_string ("cic:" ^ uri)
1246 ;;
1247
1248 exception AmbiguousInput;;
1249
1250 (* A WIDGET TO ENTER CIC TERMS *)
1251
1252 module Callbacks =
1253  struct
1254   let output_html msg = output_html (outputhtml ()) msg;;
1255   let interactive_user_uri_choice =
1256    fun ~selection_mode ?ok ?enable_button_for_non_vars ~title ~msg ~id ->
1257     interactive_user_uri_choice ~selection_mode ?ok
1258      ?enable_button_for_non_vars ~title ~msg;;
1259   let interactive_interpretation_choice = interactive_interpretation_choice;;
1260   let input_or_locate_uri = input_or_locate_uri;;
1261  end
1262 ;;
1263
1264 module Disambiguate' = Disambiguate.Make(Callbacks);;
1265
1266 class term_editor ?packing ?width ?height ?isnotempty_callback () =
1267  let input = GEdit.text ~editable:true ?width ?height ?packing () in
1268  let _ =
1269   match isnotempty_callback with
1270      None -> ()
1271    | Some callback ->
1272       ignore(input#connect#changed (function () -> callback (input#length > 0)))
1273  in
1274 object(self)
1275  method coerce = input#coerce
1276  method reset =
1277   input#delete_text 0 input#length
1278  (* CSC: txt is now a string, but should be of type Cic.term *)
1279  method set_term txt =
1280   self#reset ;
1281   ignore ((input#insert_text txt) ~pos:0)
1282  (* CSC: this method should disappear *)
1283  method get_as_string =
1284   input#get_chars 0 input#length
1285  method get_metasenv_and_term ~context ~metasenv =
1286   let name_context =
1287    List.map
1288     (function
1289         Some (n,_) -> Some n
1290       | None -> None
1291     ) context
1292   in
1293    let lexbuf = Lexing.from_string (input#get_chars 0 input#length) in
1294     let dom,mk_metasenv_and_expr =
1295      CicTextualParserContext.main
1296       ~context:name_context ~metasenv CicTextualLexer.token lexbuf
1297     in
1298      let id_to_uris',metasenv,expr =
1299       Disambiguate'.disambiguate_input context metasenv dom mk_metasenv_and_expr
1300        ~id_to_uris:!id_to_uris
1301      in
1302       id_to_uris := id_to_uris' ;
1303       metasenv,expr
1304 end
1305 ;;
1306
1307 (* OTHER FUNCTIONS *)
1308
1309 let locate () =
1310  let inputt = ((rendering_window ())#inputt : term_editor) in
1311  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1312    try
1313     match
1314      GToolbox.input_string ~title:"Locate" "Enter an identifier to locate:"
1315     with
1316        None -> raise NoChoice
1317      | Some input ->
1318         let uri = locate_callback input in
1319          inputt#set_term uri
1320    with
1321     e ->
1322      output_html outputhtml
1323       ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
1324 ;;
1325
1326
1327 exception UriAlreadyInUse;;
1328 exception NotAUriToAConstant;;
1329
1330 let new_inductive () =
1331  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1332  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1333  let notebook = (rendering_window ())#notebook in
1334
1335  let chosen = ref false in
1336  let inductive = ref true in
1337  let paramsno = ref 0 in
1338  let get_uri = ref (function _ -> assert false) in
1339  let get_base_uri = ref (function _ -> assert false) in
1340  let get_names = ref (function _ -> assert false) in
1341  let get_types_and_cons = ref (function _ -> assert false) in
1342  let get_context_and_subst = ref (function _ -> assert false) in 
1343  let window =
1344   GWindow.window
1345    ~width:600 ~modal:true ~position:`CENTER
1346    ~title:"New Block of Mutual (Co)Inductive Definitions"
1347    ~border_width:2 () in
1348  let vbox = GPack.vbox ~packing:window#add () in
1349  let hbox =
1350   GPack.hbox ~border_width:0
1351    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1352  let _ =
1353   GMisc.label ~text:"Enter the URI for the new block:"
1354    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1355  let uri_entry =
1356   GEdit.entry ~editable:true
1357    ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1358  let hbox0 =
1359   GPack.hbox ~border_width:0
1360    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1361  let _ =
1362   GMisc.label
1363    ~text:
1364      "Enter the number of left parameters in every arity and constructor type:"
1365    ~packing:(hbox0#pack ~expand:false ~fill:false ~padding:5) () in
1366  let paramsno_entry =
1367   GEdit.entry ~editable:true ~text:"0"
1368    ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
1369  let hbox1 =
1370   GPack.hbox ~border_width:0
1371    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1372  let _ =
1373   GMisc.label ~text:"Are the definitions inductive or coinductive?"
1374    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1375  let inductiveb =
1376   GButton.radio_button ~label:"Inductive"
1377    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1378  let coinductiveb =
1379   GButton.radio_button ~label:"Coinductive"
1380    ~group:inductiveb#group
1381    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1382  let hbox2 =
1383   GPack.hbox ~border_width:0
1384    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1385  let _ =
1386   GMisc.label ~text:"Enter the list of the names of the types:"
1387    ~packing:(hbox2#pack ~expand:false ~fill:false ~padding:5) () in
1388  let names_entry =
1389   GEdit.entry ~editable:true
1390    ~packing:(hbox2#pack ~expand:true ~fill:true ~padding:5) () in
1391  let hboxn =
1392   GPack.hbox ~border_width:0
1393    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1394  let okb =
1395   GButton.button ~label:"> Next"
1396    ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1397  let _ = okb#misc#set_sensitive true in
1398  let cancelb =
1399   GButton.button ~label:"Abort"
1400    ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1401  ignore (window#connect#destroy GMain.Main.quit) ;
1402  ignore (cancelb#connect#clicked window#destroy) ;
1403  (* First phase *)
1404  let rec phase1 () =
1405   ignore
1406    (okb#connect#clicked
1407      (function () ->
1408        try
1409         let uristr = "cic:" ^ uri_entry#text in
1410         let namesstr = names_entry#text in
1411         let paramsno' = int_of_string (paramsno_entry#text) in
1412          match Str.split (Str.regexp " +") namesstr with
1413             [] -> assert false
1414           | (he::tl) as names ->
1415              let uri = UriManager.uri_of_string (uristr ^ "/" ^ he ^ ".ind") in
1416               begin
1417                try
1418                 ignore (Getter.resolve uri) ;
1419                 raise UriAlreadyInUse
1420                with
1421                 Getter.Unresolved ->
1422                  get_uri := (function () -> uri) ; 
1423                  get_names := (function () -> names) ;
1424                  inductive := inductiveb#active ;
1425                  paramsno := paramsno' ;
1426                  phase2 ()
1427               end
1428        with
1429         e ->
1430          output_html outputhtml
1431           ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1432      ))
1433  (* Second phase *)
1434  and phase2 () =
1435   let type_widgets =
1436    List.map
1437     (function name ->
1438       let frame =
1439        GBin.frame ~label:name
1440         ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
1441       let vbox = GPack.vbox ~packing:frame#add () in
1442       let hbox = GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false) () in
1443       let _ =
1444        GMisc.label ~text:("Enter its type:")
1445         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1446       let scrolled_window =
1447        GBin.scrolled_window ~border_width:5
1448         ~packing:(vbox#pack ~expand:true ~padding:0) () in
1449       let newinputt =
1450        new term_editor ~width:400 ~height:20 ~packing:scrolled_window#add ()
1451         ~isnotempty_callback:
1452          (function b ->
1453            (*non_empty_type := b ;*)
1454            okb#misc#set_sensitive true) (*(b && uri_entry#text <> ""))*)
1455       in
1456       let hbox =
1457        GPack.hbox ~border_width:0
1458         ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1459       let _ =
1460        GMisc.label ~text:("Enter the list of its constructors:")
1461         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1462       let cons_names_entry =
1463        GEdit.entry ~editable:true
1464         ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1465       (newinputt,cons_names_entry)
1466     ) (!get_names ())
1467   in
1468    vbox#remove hboxn#coerce ;
1469    let hboxn =
1470     GPack.hbox ~border_width:0
1471      ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1472    let okb =
1473     GButton.button ~label:"> Next"
1474      ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1475    let cancelb =
1476     GButton.button ~label:"Abort"
1477      ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1478    ignore (cancelb#connect#clicked window#destroy) ;
1479    ignore
1480     (okb#connect#clicked
1481       (function () ->
1482         try
1483          let names = !get_names () in
1484          let types_and_cons =
1485           List.map2
1486            (fun name (newinputt,cons_names_entry) ->
1487              let consnamesstr = cons_names_entry#text in
1488              let cons_names = Str.split (Str.regexp " +") consnamesstr in
1489              let metasenv,expr =
1490               newinputt#get_metasenv_and_term ~context:[] ~metasenv:[]
1491              in
1492               match metasenv with
1493                  [] -> expr,cons_names
1494                | _ -> raise AmbiguousInput
1495            ) names type_widgets
1496          in
1497           let uri = !get_uri () in
1498           let _ =
1499            (* Let's see if so far the definition is well-typed *)
1500            let params = [] in
1501            let paramsno = 0 in
1502            (* To test if the arities of the inductive types are well *)
1503            (* typed, we check the inductive block definition where   *)
1504            (* no constructor is given to each type.                  *)
1505            let tys =
1506             List.map2
1507              (fun name (ty,cons) -> (name, !inductive, ty, []))
1508              names types_and_cons
1509            in
1510             CicTypeChecker.typecheck_mutual_inductive_defs uri
1511              (tys,params,paramsno)
1512           in
1513            get_context_and_subst :=
1514             (function () ->
1515               let i = ref 0 in
1516                List.fold_left2
1517                 (fun (context,subst) name (ty,_) ->
1518                   let res =
1519                    (Some (Cic.Name name, Cic.Decl ty))::context,
1520                     (Cic.MutInd (uri,!i,[]))::subst
1521                   in
1522                    incr i ; res
1523                 ) ([],[]) names types_and_cons) ;
1524            let types_and_cons' =
1525             List.map2
1526              (fun name (ty,cons) -> (name, !inductive, ty, phase3 name cons))
1527              names types_and_cons
1528            in
1529             get_types_and_cons := (function () -> types_and_cons') ;
1530             chosen := true ;
1531             window#destroy ()
1532         with
1533          e ->
1534           output_html outputhtml
1535            ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1536       ))
1537  (* Third phase *)
1538  and phase3 name cons =
1539   let get_cons_types = ref (function () -> assert false) in
1540   let window2 =
1541    GWindow.window
1542     ~width:600 ~modal:true ~position:`CENTER
1543     ~title:(name ^ " Constructors")
1544     ~border_width:2 () in
1545   let vbox = GPack.vbox ~packing:window2#add () in
1546   let cons_type_widgets =
1547    List.map
1548     (function consname ->
1549       let hbox =
1550        GPack.hbox ~border_width:0
1551         ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1552       let _ =
1553        GMisc.label ~text:("Enter the type of " ^ consname ^ ":")
1554         ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1555       let scrolled_window =
1556        GBin.scrolled_window ~border_width:5
1557         ~packing:(vbox#pack ~expand:true ~padding:0) () in
1558       let newinputt =
1559        new term_editor ~width:400 ~height:20 ~packing:scrolled_window#add ()
1560         ~isnotempty_callback:
1561          (function b ->
1562            (* (*non_empty_type := b ;*)
1563            okb#misc#set_sensitive true) (*(b && uri_entry#text <> ""))*) *)())
1564       in
1565        newinputt
1566     ) cons in
1567   let hboxn =
1568    GPack.hbox ~border_width:0
1569     ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1570   let okb =
1571    GButton.button ~label:"> Next"
1572     ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1573   let _ = okb#misc#set_sensitive true in
1574   let cancelb =
1575    GButton.button ~label:"Abort"
1576     ~packing:(hboxn#pack ~expand:false ~fill:false ~padding:5) () in
1577   ignore (window2#connect#destroy GMain.Main.quit) ;
1578   ignore (cancelb#connect#clicked window2#destroy) ;
1579   ignore
1580    (okb#connect#clicked
1581      (function () ->
1582        try
1583         chosen := true ;
1584         let context,subst= !get_context_and_subst () in
1585         let cons_types =
1586          List.map2
1587           (fun name inputt ->
1588             let metasenv,expr =
1589              inputt#get_metasenv_and_term ~context ~metasenv:[]
1590             in
1591              match metasenv with
1592                 [] ->
1593                  let undebrujined_expr =
1594                   List.fold_left
1595                    (fun expr t -> CicSubstitution.subst t expr) expr subst
1596                  in
1597                   name, undebrujined_expr
1598               | _ -> raise AmbiguousInput
1599           ) cons cons_type_widgets
1600         in
1601          get_cons_types := (function () -> cons_types) ;
1602          window2#destroy ()
1603        with
1604         e ->
1605          output_html outputhtml
1606           ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1607      )) ;
1608   window2#show () ;
1609   GMain.Main.main () ;
1610   let okb_pressed = !chosen in
1611    chosen := false ;
1612    if (not okb_pressed) then
1613     begin
1614      window#destroy () ;
1615      assert false (* The control never reaches this point *)
1616     end
1617    else
1618     (!get_cons_types ())
1619  in
1620   phase1 () ;
1621   (* No more phases left or Abort pressed *) 
1622   window#show () ;
1623   GMain.Main.main () ;
1624   window#destroy () ;
1625   if !chosen then
1626    try
1627     let uri = !get_uri () in
1628 (*CSC: Da finire *)
1629     let params = [] in
1630     let tys = !get_types_and_cons () in
1631      let obj = Cic.InductiveDefinition tys params !paramsno in
1632       begin
1633        try
1634         prerr_endline (CicPp.ppobj obj) ;
1635         CicTypeChecker.typecheck_mutual_inductive_defs uri
1636          (tys,params,!paramsno) ;
1637         with
1638          e ->
1639           prerr_endline "Offending mutual (co)inductive type declaration:" ;
1640           prerr_endline (CicPp.ppobj obj) ;
1641       end ;
1642       (* We already know that obj is well-typed. We need to add it to the  *)
1643       (* environment in order to compute the inner-types without having to *)
1644       (* debrujin it or having to modify lots of other functions to avoid  *)
1645       (* asking the environment for the MUTINDs we are defining now.       *)
1646       CicEnvironment.put_inductive_definition uri obj ;
1647       save_obj uri obj ;
1648       show_in_show_window_obj uri obj
1649    with
1650     e ->
1651      output_html outputhtml
1652       ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1653 ;;
1654
1655 let mk_fresh_name_callback context name ~typ =
1656  let fresh_name =
1657   match ProofEngineHelpers.mk_fresh_name context name ~typ with
1658      Cic.Name fresh_name -> fresh_name
1659    | Cic.Anonymous -> assert false
1660  in
1661   match
1662    GToolbox.input_string ~title:"Enter a fresh hypothesis name" ~text:fresh_name
1663     ("Enter a fresh name for the hypothesis " ^
1664       CicPp.pp typ
1665        (List.map (function None -> None | Some (n,_) -> Some n) context))
1666   with
1667      Some fresh_name' -> Cic.Name fresh_name'
1668    | None -> raise NoChoice
1669 ;;
1670
1671 let new_proof () =
1672  let inputt = ((rendering_window ())#inputt : term_editor) in
1673  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1674  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1675  let notebook = (rendering_window ())#notebook in
1676
1677  let chosen = ref false in
1678  let get_metasenv_and_term = ref (function _ -> assert false) in
1679  let get_uri = ref (function _ -> assert false) in
1680  let non_empty_type = ref false in
1681  let window =
1682   GWindow.window
1683    ~width:600 ~modal:true ~title:"New Proof or Definition"
1684    ~border_width:2 () in
1685  let vbox = GPack.vbox ~packing:window#add () in
1686  let hbox =
1687   GPack.hbox ~border_width:0
1688    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1689  let _ =
1690   GMisc.label ~text:"Enter the URI for the new theorem or definition:"
1691    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1692  let uri_entry =
1693   GEdit.entry ~editable:true
1694    ~packing:(hbox#pack ~expand:true ~fill:true ~padding:5) () in
1695  let hbox1 =
1696   GPack.hbox ~border_width:0
1697    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1698  let _ =
1699   GMisc.label ~text:"Enter the theorem or definition type:"
1700    ~packing:(hbox1#pack ~expand:false ~fill:false ~padding:5) () in
1701  let scrolled_window =
1702   GBin.scrolled_window ~border_width:5
1703    ~packing:(vbox#pack ~expand:true ~padding:0) () in
1704  (* the content of the scrolled_window is moved below (see comment) *)
1705  let hbox =
1706   GPack.hbox ~border_width:0
1707    ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
1708  let okb =
1709   GButton.button ~label:"Ok"
1710    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1711  let _ = okb#misc#set_sensitive false in
1712  let cancelb =
1713   GButton.button ~label:"Cancel"
1714    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
1715  (* moved here to have visibility of the ok button *)
1716  let newinputt =
1717   new term_editor ~width:400 ~height:100 ~packing:scrolled_window#add ()
1718    ~isnotempty_callback:
1719     (function b ->
1720       non_empty_type := b ;
1721       okb#misc#set_sensitive (b && uri_entry#text <> ""))
1722  in
1723  let _ =
1724   newinputt#set_term inputt#get_as_string ;
1725   inputt#reset in
1726  let _ =
1727   uri_entry#connect#changed
1728    (function () ->
1729      okb#misc#set_sensitive (!non_empty_type && uri_entry#text <> ""))
1730  in
1731  ignore (window#connect#destroy GMain.Main.quit) ;
1732  ignore (cancelb#connect#clicked window#destroy) ;
1733  ignore
1734   (okb#connect#clicked
1735     (function () ->
1736       chosen := true ;
1737       try
1738        let metasenv,parsed = newinputt#get_metasenv_and_term [] [] in
1739        let uristr = "cic:" ^ uri_entry#text in
1740        let uri = UriManager.uri_of_string uristr in
1741         if String.sub uristr (String.length uristr - 4) 4 <> ".con" then
1742          raise NotAUriToAConstant
1743         else
1744          begin
1745           try
1746            ignore (Getter.resolve uri) ;
1747            raise UriAlreadyInUse
1748           with
1749            Getter.Unresolved ->
1750             get_metasenv_and_term := (function () -> metasenv,parsed) ;
1751             get_uri := (function () -> uri) ; 
1752             window#destroy ()
1753          end
1754       with
1755        e ->
1756         output_html outputhtml
1757          ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1758   )) ;
1759  window#show () ;
1760  GMain.Main.main () ;
1761  if !chosen then
1762   try
1763    let metasenv,expr = !get_metasenv_and_term () in
1764     let _  = CicTypeChecker.type_of_aux' metasenv [] expr in
1765      ProofEngine.proof :=
1766       Some (!get_uri (), (1,[],expr)::metasenv, Cic.Meta (1,[]), expr) ;
1767      ProofEngine.goal := Some 1 ;
1768      refresh_sequent notebook ;
1769      refresh_proof output ;
1770      !save_set_sensitive true ;
1771      inputt#reset ;
1772      ProofEngine.intros ~mk_fresh_name_callback () ;
1773      refresh_sequent notebook ;
1774      refresh_proof output
1775   with
1776      RefreshSequentException e ->
1777       output_html outputhtml
1778        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1779         "sequent: " ^ Printexc.to_string e ^ "</h1>")
1780    | RefreshProofException e ->
1781       output_html outputhtml
1782        ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1783         "proof: " ^ Printexc.to_string e ^ "</h1>")
1784    | e ->
1785       output_html outputhtml
1786        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1787 ;;
1788
1789 let check_term_in_scratch scratch_window metasenv context expr = 
1790  try
1791   let ty = CicTypeChecker.type_of_aux' metasenv context expr in
1792    let mml = mml_of_cic_term 111 (Cic.Cast (expr,ty)) in
1793     scratch_window#show () ;
1794     scratch_window#mmlwidget#load_doc ~dom:mml
1795  with
1796   e ->
1797    print_endline ("? " ^ CicPp.ppterm expr) ;
1798    raise e
1799 ;;
1800
1801 let check scratch_window () =
1802  let inputt = ((rendering_window ())#inputt : term_editor) in
1803  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1804   let metasenv =
1805    match !ProofEngine.proof with
1806       None -> []
1807     | Some (_,metasenv,_,_) -> metasenv
1808   in
1809   let context =
1810    match !ProofEngine.goal with
1811       None -> []
1812     | Some metano ->
1813        let (_,canonical_context,_) =
1814         List.find (function (m,_,_) -> m=metano) metasenv
1815        in
1816         canonical_context
1817   in
1818    try
1819     let metasenv',expr = inputt#get_metasenv_and_term context metasenv in
1820      check_term_in_scratch scratch_window metasenv' context expr
1821    with
1822     e ->
1823      output_html outputhtml
1824       ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1825 ;;
1826
1827 let decompose_uris_choice_callback uris = 
1828 (* N.B.: in questo passaggio perdo l'informazione su exp_named_subst !!!! *)
1829   let module U = UriManager in 
1830    List.map 
1831     (function uri ->
1832       match Disambiguate.cic_textual_parser_uri_of_string uri with
1833          CicTextualParser0.IndTyUri (uri,typeno) -> (uri,typeno,[])
1834        | _ -> assert false)
1835     (interactive_user_uri_choice 
1836       ~selection_mode:`EXTENDED ~ok:"Ok" ~enable_button_for_non_vars:false 
1837       ~title:"Decompose" ~msg:"Please, select the Inductive Types to decompose" 
1838       (List.map 
1839         (function (uri,typeno,_) ->
1840           U.string_of_uri uri ^ "#1/" ^ string_of_int (typeno+1)
1841         ) uris)
1842     ) 
1843 ;;
1844
1845 (***********************)
1846 (*       TACTICS       *)
1847 (***********************)
1848
1849 let call_tactic tactic () =
1850  let notebook = (rendering_window ())#notebook in
1851  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1852  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1853  let savedproof = !ProofEngine.proof in
1854  let savedgoal  = !ProofEngine.goal in
1855   begin
1856    try
1857     tactic () ;
1858     refresh_sequent notebook ;
1859     refresh_proof output
1860    with
1861       RefreshSequentException e ->
1862        output_html outputhtml
1863         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1864          "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
1865        ProofEngine.proof := savedproof ;
1866        ProofEngine.goal := savedgoal ;
1867        refresh_sequent notebook
1868     | RefreshProofException e ->
1869        output_html outputhtml
1870         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1871          "proof: " ^ Printexc.to_string e ^ "</h1>") ;
1872        ProofEngine.proof := savedproof ;
1873        ProofEngine.goal := savedgoal ;
1874        refresh_sequent notebook ;
1875        refresh_proof output
1876     | e ->
1877        output_html outputhtml
1878         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1879        ProofEngine.proof := savedproof ;
1880        ProofEngine.goal := savedgoal ;
1881   end
1882 ;;
1883
1884 let call_tactic_with_input tactic () =
1885  let notebook = (rendering_window ())#notebook in
1886  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1887  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1888  let inputt = ((rendering_window ())#inputt : term_editor) in
1889  let savedproof = !ProofEngine.proof in
1890  let savedgoal  = !ProofEngine.goal in
1891   let uri,metasenv,bo,ty =
1892    match !ProofEngine.proof with
1893       None -> assert false
1894     | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
1895   in
1896    let canonical_context =
1897     match !ProofEngine.goal with
1898        None -> assert false
1899      | Some metano ->
1900         let (_,canonical_context,_) =
1901          List.find (function (m,_,_) -> m=metano) metasenv
1902         in
1903          canonical_context
1904    in
1905     try
1906      let metasenv',expr =
1907       inputt#get_metasenv_and_term canonical_context metasenv
1908      in
1909       ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
1910       tactic expr ;
1911       refresh_sequent notebook ;
1912       refresh_proof output ;
1913       inputt#reset
1914     with
1915        RefreshSequentException e ->
1916         output_html outputhtml
1917          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1918           "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
1919         ProofEngine.proof := savedproof ;
1920         ProofEngine.goal := savedgoal ;
1921         refresh_sequent notebook
1922      | RefreshProofException e ->
1923         output_html outputhtml
1924          ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1925           "proof: " ^ Printexc.to_string e ^ "</h1>") ;
1926         ProofEngine.proof := savedproof ;
1927         ProofEngine.goal := savedgoal ;
1928         refresh_sequent notebook ;
1929         refresh_proof output
1930      | e ->
1931         output_html outputhtml
1932          ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1933         ProofEngine.proof := savedproof ;
1934         ProofEngine.goal := savedgoal ;
1935 ;;
1936
1937 let call_tactic_with_goal_input tactic () =
1938  let module L = LogicalOperations in
1939  let module G = Gdome in
1940   let notebook = (rendering_window ())#notebook in
1941   let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1942   let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1943   let savedproof = !ProofEngine.proof in
1944   let savedgoal  = !ProofEngine.goal in
1945    match notebook#proofw#get_selections with
1946      [node] ->
1947       let xpath =
1948        ((node : Gdome.element)#getAttributeNS
1949          ~namespaceURI:helmns
1950          ~localName:(G.domString "xref"))#to_string
1951       in
1952        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
1953        else
1954         begin
1955          try
1956           match !current_goal_infos with
1957              Some (ids_to_terms, ids_to_father_ids,_) ->
1958               let id = xpath in
1959                tactic (Hashtbl.find ids_to_terms id) ;
1960                refresh_sequent notebook ;
1961                refresh_proof output
1962            | None -> assert false (* "ERROR: No current term!!!" *)
1963          with
1964             RefreshSequentException e ->
1965              output_html outputhtml
1966               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1967                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
1968              ProofEngine.proof := savedproof ;
1969              ProofEngine.goal := savedgoal ;
1970              refresh_sequent notebook
1971           | RefreshProofException e ->
1972              output_html outputhtml
1973               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
1974                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
1975              ProofEngine.proof := savedproof ;
1976              ProofEngine.goal := savedgoal ;
1977              refresh_sequent notebook ;
1978              refresh_proof output
1979           | e ->
1980              output_html outputhtml
1981               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
1982              ProofEngine.proof := savedproof ;
1983              ProofEngine.goal := savedgoal ;
1984         end
1985    | [] ->
1986       output_html outputhtml
1987        ("<h1 color=\"red\">No term selected</h1>")
1988    | _ ->
1989       output_html outputhtml
1990        ("<h1 color=\"red\">Many terms selected</h1>")
1991 ;;
1992
1993 let call_tactic_with_input_and_goal_input tactic () =
1994  let module L = LogicalOperations in
1995  let module G = Gdome in
1996   let notebook = (rendering_window ())#notebook in
1997   let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
1998   let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
1999   let inputt = ((rendering_window ())#inputt : term_editor) in
2000   let savedproof = !ProofEngine.proof in
2001   let savedgoal  = !ProofEngine.goal in
2002    match notebook#proofw#get_selections with
2003      [node] ->
2004       let xpath =
2005        ((node : Gdome.element)#getAttributeNS
2006          ~namespaceURI:helmns
2007          ~localName:(G.domString "xref"))#to_string
2008       in
2009        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
2010        else
2011         begin
2012          try
2013           match !current_goal_infos with
2014              Some (ids_to_terms, ids_to_father_ids,_) ->
2015               let id = xpath in
2016                let uri,metasenv,bo,ty =
2017                 match !ProofEngine.proof with
2018                    None -> assert false
2019                  | Some (uri,metasenv,bo,ty) -> uri,metasenv,bo,ty
2020                in
2021                 let canonical_context =
2022                  match !ProofEngine.goal with
2023                     None -> assert false
2024                   | Some metano ->
2025                      let (_,canonical_context,_) =
2026                       List.find (function (m,_,_) -> m=metano) metasenv
2027                      in
2028                       canonical_context in
2029                 let (metasenv',expr) =
2030                  inputt#get_metasenv_and_term canonical_context metasenv
2031                 in
2032                  ProofEngine.proof := Some (uri,metasenv',bo,ty) ;
2033                  tactic ~goal_input:(Hashtbl.find ids_to_terms id)
2034                   ~input:expr ;
2035                  refresh_sequent notebook ;
2036                  refresh_proof output ;
2037                  inputt#reset
2038            | None -> assert false (* "ERROR: No current term!!!" *)
2039          with
2040             RefreshSequentException e ->
2041              output_html outputhtml
2042               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2043                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
2044              ProofEngine.proof := savedproof ;
2045              ProofEngine.goal := savedgoal ;
2046              refresh_sequent notebook
2047           | RefreshProofException e ->
2048              output_html outputhtml
2049               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2050                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
2051              ProofEngine.proof := savedproof ;
2052              ProofEngine.goal := savedgoal ;
2053              refresh_sequent notebook ;
2054              refresh_proof output
2055           | e ->
2056              output_html outputhtml
2057               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2058              ProofEngine.proof := savedproof ;
2059              ProofEngine.goal := savedgoal ;
2060         end
2061    | [] ->
2062       output_html outputhtml
2063        ("<h1 color=\"red\">No term selected</h1>")
2064    | _ ->
2065       output_html outputhtml
2066        ("<h1 color=\"red\">Many terms selected</h1>")
2067 ;;
2068
2069 let call_tactic_with_goal_input_in_scratch tactic scratch_window () =
2070  let module L = LogicalOperations in
2071  let module G = Gdome in
2072   let mmlwidget =
2073    (scratch_window#mmlwidget : GMathViewAux.multi_selection_math_view) in
2074   let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2075   let savedproof = !ProofEngine.proof in
2076   let savedgoal  = !ProofEngine.goal in
2077    match mmlwidget#get_selections with
2078      [node] ->
2079       let xpath =
2080        ((node : Gdome.element)#getAttributeNS
2081          ~namespaceURI:helmns
2082          ~localName:(G.domString "xref"))#to_string
2083       in
2084        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
2085        else
2086         begin
2087          try
2088           match !current_scratch_infos with
2089              (* term is the whole goal in the scratch_area *)
2090              Some (term,ids_to_terms, ids_to_father_ids,_) ->
2091               let id = xpath in
2092                let expr = tactic term (Hashtbl.find ids_to_terms id) in
2093                 let mml = mml_of_cic_term 111 expr in
2094                  scratch_window#show () ;
2095                  scratch_window#mmlwidget#load_doc ~dom:mml
2096            | None -> assert false (* "ERROR: No current term!!!" *)
2097          with
2098           e ->
2099            output_html outputhtml
2100             ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
2101         end
2102    | [] ->
2103       output_html outputhtml
2104        ("<h1 color=\"red\">No term selected</h1>")
2105    | _ ->
2106       output_html outputhtml
2107        ("<h1 color=\"red\">Many terms selected</h1>")
2108 ;;
2109
2110 let call_tactic_with_hypothesis_input tactic () =
2111  let module L = LogicalOperations in
2112  let module G = Gdome in
2113   let notebook = (rendering_window ())#notebook in
2114   let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
2115   let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2116   let savedproof = !ProofEngine.proof in
2117   let savedgoal  = !ProofEngine.goal in
2118    match notebook#proofw#get_selections with
2119      [node] ->
2120       let xpath =
2121        ((node : Gdome.element)#getAttributeNS
2122          ~namespaceURI:helmns
2123          ~localName:(G.domString "xref"))#to_string
2124       in
2125        if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
2126        else
2127         begin
2128          try
2129           match !current_goal_infos with
2130              Some (_,_,ids_to_hypotheses) ->
2131               let id = xpath in
2132                tactic (Hashtbl.find ids_to_hypotheses id) ;
2133                refresh_sequent notebook ;
2134                refresh_proof output
2135            | None -> assert false (* "ERROR: No current term!!!" *)
2136          with
2137             RefreshSequentException e ->
2138              output_html outputhtml
2139               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2140                "sequent: " ^ Printexc.to_string e ^ "</h1>") ;
2141              ProofEngine.proof := savedproof ;
2142              ProofEngine.goal := savedgoal ;
2143              refresh_sequent notebook
2144           | RefreshProofException e ->
2145              output_html outputhtml
2146               ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2147                "proof: " ^ Printexc.to_string e ^ "</h1>") ;
2148              ProofEngine.proof := savedproof ;
2149              ProofEngine.goal := savedgoal ;
2150              refresh_sequent notebook ;
2151              refresh_proof output
2152           | e ->
2153              output_html outputhtml
2154               ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2155              ProofEngine.proof := savedproof ;
2156              ProofEngine.goal := savedgoal ;
2157         end
2158    | [] ->
2159       output_html outputhtml
2160        ("<h1 color=\"red\">No term selected</h1>")
2161    | _ ->
2162       output_html outputhtml
2163        ("<h1 color=\"red\">Many terms selected</h1>")
2164 ;;
2165
2166
2167 let intros = call_tactic (ProofEngine.intros ~mk_fresh_name_callback);;
2168 let exact = call_tactic_with_input ProofEngine.exact;;
2169 let apply = call_tactic_with_input ProofEngine.apply;;
2170 let elimintrossimpl = call_tactic_with_input ProofEngine.elim_intros_simpl;;
2171 let elimtype = call_tactic_with_input ProofEngine.elim_type;;
2172 let whd = call_tactic_with_goal_input ProofEngine.whd;;
2173 let reduce = call_tactic_with_goal_input ProofEngine.reduce;;
2174 let simpl = call_tactic_with_goal_input ProofEngine.simpl;;
2175 let fold_whd = call_tactic_with_input ProofEngine.fold_whd;;
2176 let fold_reduce = call_tactic_with_input ProofEngine.fold_reduce;;
2177 let fold_simpl = call_tactic_with_input ProofEngine.fold_simpl;;
2178 let cut = call_tactic_with_input (ProofEngine.cut ~mk_fresh_name_callback);;
2179 let change = call_tactic_with_input_and_goal_input ProofEngine.change;;
2180 let letin = call_tactic_with_input (ProofEngine.letin ~mk_fresh_name_callback);;
2181 let ring = call_tactic ProofEngine.ring;;
2182 let clearbody = call_tactic_with_hypothesis_input ProofEngine.clearbody;;
2183 let clear = call_tactic_with_hypothesis_input ProofEngine.clear;;
2184 let fourier = call_tactic ProofEngine.fourier;;
2185 let rewritesimpl = call_tactic_with_input ProofEngine.rewrite_simpl;;
2186 let rewritebacksimpl = call_tactic_with_input ProofEngine.rewrite_back_simpl;;
2187 let replace = call_tactic_with_input_and_goal_input ProofEngine.replace;;
2188 let reflexivity = call_tactic ProofEngine.reflexivity;;
2189 let symmetry = call_tactic ProofEngine.symmetry;;
2190 let transitivity = call_tactic_with_input ProofEngine.transitivity;;
2191 let exists = call_tactic ProofEngine.exists;;
2192 let split = call_tactic ProofEngine.split;;
2193 let left = call_tactic ProofEngine.left;;
2194 let right = call_tactic ProofEngine.right;;
2195 let assumption = call_tactic ProofEngine.assumption;;
2196 let generalize = call_tactic_with_goal_input ProofEngine.generalize;;
2197 let absurd = call_tactic_with_input ProofEngine.absurd;;
2198 let contradiction = call_tactic ProofEngine.contradiction;;
2199 let decompose =
2200  call_tactic_with_input
2201   (ProofEngine.decompose ~uris_choice_callback:decompose_uris_choice_callback);;
2202
2203 let whd_in_scratch scratch_window =
2204  call_tactic_with_goal_input_in_scratch ProofEngine.whd_in_scratch
2205   scratch_window
2206 ;;
2207 let reduce_in_scratch scratch_window =
2208  call_tactic_with_goal_input_in_scratch ProofEngine.reduce_in_scratch
2209   scratch_window
2210 ;;
2211 let simpl_in_scratch scratch_window =
2212  call_tactic_with_goal_input_in_scratch ProofEngine.simpl_in_scratch
2213   scratch_window
2214 ;;
2215
2216
2217
2218 (**********************)
2219 (*   END OF TACTICS   *)
2220 (**********************)
2221
2222
2223 let show () =
2224  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2225   try
2226    show_in_show_window_uri (input_or_locate_uri ~title:"Show")
2227   with
2228    e ->
2229     output_html outputhtml
2230      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2231 ;;
2232
2233 exception NotADefinition;;
2234
2235 let open_ () =
2236  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2237  let output = ((rendering_window ())#output : GMathViewAux.single_selection_math_view) in
2238  let notebook = (rendering_window ())#notebook in
2239    try
2240     let uri = input_or_locate_uri ~title:"Open" in
2241      CicTypeChecker.typecheck uri ;
2242      let metasenv,bo,ty =
2243       match CicEnvironment.get_cooked_obj uri with
2244          Cic.Constant (_,Some bo,ty,_) -> [],bo,ty
2245        | Cic.CurrentProof (_,metasenv,bo,ty,_) -> metasenv,bo,ty
2246        | Cic.Constant _
2247        | Cic.Variable _
2248        | Cic.InductiveDefinition _ -> raise NotADefinition
2249      in
2250       ProofEngine.proof :=
2251        Some (uri, metasenv, bo, ty) ;
2252       ProofEngine.goal := None ;
2253       refresh_sequent notebook ;
2254       refresh_proof output
2255    with
2256       RefreshSequentException e ->
2257        output_html outputhtml
2258         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2259          "sequent: " ^ Printexc.to_string e ^ "</h1>")
2260     | RefreshProofException e ->
2261        output_html outputhtml
2262         ("<h1 color=\"red\">Exception raised during the refresh of the " ^
2263          "proof: " ^ Printexc.to_string e ^ "</h1>")
2264     | e ->
2265        output_html outputhtml
2266         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2267 ;;
2268
2269 let show_query_results results =
2270  let window =
2271   GWindow.window
2272    ~modal:false ~title:"Query results." ~border_width:2 () in
2273  let vbox = GPack.vbox ~packing:window#add () in
2274  let hbox =
2275   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2276  let lMessage =
2277   GMisc.label
2278    ~text:"Click on a URI to show that object"
2279    ~packing:hbox#add () in
2280  let scrolled_window =
2281   GBin.scrolled_window ~border_width:10 ~height:400 ~width:600
2282    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2283  let clist = GList.clist ~columns:1 ~packing:scrolled_window#add () in
2284   ignore
2285    (List.map
2286      (function (uri,_) ->
2287        let n =
2288         clist#append [uri]
2289        in
2290         clist#set_row ~selectable:false n
2291      ) results
2292    ) ;
2293   clist#columns_autosize () ;
2294   ignore
2295    (clist#connect#select_row
2296      (fun ~row ~column ~event ->
2297        let (uristr,_) = List.nth results row in
2298         match
2299          Disambiguate.cic_textual_parser_uri_of_string
2300           (Disambiguate.wrong_xpointer_format_from_wrong_xpointer_format'
2301             uristr)
2302         with
2303            CicTextualParser0.ConUri uri
2304          | CicTextualParser0.VarUri uri
2305          | CicTextualParser0.IndTyUri (uri,_)
2306          | CicTextualParser0.IndConUri (uri,_,_) ->
2307             show_in_show_window_uri uri
2308      )
2309    ) ;
2310   window#show ()
2311 ;;
2312
2313 let refine_constraints (must_obj,must_rel,must_sort) =
2314  let chosen = ref false in
2315  let use_only = ref false in
2316  let window =
2317   GWindow.window
2318    ~modal:true ~title:"Constraints refinement."
2319    ~width:800 ~border_width:2 () in
2320  let vbox = GPack.vbox ~packing:window#add () in
2321  let hbox =
2322   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2323  let lMessage =
2324   GMisc.label
2325    ~text: "\"Only\" constraints can be enforced or not."
2326    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2327  let onlyb =
2328   GButton.toggle_button ~label:"Enforce \"only\" constraints"
2329    ~active:false ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
2330  in
2331   ignore
2332    (onlyb#connect#toggled (function () -> use_only := onlyb#active)) ;
2333  (* Notebook for the constraints choice *)
2334  let notebook =
2335   GPack.notebook ~scrollable:true
2336    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2337  (* Rel constraints *)
2338  let label =
2339   GMisc.label
2340    ~text: "Constraints on Rels" () in
2341  let vbox' =
2342   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
2343    () in
2344  let hbox =
2345   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
2346  let lMessage =
2347   GMisc.label
2348    ~text: "You can now specify the constraints on Rels."
2349    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2350  let expected_height = 25 * (List.length must_rel + 2) in
2351  let height = if expected_height > 400 then 400 else expected_height in
2352  let scrolled_window =
2353   GBin.scrolled_window ~border_width:10 ~height ~width:600
2354    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
2355  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
2356  let rel_constraints =
2357   List.map
2358    (function (position,depth) ->
2359      let hbox =
2360       GPack.hbox
2361        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
2362      let lMessage =
2363       GMisc.label
2364        ~text:position
2365        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2366      match depth with
2367         None -> position, ref None
2368       | Some depth' ->
2369          let mutable_ref = ref (Some depth') in
2370          let depthb =
2371           GButton.toggle_button
2372            ~label:("depth = " ^ string_of_int depth') ~active:true
2373            ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
2374          in
2375           ignore
2376            (depthb#connect#toggled
2377              (function () ->
2378                let sel_depth = if depthb#active then Some depth' else None in
2379                 mutable_ref := sel_depth
2380             )) ;
2381           position, mutable_ref
2382    ) must_rel in
2383  (* Sort constraints *)
2384  let label =
2385   GMisc.label
2386    ~text: "Constraints on Sorts" () in
2387  let vbox' =
2388   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
2389    () in
2390  let hbox =
2391   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
2392  let lMessage =
2393   GMisc.label
2394    ~text: "You can now specify the constraints on Sorts."
2395    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2396  let expected_height = 25 * (List.length must_sort + 2) in
2397  let height = if expected_height > 400 then 400 else expected_height in
2398  let scrolled_window =
2399   GBin.scrolled_window ~border_width:10 ~height ~width:600
2400    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
2401  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
2402  let sort_constraints =
2403   List.map
2404    (function (position,depth,sort) ->
2405      let hbox =
2406       GPack.hbox
2407        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
2408      let lMessage =
2409       GMisc.label
2410        ~text:(sort ^ " " ^ position)
2411        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2412      match depth with
2413         None -> position, ref None, sort
2414       | Some depth' ->
2415          let mutable_ref = ref (Some depth') in
2416          let depthb =
2417           GButton.toggle_button ~label:("depth = " ^ string_of_int depth')
2418            ~active:true
2419            ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
2420          in
2421           ignore
2422            (depthb#connect#toggled
2423              (function () ->
2424                let sel_depth = if depthb#active then Some depth' else None in
2425                 mutable_ref := sel_depth
2426             )) ;
2427           position, mutable_ref, sort
2428    ) must_sort in
2429  (* Obj constraints *)
2430  let label =
2431   GMisc.label
2432    ~text: "Constraints on constants" () in
2433  let vbox' =
2434   GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce)
2435    () in
2436  let hbox =
2437   GPack.hbox ~packing:(vbox'#pack ~expand:false ~fill:false ~padding:5) () in
2438  let lMessage =
2439   GMisc.label
2440    ~text: "You can now specify the constraints on constants."
2441    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2442  let expected_height = 25 * (List.length must_obj + 2) in
2443  let height = if expected_height > 400 then 400 else expected_height in
2444  let scrolled_window =
2445   GBin.scrolled_window ~border_width:10 ~height ~width:600
2446    ~packing:(vbox'#pack ~expand:true ~fill:true ~padding:5) () in
2447  let scrolled_vbox = GPack.vbox ~packing:scrolled_window#add_with_viewport () in
2448  let obj_constraints =
2449   List.map
2450    (function (uri,position,depth) ->
2451      let hbox =
2452       GPack.hbox
2453        ~packing:(scrolled_vbox#pack ~expand:false ~fill:false ~padding:5) () in
2454      let lMessage =
2455       GMisc.label
2456        ~text:(uri ^ " " ^ position)
2457        ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2458      match depth with
2459         None -> uri, position, ref None
2460       | Some depth' ->
2461          let mutable_ref = ref (Some depth') in
2462          let depthb =
2463           GButton.toggle_button ~label:("depth = " ^ string_of_int depth')
2464            ~active:true
2465            ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
2466          in
2467           ignore
2468            (depthb#connect#toggled
2469              (function () ->
2470                let sel_depth = if depthb#active then Some depth' else None in
2471                 mutable_ref := sel_depth
2472             )) ;
2473           uri, position, mutable_ref
2474    ) must_obj in
2475  (* Confirm/abort buttons *)
2476  let hbox =
2477   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2478  let okb =
2479   GButton.button ~label:"Ok"
2480    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2481  let cancelb =
2482   GButton.button ~label:"Abort"
2483    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) ()
2484  in
2485   ignore (window#connect#destroy GMain.Main.quit) ;
2486   ignore (cancelb#connect#clicked window#destroy) ;
2487   ignore
2488    (okb#connect#clicked (function () -> chosen := true ; window#destroy ()));
2489   window#set_position `CENTER ;
2490   window#show () ;
2491   GMain.Main.main () ;
2492   if !chosen then
2493    let chosen_must_rel =
2494     List.map
2495      (function (position,ref_depth) -> position,!ref_depth) rel_constraints in
2496    let chosen_must_sort =
2497     List.map
2498      (function (position,ref_depth,sort) -> position,!ref_depth,sort)
2499      sort_constraints
2500    in
2501    let chosen_must_obj =
2502     List.map
2503      (function (uri,position,ref_depth) -> uri,position,!ref_depth)
2504      obj_constraints
2505    in
2506     (chosen_must_obj,chosen_must_rel,chosen_must_sort),
2507      (if !use_only then
2508 (*CSC: ???????????????????????? I assume that must and only are the same... *)
2509        Some chosen_must_obj,Some chosen_must_rel,Some chosen_must_sort
2510       else
2511        None,None,None
2512      )
2513   else
2514    raise NoChoice
2515 ;;
2516
2517 let completeSearchPattern () =
2518  let inputt = ((rendering_window ())#inputt : term_editor) in
2519  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2520   try
2521    let metasenv,expr = inputt#get_metasenv_and_term ~context:[] ~metasenv:[] in
2522    let must = MQueryLevels2.get_constraints expr in
2523    let must',only = refine_constraints must in
2524    let results = MQueryGenerator.searchPattern must' only in 
2525     show_query_results results
2526   with
2527    e ->
2528     output_html outputhtml
2529      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2530 ;;
2531
2532 let insertQuery () =
2533  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2534   try
2535    let chosen = ref None in
2536    let window =
2537     GWindow.window
2538      ~modal:true ~title:"Insert Query (Experts Only)" ~border_width:2 () in
2539    let vbox = GPack.vbox ~packing:window#add () in
2540    let label =
2541     GMisc.label ~text:"Insert Query. For Experts Only."
2542      ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2543    let scrolled_window =
2544     GBin.scrolled_window ~border_width:10 ~height:400 ~width:600
2545      ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2546    let input = GEdit.text ~editable:true
2547     ~packing:scrolled_window#add () in
2548    let hbox =
2549     GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2550    let okb =
2551     GButton.button ~label:"Ok"
2552      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2553    let loadb =
2554     GButton.button ~label:"Load from file..."
2555      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2556    let cancelb =
2557     GButton.button ~label:"Abort"
2558      ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2559    ignore (window#connect#destroy GMain.Main.quit) ;
2560    ignore (cancelb#connect#clicked window#destroy) ;
2561    ignore
2562     (okb#connect#clicked
2563       (function () ->
2564         chosen := Some (input#get_chars 0 input#length) ; window#destroy ())) ;
2565    ignore
2566     (loadb#connect#clicked
2567       (function () ->
2568         match
2569          GToolbox.select_file ~title:"Select Query File" ()
2570         with
2571            None -> ()
2572          | Some filename ->
2573             let inch = open_in filename in
2574              let rec read_file () =
2575               try
2576                let line = input_line inch in
2577                 line ^ "\n" ^ read_file ()
2578               with
2579                End_of_file -> ""
2580              in
2581               let text = read_file () in
2582                input#delete_text 0 input#length ;
2583                ignore (input#insert_text text ~pos:0))) ;
2584    window#set_position `CENTER ;
2585    window#show () ;
2586    GMain.Main.main () ;
2587    match !chosen with
2588       None -> ()
2589     | Some q ->
2590        let results =
2591         Mqint.execute (MQueryUtil.query_of_text (Lexing.from_string q))
2592        in
2593         show_query_results results
2594   with
2595    e ->
2596     output_html outputhtml
2597      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
2598 ;;
2599
2600 let choose_must list_of_must only =
2601  let chosen = ref None in
2602  let user_constraints = ref [] in
2603  let window =
2604   GWindow.window
2605    ~modal:true ~title:"Query refinement." ~border_width:2 () in
2606  let vbox = GPack.vbox ~packing:window#add () in
2607  let hbox =
2608   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2609  let lMessage =
2610   GMisc.label
2611    ~text:
2612     ("You can now specify the genericity of the query. " ^
2613      "The more generic the slower.")
2614    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2615  let hbox =
2616   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2617  let lMessage =
2618   GMisc.label
2619    ~text:
2620     "Suggestion: start with faster queries before moving to more generic ones."
2621    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2622  let notebook =
2623   GPack.notebook ~scrollable:true
2624    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2625  let _ =
2626   let page = ref 0 in
2627   let last = List.length list_of_must in
2628   List.map
2629    (function must ->
2630      incr page ;
2631      let label =
2632       GMisc.label ~text:
2633        (if !page = 1 then "More generic" else
2634          if !page = last then "More precise" else "          ") () in
2635      let expected_height = 25 * (List.length must + 2) in
2636      let height = if expected_height > 400 then 400 else expected_height in
2637      let scrolled_window =
2638       GBin.scrolled_window ~border_width:10 ~height ~width:600
2639        ~packing:(notebook#append_page ~tab_label:label#coerce) () in
2640      let clist =
2641         GList.clist ~columns:2 ~packing:scrolled_window#add
2642          ~titles:["URI" ; "Position"] ()
2643      in
2644       ignore
2645        (List.map
2646          (function (uri,position) ->
2647            let n =
2648             clist#append 
2649              [uri; if position then "MainConclusion" else "Conclusion"]
2650            in
2651             clist#set_row ~selectable:false n
2652          ) must
2653        ) ;
2654       clist#columns_autosize ()
2655    ) list_of_must in
2656  let _ =
2657   let label = GMisc.label ~text:"User provided" () in
2658   let vbox =
2659    GPack.vbox ~packing:(notebook#append_page ~tab_label:label#coerce) () in
2660   let hbox =
2661    GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2662   let lMessage =
2663    GMisc.label
2664    ~text:"Select the constraints that must be satisfied and press OK."
2665    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2666   let expected_height = 25 * (List.length only + 2) in
2667   let height = if expected_height > 400 then 400 else expected_height in
2668   let scrolled_window =
2669    GBin.scrolled_window ~border_width:10 ~height ~width:600
2670     ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
2671   let clist =
2672    GList.clist ~columns:2 ~packing:scrolled_window#add
2673     ~selection_mode:`EXTENDED
2674     ~titles:["URI" ; "Position"] ()
2675   in
2676    ignore
2677     (List.map
2678       (function (uri,position) ->
2679         let n =
2680          clist#append 
2681           [uri; if position then "MainConclusion" else "Conclusion"]
2682         in
2683          clist#set_row ~selectable:true n
2684       ) only
2685     ) ;
2686    clist#columns_autosize () ;
2687    ignore
2688     (clist#connect#select_row
2689       (fun ~row ~column ~event ->
2690         user_constraints := (List.nth only row)::!user_constraints)) ;
2691    ignore
2692     (clist#connect#unselect_row
2693       (fun ~row ~column ~event ->
2694         user_constraints :=
2695          List.filter
2696           (function uri -> uri != (List.nth only row)) !user_constraints)) ;
2697  in
2698  let hbox =
2699   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2700  let okb =
2701   GButton.button ~label:"Ok"
2702    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2703  let cancelb =
2704   GButton.button ~label:"Abort"
2705    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2706  (* actions *)
2707  ignore (window#connect#destroy GMain.Main.quit) ;
2708  ignore (cancelb#connect#clicked window#destroy) ;
2709  ignore
2710   (okb#connect#clicked
2711     (function () -> chosen := Some notebook#current_page ; window#destroy ())) ;
2712  window#set_position `CENTER ;
2713  window#show () ;
2714  GMain.Main.main () ;
2715  match !chosen with
2716     None -> raise NoChoice
2717   | Some n ->
2718      if n = List.length list_of_must then
2719       (* user provided constraints *)
2720       !user_constraints
2721      else
2722       List.nth list_of_must n
2723 ;;
2724
2725 let searchPattern () =
2726  let inputt = ((rendering_window ())#inputt : term_editor) in
2727  let outputhtml = ((rendering_window ())#outputhtml : GHtml.xmhtml) in
2728   try
2729     let metasenv =
2730      match !ProofEngine.proof with
2731         None -> assert false
2732       | Some (_,metasenv,_,_) -> metasenv
2733     in
2734      match !ProofEngine.goal with
2735         None -> ()
2736       | Some metano ->
2737          let (_, ey ,ty) = List.find (function (m,_,_) -> m=metano) metasenv in
2738           let list_of_must,only = MQueryLevels.out_restr metasenv ey ty in
2739           let must = choose_must list_of_must only in
2740           let torigth_restriction (u,b) =
2741            let p =
2742             if b then
2743              "http://www.cs.unibo.it/helm/schemas/schema-helm#MainConclusion" 
2744             else
2745              "http://www.cs.unibo.it/helm/schemas/schema-helm#InConclusion"
2746            in
2747             (u,p,None)
2748           in
2749           let rigth_must = List.map torigth_restriction must in
2750           let rigth_only = Some (List.map torigth_restriction only) in
2751           let result =
2752            MQueryGenerator.searchPattern
2753             (rigth_must,[],[]) (rigth_only,None,None) in 
2754           let uris =
2755            List.map
2756             (function uri,_ ->
2757               Disambiguate.wrong_xpointer_format_from_wrong_xpointer_format' uri
2758             ) result in
2759           let html =
2760            " <h1>Backward Query: </h1>" ^
2761            " <pre>" ^ get_last_query result ^ "</pre>"
2762           in
2763            output_html outputhtml html ;
2764            let uris',exc =
2765             let rec filter_out =
2766              function
2767                 [] -> [],""
2768               | uri::tl ->
2769                  let tl',exc = filter_out tl in
2770                   try
2771                    if
2772                     ProofEngine.can_apply
2773                      (term_of_cic_textual_parser_uri
2774                       (Disambiguate.cic_textual_parser_uri_of_string uri))
2775                    then
2776                     uri::tl',exc
2777                    else
2778                     tl',exc
2779                   with
2780                    e ->
2781                     let exc' =
2782                      "<h1 color=\"red\"> ^ Exception raised trying to apply " ^
2783                       uri ^ ": " ^ Printexc.to_string e ^ " </h1>" ^ exc
2784                     in
2785                      tl',exc'
2786             in
2787              filter_out uris
2788            in
2789             let html' =
2790              " <h1>Objects that can actually be applied: </h1> " ^
2791              String.concat "<br>" uris' ^ exc ^
2792              " <h1>Number of false matches: " ^
2793               string_of_int (List.length uris - List.length uris') ^ "</h1>" ^
2794              " <h1>Number of good matches: " ^
2795               string_of_int (List.length uris') ^ "</h1>"
2796             in
2797              output_html outputhtml html' ;
2798              let uri' =
2799               user_uri_choice ~title:"Ambiguous input."
2800               ~msg:
2801                 "Many lemmas can be successfully applied. Please, choose one:"
2802                uris'
2803              in
2804               inputt#set_term uri' ;
2805               apply ()
2806   with
2807    e -> 
2808     output_html outputhtml 
2809      ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
2810 ;;
2811       
2812 let choose_selection mmlwidget (element : Gdome.element option) =
2813  let module G = Gdome in
2814   let rec aux element =
2815    if element#hasAttributeNS
2816        ~namespaceURI:helmns
2817        ~localName:(G.domString "xref")
2818    then
2819      mmlwidget#set_selection (Some element)
2820    else
2821     try
2822       match element#get_parentNode with
2823          None -> assert false
2824        (*CSC: OCAML DIVERGES!
2825        | Some p -> aux (new G.element_of_node p)
2826        *)
2827        | Some p -> aux (new Gdome.element_of_node p)
2828     with
2829        GdomeInit.DOMCastException _ ->
2830         prerr_endline
2831          "******* trying to select above the document root ********"
2832   in
2833    match element with
2834      Some x -> aux x
2835    | None   -> mmlwidget#set_selection None
2836 ;;
2837
2838 (* STUFF TO BUILD THE GTK INTERFACE *)
2839
2840 (* Stuff for the widget settings *)
2841
2842 let export_to_postscript (output : GMathViewAux.single_selection_math_view) =
2843  let lastdir = ref (Unix.getcwd ()) in
2844   function () ->
2845    match
2846     GToolbox.select_file ~title:"Export to PostScript"
2847      ~dir:lastdir ~filename:"screenshot.ps" ()
2848    with
2849       None -> ()
2850     | Some filename ->
2851        output#export_to_postscript ~filename:filename ();
2852 ;;
2853
2854 let activate_t1 (output : GMathViewAux.single_selection_math_view) button_set_anti_aliasing
2855  button_set_transparency export_to_postscript_menu_item
2856  button_t1 ()
2857 =
2858  let is_set = button_t1#active in
2859   output#set_font_manager_type
2860    (if is_set then `font_manager_t1 else `font_manager_gtk) ;
2861   if is_set then
2862    begin
2863     button_set_anti_aliasing#misc#set_sensitive true ;
2864     button_set_transparency#misc#set_sensitive true ;
2865     export_to_postscript_menu_item#misc#set_sensitive true ;
2866    end
2867   else
2868    begin
2869     button_set_anti_aliasing#misc#set_sensitive false ;
2870     button_set_transparency#misc#set_sensitive false ;
2871     export_to_postscript_menu_item#misc#set_sensitive false ;
2872    end
2873 ;;
2874
2875 let set_anti_aliasing output button_set_anti_aliasing () =
2876  output#set_anti_aliasing button_set_anti_aliasing#active
2877 ;;
2878
2879 let set_transparency output button_set_transparency () =
2880  output#set_transparency button_set_transparency#active
2881 ;;
2882
2883 let changefont output font_size_spinb () =
2884  output#set_font_size font_size_spinb#value_as_int
2885 ;;
2886
2887 let set_log_verbosity output log_verbosity_spinb () =
2888  output#set_log_verbosity log_verbosity_spinb#value_as_int
2889 ;;
2890
2891 class settings_window (output : GMathViewAux.single_selection_math_view) sw
2892  export_to_postscript_menu_item selection_changed_callback
2893 =
2894  let settings_window = GWindow.window ~title:"GtkMathView settings" () in
2895  let vbox =
2896   GPack.vbox ~packing:settings_window#add () in
2897  let table =
2898   GPack.table
2899    ~rows:1 ~columns:3 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
2900    ~border_width:5 ~packing:vbox#add () in
2901  let button_t1 =
2902   GButton.toggle_button ~label:"activate t1 fonts"
2903    ~packing:(table#attach ~left:0 ~top:0) () in
2904  let button_set_anti_aliasing =
2905   GButton.toggle_button ~label:"set_anti_aliasing"
2906    ~packing:(table#attach ~left:0 ~top:1) () in
2907  let button_set_transparency =
2908   GButton.toggle_button ~label:"set_transparency"
2909    ~packing:(table#attach ~left:2 ~top:1) () in
2910  let table =
2911   GPack.table
2912    ~rows:2 ~columns:2 ~homogeneous:false ~row_spacings:5 ~col_spacings:5
2913    ~border_width:5 ~packing:vbox#add () in
2914  let font_size_label =
2915   GMisc.label ~text:"font size:"
2916    ~packing:(table#attach ~left:0 ~top:0 ~expand:`NONE) () in
2917  let font_size_spinb =
2918   let sadj =
2919    GData.adjustment ~value:14.0 ~lower:5.0 ~upper:50.0 ~step_incr:1.0 ()
2920   in
2921    GEdit.spin_button 
2922     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:0 ~fill:`NONE) () in
2923  let log_verbosity_label =
2924   GMisc.label ~text:"log verbosity:"
2925    ~packing:(table#attach ~left:0 ~top:1) () in
2926  let log_verbosity_spinb =
2927   let sadj =
2928    GData.adjustment ~value:0.0 ~lower:0.0 ~upper:3.0 ~step_incr:1.0 ()
2929   in
2930    GEdit.spin_button 
2931     ~adjustment:sadj ~packing:(table#attach ~left:1 ~top:1) () in
2932  let hbox =
2933   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2934  let closeb =
2935   GButton.button ~label:"Close"
2936    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2937 object(self)
2938  method show = settings_window#show
2939  initializer
2940   button_set_anti_aliasing#misc#set_sensitive false ;
2941   button_set_transparency#misc#set_sensitive false ;
2942   (* Signals connection *)
2943   ignore(button_t1#connect#clicked
2944    (activate_t1 output button_set_anti_aliasing
2945     button_set_transparency export_to_postscript_menu_item button_t1)) ;
2946   ignore(font_size_spinb#connect#changed (changefont output font_size_spinb)) ;
2947   ignore(button_set_anti_aliasing#connect#toggled
2948    (set_anti_aliasing output button_set_anti_aliasing));
2949   ignore(button_set_transparency#connect#toggled
2950    (set_transparency output button_set_transparency)) ;
2951   ignore(log_verbosity_spinb#connect#changed
2952    (set_log_verbosity output log_verbosity_spinb)) ;
2953   ignore(closeb#connect#clicked settings_window#misc#hide)
2954 end;;
2955
2956 (* Scratch window *)
2957
2958 class scratch_window =
2959  let window =
2960   GWindow.window ~title:"MathML viewer" ~border_width:2 () in
2961  let vbox =
2962   GPack.vbox ~packing:window#add () in
2963  let hbox =
2964   GPack.hbox ~packing:(vbox#pack ~expand:false ~fill:false ~padding:5) () in
2965  let whdb =
2966   GButton.button ~label:"Whd"
2967    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2968  let reduceb =
2969   GButton.button ~label:"Reduce"
2970    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2971  let simplb =
2972   GButton.button ~label:"Simpl"
2973    ~packing:(hbox#pack ~expand:false ~fill:false ~padding:5) () in
2974  let scrolled_window =
2975   GBin.scrolled_window ~border_width:10
2976    ~packing:(vbox#pack ~expand:true ~padding:5) () in
2977  let mmlwidget =
2978   GMathViewAux.multi_selection_math_view
2979    ~packing:(scrolled_window#add) ~width:400 ~height:280 () in
2980 object(self)
2981  method mmlwidget = mmlwidget
2982  method show () = window#misc#hide () ; window#show ()
2983  initializer
2984   ignore(mmlwidget#connect#selection_changed (choose_selection mmlwidget)) ;
2985   ignore(window#event#connect#delete (fun _ -> window#misc#hide () ; true )) ;
2986   ignore(whdb#connect#clicked (whd_in_scratch self)) ;
2987   ignore(reduceb#connect#clicked (reduce_in_scratch self)) ;
2988   ignore(simplb#connect#clicked (simpl_in_scratch self))
2989 end;;
2990
2991 class page () =
2992  let vbox1 = GPack.vbox () in
2993 object(self)
2994  val mutable proofw_ref = None
2995  val mutable compute_ref = None
2996  method proofw =
2997   Lazy.force self#compute ;
2998   match proofw_ref with
2999      None -> assert false
3000    | Some proofw -> proofw
3001  method content = vbox1
3002  method compute =
3003   match compute_ref with
3004      None -> assert false
3005    | Some compute -> compute
3006  initializer
3007   compute_ref <-
3008    Some (lazy (
3009    let scrolled_window1 =
3010     GBin.scrolled_window ~border_width:10
3011      ~packing:(vbox1#pack ~expand:true ~padding:5) () in
3012    let proofw =
3013     GMathViewAux.multi_selection_math_view ~width:400 ~height:275
3014      ~packing:(scrolled_window1#add) () in
3015    let _ = proofw_ref <- Some proofw in
3016    let hbox3 =
3017     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
3018    let exactb =
3019     GButton.button ~label:"Exact"
3020      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3021    let introsb =
3022     GButton.button ~label:"Intros"
3023      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3024    let applyb =
3025     GButton.button ~label:"Apply"
3026      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3027    let elimintrossimplb =
3028     GButton.button ~label:"ElimIntrosSimpl"
3029      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3030    let elimtypeb =
3031     GButton.button ~label:"ElimType"
3032      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3033    let whdb =
3034     GButton.button ~label:"Whd"
3035      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3036    let reduceb =
3037     GButton.button ~label:"Reduce"
3038      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3039    let simplb =
3040     GButton.button ~label:"Simpl"
3041      ~packing:(hbox3#pack ~expand:false ~fill:false ~padding:5) () in
3042    let hbox4 =
3043     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
3044    let foldwhdb =
3045     GButton.button ~label:"Fold_whd"
3046      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3047    let foldreduceb =
3048     GButton.button ~label:"Fold_reduce"
3049      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3050    let foldsimplb =
3051     GButton.button ~label:"Fold_simpl"
3052      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3053    let cutb =
3054     GButton.button ~label:"Cut"
3055      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3056    let changeb =
3057     GButton.button ~label:"Change"
3058      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3059    let letinb =
3060     GButton.button ~label:"Let ... In"
3061      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3062    let ringb =
3063     GButton.button ~label:"Ring"
3064      ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
3065    let hbox5 =
3066     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
3067    let clearbodyb =
3068     GButton.button ~label:"ClearBody"
3069      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3070    let clearb =
3071     GButton.button ~label:"Clear"
3072      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3073    let fourierb =
3074     GButton.button ~label:"Fourier"
3075      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3076    let rewritesimplb =
3077     GButton.button ~label:"RewriteSimpl ->"
3078      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3079    let rewritebacksimplb =
3080     GButton.button ~label:"RewriteSimpl <-"
3081      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3082    let replaceb =
3083     GButton.button ~label:"Replace"
3084      ~packing:(hbox5#pack ~expand:false ~fill:false ~padding:5) () in
3085    let hbox6 =
3086     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
3087    let reflexivityb =
3088     GButton.button ~label:"Reflexivity"
3089      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3090    let symmetryb =
3091     GButton.button ~label:"Symmetry"
3092      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3093    let transitivityb =
3094     GButton.button ~label:"Transitivity"
3095      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3096    let existsb =
3097     GButton.button ~label:"Exists"
3098      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3099    let splitb =
3100     GButton.button ~label:"Split"
3101      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3102    let leftb =
3103     GButton.button ~label:"Left"
3104      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3105    let rightb =
3106     GButton.button ~label:"Right"
3107      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3108    let assumptionb =
3109     GButton.button ~label:"Assumption"
3110      ~packing:(hbox6#pack ~expand:false ~fill:false ~padding:5) () in
3111    let hbox7 =
3112     GPack.hbox ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5) () in
3113    let generalizeb =
3114     GButton.button ~label:"Generalize"
3115      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
3116    let absurdb =
3117     GButton.button ~label:"Absurd"
3118      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
3119    let contradictionb =
3120     GButton.button ~label:"Contradiction"
3121      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
3122    let searchpatternb =
3123     GButton.button ~label:"SearchPattern_Apply"
3124      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
3125    let decomposeb =
3126     GButton.button ~label:"Decompose"
3127      ~packing:(hbox7#pack ~expand:false ~fill:false ~padding:5) () in
3128
3129    ignore(exactb#connect#clicked exact) ;
3130    ignore(applyb#connect#clicked apply) ;
3131    ignore(elimintrossimplb#connect#clicked elimintrossimpl) ;
3132    ignore(elimtypeb#connect#clicked elimtype) ;
3133    ignore(whdb#connect#clicked whd) ;
3134    ignore(reduceb#connect#clicked reduce) ;
3135    ignore(simplb#connect#clicked simpl) ;
3136    ignore(foldwhdb#connect#clicked fold_whd) ;
3137    ignore(foldreduceb#connect#clicked fold_reduce) ;
3138    ignore(foldsimplb#connect#clicked fold_simpl) ;
3139    ignore(cutb#connect#clicked cut) ;
3140    ignore(changeb#connect#clicked change) ;
3141    ignore(letinb#connect#clicked letin) ;
3142    ignore(ringb#connect#clicked ring) ;
3143    ignore(clearbodyb#connect#clicked clearbody) ;
3144    ignore(clearb#connect#clicked clear) ;
3145    ignore(fourierb#connect#clicked fourier) ;
3146    ignore(rewritesimplb#connect#clicked rewritesimpl) ;
3147    ignore(rewritebacksimplb#connect#clicked rewritebacksimpl) ;
3148    ignore(replaceb#connect#clicked replace) ;
3149    ignore(reflexivityb#connect#clicked reflexivity) ;
3150    ignore(symmetryb#connect#clicked symmetry) ;
3151    ignore(transitivityb#connect#clicked transitivity) ;
3152    ignore(existsb#connect#clicked exists) ;
3153    ignore(splitb#connect#clicked split) ;
3154    ignore(leftb#connect#clicked left) ;
3155    ignore(rightb#connect#clicked right) ;
3156    ignore(assumptionb#connect#clicked assumption) ;
3157    ignore(generalizeb#connect#clicked generalize) ;
3158    ignore(absurdb#connect#clicked absurd) ;
3159    ignore(contradictionb#connect#clicked contradiction) ;
3160    ignore(introsb#connect#clicked intros) ;
3161    ignore(searchpatternb#connect#clicked searchPattern) ;
3162    ignore(proofw#connect#selection_changed (choose_selection proofw)) ;
3163    ignore(decomposeb#connect#clicked decompose) ;
3164   ))
3165 end
3166 ;;
3167
3168 class empty_page =
3169  let vbox1 = GPack.vbox () in
3170  let scrolled_window1 =
3171   GBin.scrolled_window ~border_width:10
3172    ~packing:(vbox1#pack ~expand:true ~padding:5) () in
3173  let proofw =
3174   GMathViewAux.single_selection_math_view ~width:400 ~height:275
3175    ~packing:(scrolled_window1#add) () in
3176 object(self)
3177  method proofw = (assert false : GMathViewAux.single_selection_math_view)
3178  method content = vbox1
3179  method compute = (assert false : unit)
3180 end
3181 ;;
3182
3183 let empty_page = new empty_page;;
3184
3185 class notebook =
3186 object(self)
3187  val notebook = GPack.notebook ()
3188  val pages = ref []
3189  val mutable skip_switch_page_event = false 
3190  val mutable empty = true
3191  method notebook = notebook
3192  method add_page n =
3193   let new_page = new page () in
3194    empty <- false ;
3195    pages := !pages @ [n,lazy (setgoal n),new_page] ;
3196    notebook#append_page
3197     ~tab_label:((GMisc.label ~text:("?" ^ string_of_int n) ())#coerce)
3198     new_page#content#coerce
3199  method remove_all_pages ~skip_switch_page_event:skip =
3200   if empty then
3201    notebook#remove_page 0 (* let's remove the empty page *)
3202   else
3203    List.iter (function _ -> notebook#remove_page 0) !pages ;
3204   pages := [] ;
3205   skip_switch_page_event <- skip
3206  method set_current_page ~may_skip_switch_page_event n =
3207   let (_,_,page) = List.find (function (m,_,_) -> m=n) !pages in
3208    let new_page = notebook#page_num page#content#coerce in
3209     if may_skip_switch_page_event && new_page <> notebook#current_page then
3210      skip_switch_page_event <- true ;
3211     notebook#goto_page new_page
3212  method set_empty_page =
3213   empty <- true ;
3214   pages := [] ;
3215   notebook#append_page
3216    ~tab_label:((GMisc.label ~text:"No proof in progress" ())#coerce)
3217    empty_page#content#coerce
3218  method proofw =
3219   let (_,_,page) = List.nth !pages notebook#current_page in
3220    page#proofw
3221  initializer
3222   ignore
3223    (notebook#connect#switch_page
3224     (function i ->
3225       let skip = skip_switch_page_event in
3226        skip_switch_page_event <- false ;
3227        if not skip then
3228         try
3229          let (metano,setgoal,page) = List.nth !pages i in
3230           ProofEngine.goal := Some metano ;
3231           Lazy.force (page#compute) ;
3232           Lazy.force setgoal
3233         with _ -> ()
3234     ))
3235 end
3236 ;;
3237
3238 (* Main window *)
3239
3240 class rendering_window output (notebook : notebook) =
3241  let scratch_window = new scratch_window in
3242  let window =
3243   GWindow.window ~title:"MathML viewer" ~border_width:0
3244    ~allow_shrink:false () in
3245  let vbox_for_menu = GPack.vbox ~packing:window#add () in
3246  (* menus *)
3247  let handle_box = GBin.handle_box ~border_width:2
3248   ~packing:(vbox_for_menu#pack ~padding:0) () in
3249  let menubar = GMenu.menu_bar ~packing:handle_box#add () in
3250  let factory0 = new GMenu.factory menubar in
3251  let accel_group = factory0#accel_group in
3252  (* file menu *)
3253  let file_menu = factory0#add_submenu "File" in
3254  let factory1 = new GMenu.factory file_menu ~accel_group in
3255  let export_to_postscript_menu_item =
3256   begin
3257    let _ =
3258     factory1#add_item "New Block of (Co)Inductive Definitions..."
3259      ~key:GdkKeysyms._B ~callback:new_inductive
3260    in
3261    let _ =
3262     factory1#add_item "New Proof or Definition..." ~key:GdkKeysyms._N
3263      ~callback:new_proof
3264    in
3265    let reopen_menu_item =
3266     factory1#add_item "Reopen a Finished Proof..." ~key:GdkKeysyms._R
3267      ~callback:open_
3268    in
3269    let qed_menu_item =
3270     factory1#add_item "Qed" ~key:GdkKeysyms._E ~callback:qed in
3271    ignore (factory1#add_separator ()) ;
3272    ignore
3273     (factory1#add_item "Load Unfinished Proof..." ~key:GdkKeysyms._L
3274       ~callback:load) ;
3275    let save_menu_item =
3276     factory1#add_item "Save Unfinished Proof" ~key:GdkKeysyms._S ~callback:save
3277    in
3278    ignore
3279     (save_set_sensitive := function b -> save_menu_item#misc#set_sensitive b);
3280    ignore (!save_set_sensitive false);
3281    ignore (qed_set_sensitive:=function b -> qed_menu_item#misc#set_sensitive b);
3282    ignore (!qed_set_sensitive false);
3283    ignore (factory1#add_separator ()) ;
3284    let export_to_postscript_menu_item =
3285     factory1#add_item "Export to PostScript..."
3286      ~callback:(export_to_postscript output) in
3287    ignore (factory1#add_separator ()) ;
3288    ignore
3289     (factory1#add_item "Exit" ~key:GdkKeysyms._Q ~callback:GMain.Main.quit) ;
3290    export_to_postscript_menu_item
3291   end in
3292  (* edit menu *)
3293  let edit_menu = factory0#add_submenu "Edit Current Proof" in
3294  let factory2 = new GMenu.factory edit_menu ~accel_group in
3295  let focus_and_proveit_set_sensitive = ref (function _ -> assert false) in
3296  let proveit_menu_item =
3297   factory2#add_item "Prove It" ~key:GdkKeysyms._I
3298    ~callback:(function () -> proveit ();!focus_and_proveit_set_sensitive false)
3299  in
3300  let focus_menu_item =
3301   factory2#add_item "Focus" ~key:GdkKeysyms._F
3302    ~callback:(function () -> focus () ; !focus_and_proveit_set_sensitive false)
3303  in
3304  let _ =
3305   focus_and_proveit_set_sensitive :=
3306    function b ->
3307     proveit_menu_item#misc#set_sensitive b ;
3308     focus_menu_item#misc#set_sensitive b
3309  in
3310  let _ = !focus_and_proveit_set_sensitive false in
3311  (* edit term menu *)
3312  let edit_term_menu = factory0#add_submenu "Edit Term" in
3313  let factory5 = new GMenu.factory edit_term_menu ~accel_group in
3314  let check_menu_item =
3315   factory5#add_item "Check Term" ~key:GdkKeysyms._C
3316    ~callback:(check scratch_window) in
3317  let _ = check_menu_item#misc#set_sensitive false in
3318  (* search menu *)
3319  let settings_menu = factory0#add_submenu "Search" in
3320  let factory4 = new GMenu.factory settings_menu ~accel_group in
3321  let _ =
3322   factory4#add_item "Locate..." ~key:GdkKeysyms._T
3323    ~callback:locate in
3324  let searchPattern_menu_item =
3325   factory4#add_item "SearchPattern..." ~key:GdkKeysyms._D
3326    ~callback:completeSearchPattern in
3327  let _ = searchPattern_menu_item#misc#set_sensitive false in
3328  let show_menu_item =
3329   factory4#add_item "Show..." ~key:GdkKeysyms._H ~callback:show
3330  in
3331  let insert_query_item =
3332   factory4#add_item "Insert Query (Experts Only)..." ~key:GdkKeysyms._U
3333    ~callback:insertQuery in
3334  (* settings menu *)
3335  let settings_menu = factory0#add_submenu "Settings" in
3336  let factory3 = new GMenu.factory settings_menu ~accel_group in
3337  let _ =
3338   factory3#add_item "Edit Aliases" ~key:GdkKeysyms._A
3339    ~callback:edit_aliases in
3340  let _ = factory3#add_separator () in
3341  let _ =
3342   factory3#add_item "MathML Widget Preferences..." ~key:GdkKeysyms._P
3343    ~callback:(function _ -> (settings_window ())#show ()) in
3344  (* accel group *)
3345  let _ = window#add_accel_group accel_group in
3346  (* end of menus *)
3347  let hbox0 =
3348   GPack.hbox
3349    ~packing:(vbox_for_menu#pack ~expand:true ~fill:true ~padding:5) () in
3350  let vbox =
3351   GPack.vbox ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
3352  let scrolled_window0 =
3353   GBin.scrolled_window ~border_width:10
3354    ~packing:(vbox#pack ~expand:true ~padding:5) () in
3355  let _ = scrolled_window0#add output#coerce in
3356  let frame =
3357   GBin.frame ~label:"Insert Term"
3358    ~packing:(vbox#pack ~expand:true ~fill:true ~padding:5) () in
3359  let scrolled_window1 =
3360   GBin.scrolled_window ~border_width:5
3361    ~packing:frame#add () in
3362  let inputt =
3363   new term_editor ~width:400 ~height:100 ~packing:scrolled_window1#add ()
3364    ~isnotempty_callback:
3365     (function b ->
3366       check_menu_item#misc#set_sensitive b ;
3367       searchPattern_menu_item#misc#set_sensitive b) in
3368  let vboxl =
3369   GPack.vbox ~packing:(hbox0#pack ~expand:true ~fill:true ~padding:5) () in
3370  let _ =
3371   vboxl#pack ~expand:true ~fill:true ~padding:5 notebook#notebook#coerce in
3372  let frame =
3373   GBin.frame ~shadow_type:`IN ~packing:(vboxl#pack ~expand:true ~padding:5) ()
3374  in
3375  let outputhtml =
3376   GHtml.xmhtml
3377    ~source:"<html><body bgColor=\"white\"></body></html>"
3378    ~width:400 ~height: 100
3379    ~border_width:20
3380    ~packing:frame#add
3381    ~show:true () in
3382 object
3383  method outputhtml = outputhtml
3384  method inputt = inputt
3385  method output = (output : GMathViewAux.single_selection_math_view)
3386  method notebook = notebook
3387  method show = window#show
3388  initializer
3389   notebook#set_empty_page ;
3390   export_to_postscript_menu_item#misc#set_sensitive false ;
3391   check_term := (check_term_in_scratch scratch_window) ;
3392
3393   (* signal handlers here *)
3394   ignore(output#connect#selection_changed
3395    (function elem ->
3396      choose_selection output elem ;
3397      !focus_and_proveit_set_sensitive true
3398    )) ;
3399   ignore (output#connect#click (show_in_show_window_callback output)) ;
3400   let settings_window = new settings_window output scrolled_window0
3401    export_to_postscript_menu_item (choose_selection output) in
3402   set_settings_window settings_window ;
3403   set_outputhtml outputhtml ;
3404   ignore(window#event#connect#delete (fun _ -> GMain.Main.quit () ; true )) ;
3405   Logger.log_callback :=
3406    (Logger.log_to_html ~print_and_flush:(output_html outputhtml))
3407 end;;
3408
3409 (* MAIN *)
3410
3411 let initialize_everything () =
3412  let module U = Unix in
3413   let output = GMathViewAux.single_selection_math_view ~width:350 ~height:280 () in
3414   let notebook = new notebook in
3415    let rendering_window' = new rendering_window output notebook in
3416     set_rendering_window rendering_window' ;
3417     mml_of_cic_term_ref := mml_of_cic_term ;
3418     rendering_window'#show () ;
3419     GMain.Main.main ()
3420 ;;
3421
3422 let _ =
3423  if !usedb then
3424   begin
3425    Mqint.set_database Mqint.postgres_db ;
3426    Mqint.init postgresqlconnectionstring ;
3427   end ;
3428  ignore (GtkMain.Main.init ()) ;
3429  initialize_everything () ;
3430  if !usedb then Mqint.close ();
3431 ;;