]> matita.cs.unibo.it Git - helm.git/commitdiff
added script support
authorStefano Zacchiroli <zack@upsilon.cc>
Tue, 18 Jan 2005 18:17:33 +0000 (18:17 +0000)
committerStefano Zacchiroli <zack@upsilon.cc>
Tue, 18 Jan 2005 18:17:33 +0000 (18:17 +0000)
helm/ocaml/cic_disambiguation/cicTextualParser2.ml
helm/ocaml/cic_disambiguation/cicTextualParser2.mli
helm/ocaml/cic_disambiguation/disambiguateTypes.ml
helm/ocaml/cic_disambiguation/disambiguateTypes.mli
helm/ocaml/cic_disambiguation/test_parser.ml

index 3a5f76b673cbfe3d9ccdd20ddd9b00f092fa36ca..49b08a7c5d6b46bb942c01899ecfdf1dde178b61 100644 (file)
@@ -36,6 +36,7 @@ let debug_print s =
 let use_fresh_num_instances = false
 
 open Printf
+
 open DisambiguateTypes
 
 exception Parse_error of Token.flocation * string
@@ -59,11 +60,12 @@ let tactic = Grammar.Entry.create grammar "tactic"
 let tactical = Grammar.Entry.create grammar "tactical"
 let tactical0 = Grammar.Entry.create grammar "tactical0"
 let command = Grammar.Entry.create grammar "command"
