aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/fake_ide.ml
diff options
context:
space:
mode:
authorGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-08 18:51:35 +0000
committerGravatar gareuselesinge <gareuselesinge@85f007b7-540e-0410-9357-904b9bb8a0f7>2013-08-08 18:51:35 +0000
commitb2f2727670853183bfbcbafb9dc19f0f71494a7b (patch)
tree8d9cea5ed2713ab2bfe3b142816a48c5ba615758 /tools/fake_ide.ml
parent1f48326c7edf7f6e7062633494d25b254a6db82c (diff)
State Transaction Machine
The process_transaction function adds a new edge to the Dag without executing the transaction (when possible). The observe id function runs the transactions necessary to reach to the state id. Transaction being on a merged branch are not executed but stored into a future. The finish function calls observe on the tip of the current branch. Imperative modifications to the environment made by some tactics are now explicitly declared by the tactic and modeled as let-in/beta-redexes at the root of the proof term. An example is the abstract tactic. This is the work described in the Coq Workshop 2012 paper. Coq is compile with thread support from now on. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@16674 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'tools/fake_ide.ml')
-rw-r--r--tools/fake_ide.ml36
1 files changed, 28 insertions, 8 deletions
diff --git a/tools/fake_ide.ml b/tools/fake_ide.ml
index 14499c228..5bfa377f0 100644
--- a/tools/fake_ide.ml
+++ b/tools/fake_ide.ml
@@ -11,14 +11,13 @@
exception Comment
type coqtop = {
- in_chan : in_channel;
xml_printer : Xml_printer.t;
xml_parser : Xml_parser.t;
}
let logger level content = ()
-let eval_call call coqtop =
+let base_eval_call call coqtop =
prerr_endline (Serialize.pr_call call);
let xml_query = Serialize.of_call call in
Xml_printer.print coqtop.xml_printer xml_query;
@@ -36,18 +35,40 @@ let eval_call call coqtop =
in
let res = loop () in
prerr_endline (Serialize.pr_full_value call res);
- match res with Interface.Fail _ -> exit 1 | _ -> ()
+ match res with Interface.Fail _ -> exit 1 | x -> x
+
+let eval_call c q = ignore(base_eval_call c q)
+
+let ids = ref []
+let store_id = function
+ | Interface.Fail _ -> ()
+ | Interface.Good (id, _) -> ids := id :: !ids
+let rec erase_ids n =
+ if n = 0 then
+ match !ids with
+ | [] -> Stateid.initial_state_id
+ | x :: _ -> x
+ else match !ids with
+ | id :: rest -> ids := rest; erase_ids (n-1)
+ | [] -> exit 1
+let eid = ref 0
+let edit () = incr eid; !eid
let commands =
[ "INTERPRAWSILENT", (fun s -> eval_call (Serialize.interp (0,true,false,s)));
"INTERPRAW", (fun s -> eval_call (Serialize.interp (0,true,true,s)));
- "INTERPSILENT", (fun s -> eval_call (Serialize.interp (0,false,false,s)));
- "INTERP", (fun s -> eval_call (Serialize.interp (0,false,true,s)));
- "REWIND", (fun s -> eval_call (Serialize.rewind (int_of_string s)));
+ "INTERPSILENT", (fun s c ->
+ store_id (base_eval_call (Serialize.interp (edit(),false,false,s)) c));
+ "INTERP", (fun s c ->
+ store_id (base_eval_call (Serialize.interp (edit(),false,true,s)) c));
+ "REWIND", (fun s ->
+ let i = int_of_string s in
+ let id = erase_ids i in
+ eval_call (Serialize.backto id));
"GOALS", (fun _ -> eval_call (Serialize.goals ()));
"HINTS", (fun _ -> eval_call (Serialize.hints ()));
"GETOPTIONS", (fun _ -> eval_call (Serialize.get_options ()));
- "STATUS", (fun _ -> eval_call (Serialize.status ()));
+ "STATUS", (fun _ -> eval_call (Serialize.status false));
"INLOADPATH", (fun s -> eval_call (Serialize.inloadpath s));
"MKCASES", (fun s -> eval_call (Serialize.mkcases s));
"#", (fun _ -> raise Comment);
@@ -91,7 +112,6 @@ let main =
let op = Xml_printer.make (Xml_printer.TChannel cout) in
let () = Xml_parser.check_eof ip false in
{
- in_chan = cin;
xml_printer = op;
xml_parser = ip;
}