ProgTutorial/antiquote_setup.ML
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sun, 06 Apr 2014 12:45:54 +0100
changeset 555 2c34c69236ce
parent 553 c53d74b34123
child 557 77ea2de0ca62
permissions -rw-r--r--
updated to new isabelle

(* Auxiliary antiquotations for the tutorial. *)

structure AntiquoteSetup =
struct

open OutputTutorial

(* functions for generating appropriate expressions *)
fun translate_string f str =
  implode (map f (Symbol.explode str))

fun prefix_lines prfx txt = 
  map (fn s => prfx ^ s) (split_lines txt)

fun ml_with_vars ys txt = 
    implode ["fn ", (case ys of [] => "_" | _ => enclose "(" ")" (commas ys)), " => (", txt, ")"]

fun ml_with_struct (NONE) txt = txt 
  | ml_with_struct (SOME st) txt = implode ["let open ", st, " in ", txt, " end"]

fun ml_val vs stru txt = 
    txt |> ml_with_struct stru
        |> ml_with_vars  vs 

fun ml_pat (lhs, pat) =
  implode ["val ", translate_string (fn "\<dots>" => "_" | s => s) pat, " = ", lhs] 

fun ml_struct txt = 
  implode ["functor DUMMY_FUNCTOR() = struct structure DUMMY = ", txt, " end"]

fun ml_type txt = 
  implode ["val _ = NONE : (", txt, ") option"];

(* eval function *)
fun eval_fn ctxt exp =
  ML_Context.eval_source_in (SOME ctxt) ML_Compiler.flags 
    {delimited = false, text = exp, pos = Position.none}

(* checks and prints a possibly open expressions, no index *)
fun output_ml {context = ctxt, ...} (txt, (vs, stru)) =
  (eval_fn ctxt (ml_val vs stru txt); 
   output ctxt (split_lines txt))

val parser_ml = Scan.lift (Args.name --
  (Scan.optional (Args.$$$ "for" |-- Parse.!!! (Scan.repeat1 Args.name)) [] --
   Scan.option (Args.$$$ "in"  |-- Parse.!!! Args.name))) 

(* checks and prints a single ML-item and produces an index entry *)
fun output_ml_ind {context = ctxt, ...} (txt, stru) =
  (eval_fn ctxt (ml_val [] stru txt); 
   case (stru, Long_Name.base_name txt, Long_Name.qualifier txt) of
     (NONE, bn, "")  => output_indexed ctxt {main = Code txt, minor = NoString} (split_lines txt)
   | (NONE, bn, qn)  => output_indexed ctxt {main = Code bn,  minor = Struct qn} (split_lines txt)
   | (SOME st, _, _) => output_indexed ctxt {main = Code txt, minor = Struct st} (split_lines txt))

val parser_ml_ind = Scan.lift (Args.name --
  Scan.option (Args.$$$ "in"  |-- Parse.!!! Args.name))

(* checks and prints structures *)
fun gen_output_struct outfn ctxt txt = 
  (eval_fn ctxt (ml_struct txt); 
   outfn {main = Code txt, minor = Plain "structure"} (split_lines txt))

fun output_struct {context = ctxt, ...} = gen_output_struct (K (output ctxt)) ctxt 
fun output_struct_ind {context = ctxt, ...} = gen_output_struct (output_indexed ctxt) ctxt 

(* prints functors; no checks *)
fun gen_output_funct outfn txt = 
  (outfn {main = Code txt, minor = Plain "functor"} (split_lines txt))

fun output_funct {context = ctxt, ...} = gen_output_funct (K (output ctxt)) 
fun output_funct_ind {context = ctxt, ...} = gen_output_funct (output_indexed ctxt)

(* checks and prints types *)
fun gen_output_type outfn ctxt txt = 
  (eval_fn ctxt (ml_type txt); 
   outfn {main = Code txt, minor = Plain "type"} (split_lines txt))

fun output_type {context = ctxt, ...} = gen_output_type (K (output ctxt)) ctxt
fun output_type_ind {context = ctxt, ...} = gen_output_type (output_indexed ctxt) ctxt 

(* checks and expression agains a result pattern *)
fun output_response {context = ctxt, ...} (lhs, pat) = 
    (eval_fn ctxt (ml_pat (lhs, pat));
     (*write_file_ml_blk lhs (Proof_Context.theory_of ctxt);*)
     output ctxt ((prefix_lines "" lhs) @ (prefix_lines "> " pat)))

