aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/interface.mli
diff options
context:
space:
mode:
authorGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-25 14:14:14 +0000
committerGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-04-25 14:14:14 +0000
commitdb7b19f0f1d6b18bcc62fbedccad7a56f72315f2 (patch)
tree42242124105af8795b5486eeade6bbbb95db55e3 /lib/interface.mli
parentc4f8385b91d464e8ad0cf826eb02e4a34bbb6f15 (diff)
Coqide: new feedback mechanism for structured content
This amounts to a new type of message called "feedback" and defined in Interface to hold structured data. Coq sends feedback messages asynchronously (they are all fetched, like regular messages, together with the main response to a call) and they are related to a specific sentence by an id. Other changes: - CoqOps pushes the sentence to be processed onto the cmd_stack before processing it and pulls it back if Coq.intep fails, in this way the handler for feedback messages can just look at the cmd_stack to find the offset of the sentence to eventually apply the new Gtk.tag. - The class coqops takes in input a coqtop to set its feedback_handle. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16451 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'lib/interface.mli')
-rw-r--r--lib/interface.mli28
1 files changed, 20 insertions, 8 deletions
diff --git a/lib/interface.mli b/lib/interface.mli
index 349f7baf9..d54fb8476 100644
--- a/lib/interface.mli
+++ b/lib/interface.mli
@@ -103,7 +103,7 @@ type coq_info = {
compile_date : string;
}
-(** Coq messages *)
+(** Coq unstructured messages *)
type message_level =
| Debug of string
@@ -117,6 +117,20 @@ type message = {
message_content : string;
}
+(** Coq "semantic" infos obtained during parsing/execution *)
+type edit_id = int
+
+type feedback_content =
+ | AddedAxiom
+ | Processed
+
+type feedback = {
+ edit_id : edit_id;
+ content : feedback_content;
+}
+
+(** Calls result *)
+
type location = (int * int) option (* start and end of the error *)
type 'a value =
@@ -126,18 +140,16 @@ type 'a value =
(* Request/Reply message protocol between Coq and CoqIde *)
-(** Running a command (given as a string).
- The 1st flag indicates whether to use "raw" mode
- (less sanity checks, no impact on the undo stack).
- Suitable e.g. for queries, or for the Set/Unset
+(** Running a command (given as its id and its text).
+ "raw" mode (less sanity checks, no impact on the undo stack)
+ is suitable for queries, or for the Set/Unset
of display options that coqide performs all the time.
- The 2nd flag controls the verbosity.
The returned string contains the messages produced
- by this command, but not the updated goals (they are
+ but not the updated goals (they are
to be fetch by a separated [current_goals]). *)
-type interp_sty = raw * verbose * string
(* spiwack: [Inl] for safe and [Inr] for unsafe. *)
type interp_rty = (string,string) Util.union
+type interp_sty = edit_id * raw * verbose * string
(** Backtracking by at least a certain number of phrases.
No finished proofs will be re-opened. Instead,