]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaTypes.ml
snapshot, notably:
[helm.git] / helm / matita / matitaTypes.ml
1 (* Copyright (C) 2004, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 open Printf
27
28 exception Not_implemented of string
29 let not_implemented feature = raise (Not_implemented feature)
30
31 exception Failure of string
32 let error s = raise (Failure s)
33 let warning s = prerr_endline ("MATITA WARNING:\t" ^ s)
34 let debug_print s =
35   if BuildTimeConf.debug then prerr_endline ("MATITA DEBUG:\t" ^ s)
36
37 let explain = function
38   | StatefulProofEngine.Tactic_failure exn ->
39       sprintf "Tactic failed: %s"(Printexc.to_string exn)
40   | StatefulProofEngine.Observer_failures exns ->
41       String.concat "\n"
42         (List.map (fun (_, exn) -> Printexc.to_string exn) exns)
43   | CicTextualParser2.Parse_error (floc, msg) ->
44       let (x, y) = CicAst.loc_of_floc floc in
45       sprintf "parse error at character %d-%d: %s" x y msg
46   | CicEnvironment.Object_not_found uri ->
47       sprintf "object not found: %s" (UriManager.string_of_uri uri)
48   | exn -> sprintf "Uncaught exception: %s" (Printexc.to_string exn)
49
50 exception No_proof
51
52 exception Cancel
53 exception Unbound_identifier of string
54
55 (*
56 let untitled_con_uri = UriManager.uri_of_string "cic:/untitled.con"
57 let untitled_def_uri = UriManager.uri_of_string "cic:/untitled.ind"
58
59 let unopt_uri ?(kind = `Con) = function
60   | Some uri -> uri
61   | None ->
62       (match kind with `Con -> untitled_con_uri | `Def -> untitled_def_uri)
63 *)
64 let unopt_uri = function Some uri -> uri | None -> assert false
65
66 class type parserr =  (* "parser" is a keyword :-( *)
67   object
68     method parseTerm:     char Stream.t -> DisambiguateTypes.term
69     method parseTactical: char Stream.t -> DisambiguateTypes.tactical
70   end
71
72 class type console =
73   object
74     method echo_message   : string -> unit
75     method echo_error     : string -> unit
76     method clear          : unit -> unit
77     method wrap_exn       : 'a. (unit -> 'a) -> 'a option
78   end
79
80 class type disambiguator =
81   object
82     method parserr: parserr
83     method setParserr: parserr -> unit
84
85     method env: DisambiguateTypes.environment
86     method setEnv: DisambiguateTypes.environment -> unit
87
88     method disambiguateTerm:
89       ?context:Cic.context -> ?metasenv:Cic.metasenv ->
90       ?env:DisambiguateTypes.environment ->
91         char Stream.t ->
92           (DisambiguateTypes.environment * Cic.metasenv * Cic.term *
93            CicUniv.universe_graph)
94     method disambiguateTermAst:
95       ?context:Cic.context -> ?metasenv:Cic.metasenv ->
96       ?env:DisambiguateTypes.environment ->
97         DisambiguateTypes.term ->
98           (DisambiguateTypes.environment * Cic.metasenv * Cic.term *
99            CicUniv.universe_graph) 
100
101     method disambiguateTermAsts:
102       ?metasenv:Cic.metasenv ->
103       ?env:DisambiguateTypes.environment ->
104       DisambiguateTypes.term list ->
105           (DisambiguateTypes.environment * Cic.metasenv * Cic.term list *
106           CicUniv.universe_graph)
107   end
108
109 class type proof =
110   object
111     inherit [unit] StatefulProofEngine.status
112
113     method toXml: Xml.token Stream.t * Xml.token Stream.t
114     method toString: string
115   end
116
117 class type currentProof =
118   object
119     method onGoing: unit -> bool
120     method proof: proof
121     method start: proof -> unit
122     method abort: unit -> unit
123     method quit: unit -> unit
124   end
125
126 type command_outcome = bool * bool
127
128 class type interpreter =
129   object
130     method endOffset : int
131     method evalAst : DisambiguateTypes.tactical -> command_outcome
132     method evalPhrase : string -> command_outcome
133 (*     method evalStream: char Stream.t -> command_outcome *)
134     method reset : unit
135   end
136
137 type term_source =
138   [ `Ast of DisambiguateTypes.term
139   | `Cic of Cic.term
140   | `String of string
141   ]
142
143 class type mathViewer =
144   object
145     method checkTerm: term_source -> unit
146   end
147
148 class type cicBrowser =
149   object
150     method loadUri: string -> unit
151     method loadTerm: term_source -> unit
152   end
153
154 type mml_of_cic_sequent =
155   Cic.metasenv -> Cic.conjecture ->
156     Gdome.document *
157     ((Cic.id, Cic.term) Hashtbl.t *
158     (Cic.id, Cic.id option) Hashtbl.t *
159     (string, Cic.hypothesis) Hashtbl.t)
160
161 type mml_of_cic_object =
162   explode_all:bool -> UriManager.uri -> Cic.annobj ->
163   (string, string) Hashtbl.t -> (string, Cic2acic.anntypes) Hashtbl.t ->
164     Gdome.document
165
166 type namer = ProofEngineTypes.mk_fresh_name_type
167
168 type choose_uris_callback =
169   selection_mode:[`MULTIPLE|`SINGLE] ->
170   ?title:string -> ?msg:string -> ?nonvars_button:bool ->
171   string list ->
172     string list
173 type choose_interp_callback = (string * string) list list -> int list
174
175 let mono_uris_callback ~selection_mode ?title ?msg ?nonvars_button _ =
176   raise (Failure "ambiguous input")
177 let mono_interp_callback _ = raise (Failure "ambiguous input")
178