(* checks the expressions, but does not check it against a result pattern *)
fun output_response_fake {context = ctxt, ...} (lhs, pat) = 
    (eval_fn ctxt (ml_val [] NONE lhs);
     (*write_file_ml_blk lhs (Proof_Context.theory_of ctxt);*)
     output ctxt ((split_lines lhs) @ (prefix_lines "> " pat)))

(* checks the expressions, but does not check it against a result pattern *)
fun ouput_response_fake_both {context = ctxt, ...} (lhs, pat) = 
    output ctxt ((split_lines lhs) @ (prefix_lines "> " pat))

val single_arg = Scan.lift (Args.name)
val two_args   = Scan.lift (Args.name -- Args.name)
val test = Scan.lift (Args.name -- Args.name -- Scan.option (Args.$$$ "with"  |-- Args.name))

val ml_setup = 
  Thy_Output.antiquotation @{binding "ML"} parser_ml output_ml
  #> Thy_Output.antiquotation @{binding "ML_ind"} parser_ml_ind output_ml_ind
  #> Thy_Output.antiquotation @{binding "ML_type"} single_arg output_type
  #> Thy_Output.antiquotation @{binding "ML_type_ind"} single_arg output_type_ind
  #> Thy_Output.antiquotation @{binding "ML_struct"} single_arg output_struct
  #> Thy_Output.antiquotation @{binding "ML_struct_ind"} single_arg output_struct_ind
  #> Thy_Output.antiquotation @{binding "ML_funct"} single_arg output_funct
  #> Thy_Output.antiquotation @{binding "ML_funct_ind"} single_arg output_funct_ind
  #> Thy_Output.antiquotation @{binding "ML_response"} two_args output_response
  #> Thy_Output.antiquotation @{binding "ML_response_fake"} two_args output_response_fake
  #> Thy_Output.antiquotation @{binding "ML_response_fake_both"} two_args ouput_response_fake_both

(* FIXME: experimental *)
fun ml_eq (lhs, pat, eq) =
  implode ["val true = ((", eq, ") (", lhs, ",", pat, "))"] 

fun output_response_eq {context = ctxt, ...} ((lhs, pat), eq) = 
    (case eq of 
       NONE => eval_fn ctxt (ml_pat (lhs, pat))
     | SOME e => eval_fn ctxt (ml_eq (lhs, pat, e));
     output ctxt ((prefix_lines "" lhs) @ (prefix_lines "> " pat)))

val ml_response_setup = 
  Thy_Output.antiquotation @{binding "ML_response_eq"} test output_response_eq

(* checks whether a file exists in the Isabelle distribution *)
fun href_link txt =
let 
  val raw = Symbol.encode_raw
  val path = "http://isabelle.in.tum.de/repos/isabelle/raw-file/tip/src/"    
in
 implode [raw "\\href{", raw path, raw txt, raw "}{", txt, raw "}"]
end 

fun check_file_exists {context = ctxt, ...} txt =
  (if File.exists (Path.append (Path.explode ("~~/src")) (Path.explode txt)) 
   then output ctxt [href_link txt]
   else error (implode ["Source file ", quote txt, " does not exist."]))

val ml_file_setup = Thy_Output.antiquotation @{binding "ML_file"} single_arg check_file_exists


(* replaces the official subgoal antiquotation with one *)
(* that is closer to the actual output                  *)
fun proof_state state =
  (case try (Proof.goal o Toplevel.proof_of) state of
    SOME {goal, ...} => goal
  | _ => error "No proof state");


fun output_goals  {state = node, context = ctxt, ...} _ = 
let
  fun subgoals 0 = ""
    | subgoals 1 = "goal (1 subgoal):"
    | subgoals n = "goal (" ^ string_of_int n ^ " subgoals):"

  val state = proof_state node
  val goals = Goal_Display.pretty_goal ctxt state

  val {prop, ...} = rep_thm state;
  val (As, _) = Logic.strip_horn prop;
  val output  = (case (length As) of
                      0 => [goals] 
                    | n => [Pretty.str (subgoals n), goals])  
in 
  Thy_Output.output ctxt output
end


fun output_raw_goal_state  {state, context = ctxt, ...}  _ = 
  let
    val goals = proof_state state
    val output  = [Pretty.str (Syntax.string_of_term ctxt (prop_of goals))]  
  in
    Thy_Output.output ctxt output
  end

val subgoals_setup = 
  Thy_Output.antiquotation @{binding "subgoals"} (Scan.succeed ()) output_goals
val raw_goal_state_setup = 
  Thy_Output.antiquotation @{binding "raw_goal_state"} (Scan.succeed ()) output_raw_goal_state

val setup =
  ml_setup #>
  ml_response_setup #>
  ml_file_setup #>
  subgoals_setup #>
  raw_goal_state_setup

end;