+let script = Grammar.Entry.create grammar "script"
 
 let return_term loc term = CicAst.AttributedTerm (`Loc loc, term)
 let return_tactic loc tactic = TacticAst.LocatedTactic (loc, tactic)
 let return_tactical loc tactical = TacticAst.LocatedTactical (loc, tactical)
-let return_command loc cmd = cmd
+let return_command loc cmd = cmd  (* TODO ZACK FIXME uhm ... why we drop loc? *)
 
 let fail floc msg =
   let (x, y) = CicAst.loc_of_floc floc in
@@ -78,7 +80,7 @@ let int_opt = function
   | Some lexeme -> Some (int_of_string lexeme)
 
 EXTEND
-  GLOBAL: term term0 tactic tactical tactical0 command;
+  GLOBAL: term term0 tactic tactical tactical0 command script;
   int: [
     [ num = NUM ->
         try
@@ -421,6 +423,12 @@ EXTEND
         return_command loc (TacticAst.Check t)
     ]
   ];
+  script_entry: [
+    [ cmd = tactical0 -> Command cmd
+    | s = COMMENT -> Comment (loc, s)
+    ]
+  ];
+  script: [ [ entries = LIST0 script_entry; EOI -> (loc, entries) ] ];
 END
 
 let exc_located_wrapper f =
@@ -438,6 +446,8 @@ let parse_tactic stream =
   exc_located_wrapper (fun () -> (Grammar.Entry.parse tactic stream))
 let parse_tactical stream =
   exc_located_wrapper (fun () -> (Grammar.Entry.parse tactical0 stream))
+let parse_script stream =
+  exc_located_wrapper (fun () -> (Grammar.Entry.parse script stream))
 
 (**/**)
 
index 9ed3bdefcabef9024a7b556a2ba49ce7c13c48be..659bb2aa51747dee5a41bb54b3c41e18f5945f9f 100644 (file)
@@ -30,6 +30,7 @@ exception Parse_error of Token.flocation * string
 val parse_term:     char Stream.t -> DisambiguateTypes.term
 val parse_tactic:   char Stream.t -> DisambiguateTypes.tactic
 val parse_tactical: char Stream.t -> DisambiguateTypes.tactical
+val parse_script:   char Stream.t -> DisambiguateTypes.script
 
 (** {2 Grammar extensions} *)
 
index 18c78a2e8e9485b6f481b1ef3875d8c4c92bd097..292d78e4b1bbbaf8ad4c0c582b7221ce404ab075 100644 (file)
@@ -26,6 +26,8 @@
 type term = CicAst.term
 type tactic = (term, string) TacticAst.tactic
 type tactical = (term, string) TacticAst.tactical
+type script_entry = Command of tactical | Comment of CicAst.location * string
+type script = CicAst.location * script_entry list
 
 type domain_item =
  | Id of string               (* literal *)
@@ -50,14 +52,15 @@ and environment = codomain_item Environment.t
 
 module type Callbacks =
   sig
-    val interactive_user_uri_choice :
+    val interactive_user_uri_choice:
       selection_mode:[`SINGLE | `MULTIPLE] ->
       ?ok:string ->
       ?enable_button_for_non_vars:bool ->
       title:string -> msg:string -> id:string -> string list -> string list
-    val interactive_interpretation_choice :
+    val interactive_interpretation_choice:
       (string * string) list list -> int list
-    val input_or_locate_uri : title:string -> ?id:string -> unit -> UriManager.uri
+    val input_or_locate_uri:
+      title:string -> ?id:string -> unit -> UriManager.uri
   end
 
 let string_of_domain_item = function
@@ -67,13 +70,6 @@ let string_of_domain_item = function
 
 let string_of_domain dom =
   String.concat "; " (List.map string_of_domain_item dom)
-(*
-let string_of_domain dom =
-  let buf = Buffer.create 1024 in
-  Domain.iter
-    (fun item -> Buffer.add_string buf (string_of_domain_item item ^ "; "))
-    dom;
-  Buffer.contents buf
-*)
 
 let empty_environment = Environment.empty
+
index e88aa51bf3ef19b779e7e10c038b54b9cc0e1c54..c210849669320aaaa57e6e2cfc5e0cb2e119fe96 100644 (file)
@@ -52,7 +52,8 @@ module type Callbacks =
 
     (** @param title gtk window title for user prompting
      * @param id unbound identifier which originated this callback invocation *)
-    val input_or_locate_uri : title:string -> ?id:string -> unit -> UriManager.uri
+    val input_or_locate_uri:
+      title:string -> ?id:string -> unit -> UriManager.uri
   end
 
 val string_of_domain_item: domain_item -> string
@@ -64,4 +65,10 @@ type term = CicAst.term
 type tactic = (term, string) TacticAst.tactic
 type tactical = (term, string) TacticAst.tactical
 
+type script_entry =
+  | Command of tactical
+  | Comment of CicAst.location * string
+type script = CicAst.location * script_entry list
+
 val empty_environment: environment
+
index 51a0d911f23ada0464480b5af8749ca441697102..b7cace0cb1dece3d5f54ae179acd9d251a39a7a5 100644 (file)
@@ -34,41 +34,53 @@ let mode =
     | "term" -> prerr_endline "Term"; `Term
     | "tactic" -> prerr_endline "Tactic"; `Tactic
     | "tactical" -> prerr_endline "Tactical"; `Tactical
+    | "script" -> prerr_endline "Script"; `Script
     | _ ->
         prerr_endline "What???????";
         exit 1
   with Invalid_argument _ -> prerr_endline "Term"; `Term
 
 let _ =
-  let ic = stdin in
-  try
-    while true do
-      let line = input_line ic in
-      let istream = Stream.of_string line in
-      try
-        (match mode with
-        | `Term ->
-            let term = CicTextualParser2.parse_term istream in
-            print_endline (BoxPp.pp_term term)
-        | `Tactic ->
-            let tac = CicTextualParser2.parse_tactic istream in
-            print_endline (TacticAstPp.pp_tactic tac)
-        | `Tactical ->
-            let tac = CicTextualParser2.parse_tactical istream in
-            print_endline (pp_tactical tac)
-        | `Alias ->
-            let env = CicTextualParser2.EnvironmentP3.of_string line in
-            print_endline (CicTextualParser2.EnvironmentP3.to_string env));
-        flush stdout
-      with
-      | CicTextualParser2.Parse_error (floc, msg) ->
-          let (x, y) = CicAst.loc_of_floc floc in
-          let before = String.sub line 0 x in
-          let error = String.sub line x (y - x) in
-          let after = String.sub line y (String.length line - y) in
-          eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
-          prerr_endline (sprintf "at character %d-%d: %s" x y msg)
-    done
-  with End_of_file ->
-    close_in ic
+  if mode = `Script then
+    let ic = open_in Sys.argv.(2) in
+    let istream = Stream.of_channel ic in
+    let (loc, script) = CicTextualParser2.parse_script istream in
+    List.iter
+      (function
+        | DisambiguateTypes.Command cmd -> print_endline (pp_tactical cmd)
+        | DisambiguateTypes.Comment (loc, s) -> print_endline s)
+      script
+  else
+    let ic = stdin in
+    try
+      while true do
+        let line = input_line ic in
+        let istream = Stream.of_string line in
+        try
+          (match mode with
+          | `Term ->
+              let term = CicTextualParser2.parse_term istream in
+              print_endline (BoxPp.pp_term term)
+          | `Tactic ->
+              let tac = CicTextualParser2.parse_tactic istream in
+              print_endline (TacticAstPp.pp_tactic tac)
+          | `Tactical ->
+              let tac = CicTextualParser2.parse_tactical istream in
+              print_endline (pp_tactical tac)
+          | `Alias ->
+              let env = CicTextualParser2.EnvironmentP3.of_string line in
+              print_endline (CicTextualParser2.EnvironmentP3.to_string env)
+          | _ -> assert false);
+          flush stdout
+        with
+        | CicTextualParser2.Parse_error (floc, msg) ->
+            let (x, y) = CicAst.loc_of_floc floc in
+            let before = String.sub line 0 x in
+            let error = String.sub line x (y - x) in
+            let after = String.sub line y (String.length line - y) in
+            eprintf "%s\e[01;31m%s\e[00m%s\n" before error after;
+            prerr_endline (sprintf "at character %d-%d: %s" x y msg)
+      done
+    with End_of_file ->
+      close_in ic