]> matita.cs.unibo.it Git - helm.git/blob - helm/matita/matitaTypes.mli
* Part of matita that used to deal with the library moved into ocaml/library
[helm.git] / helm / matita / matitaTypes.mli
1 (* Copyright (C) 2004-2005, 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 exception Cancel
27 exception Statement_error of string
28 val statement_error : string -> 'a
29
30 exception Command_error of string
31 val command_error : string -> 'a
32
33 exception Option_error of string * string
34 exception Unbound_identifier of string
35
36 type incomplete_proof = {
37   proof: ProofEngineTypes.proof;
38   stack: Continuationals.Stack.t;
39 }
40
41 type proof_status =
42     No_proof
43   | Incomplete_proof of incomplete_proof
44   | Proof of ProofEngineTypes.proof
45   | Intermediate of Cic.metasenv
46
47 module StringMap : Map.S with type key = String.t
48
49 type option_value =
50   | String of string
51   | Int of int
52 type options = option_value StringMap.t
53 val no_options : 'a StringMap.t
54
55 type status = {
56   aliases: DisambiguateTypes.environment;         (** disambiguation aliases *)
57   multi_aliases: DisambiguateTypes.multiple_environment;
58   moo_content_rev: GrafiteMarshal.moo;
59   proof_status: proof_status;                             (** logical status *)
60   options: options;
61   objects: (UriManager.uri * string) list;  (** in-scope objects, with paths *)
62   coercions: UriManager.uri list;                      (** defined coercions *)
63   notation_ids: CicNotation.notation_id list;      (** in-scope notation ids *)
64 }
65
66 val set_metasenv: Cic.metasenv -> status -> status
67
68   (** list is not reversed, head command will be the first emitted *)
69 val add_moo_content: GrafiteMarshal.ast_command list -> status -> status
70 val add_moo_metadata: GrafiteAst.metadata list -> status -> status
71
72 val dump_status : status -> unit
73 val get_option : status -> StringMap.key -> option_value
74 val get_string_option : status -> StringMap.key -> string
75 val set_option : status -> StringMap.key -> string -> status
76
77 class type console =
78   object
79     method choose_uri : string list -> string
80     method clear : unit -> unit
81     method echo_error : string -> unit
82     method echo_message : string -> unit
83     method show : ?msg:string -> unit -> unit
84     method wrap_exn : (unit -> 'a) -> 'a option
85   end
86
87 type abouts = [ `Blank | `Current_proof | `Us ]
88
89 type mathViewer_entry =
90   [ `About of abouts
91   | `Check of string
92   | `Cic of Cic.term * Cic.metasenv
93   | `Dir of string
94   | `Uri of UriManager.uri
95   | `Whelp of string * UriManager.uri list ]
96
97 val string_of_entry :
98   [< `About of [< `Blank | `Current_proof | `Us ]
99    | `Check of 'a
100    | `Cic of 'b * 'c
101    | `Dir of string
102    | `Uri of UriManager.uri
103    | `Whelp of string * 'd ] ->
104   string
105
106 val entry_of_string :
107   string -> [> `About of [> `Blank | `Current_proof | `Us ] ]
108
109 class type mathViewer =
110   object
111     method show_entry : ?reuse:bool -> mathViewer_entry -> unit
112     method show_uri_list :
113       ?reuse:bool -> entry:mathViewer_entry -> UriManager.uri list -> unit
114   end
115
116 val qualify: status -> string -> string
117
118 val get_current_proof: status -> ProofEngineTypes.proof
119 val get_proof_metasenv: status ->  Cic.metasenv
120 val get_proof_context: status -> ProofEngineTypes.goal -> Cic.context 
121 val get_proof_conclusion: status -> ProofEngineTypes.goal -> Cic.term
122 val get_stack: status -> Continuationals.Stack.t
123
124 val set_stack: Continuationals.Stack.t -> status -> status
125