src/Doc/antiquote_setup.ML
author wenzelm
Sun, 02 Mar 2014 00:05:35 +0100
changeset 55831 3a9386b32211
parent 55828 42ac3cfb89f6
child 55837 154855d9a564
permissions -rw-r--r--
more markup for ML source;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
48985
5386df44a037 renamed doc-src to src/Doc;
wenzelm
parents: 48899
diff changeset
     1
(*  Title:      Doc/antiquote_setup.ML
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
     3
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
     4
Auxiliary antiquotations for the Isabelle manuals.
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
     5
*)
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
     6
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
     7
signature ANTIQUOTE_SETUP =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
     8
sig
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
     9
  val setup: theory -> theory
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    10
end;
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    11
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    12
structure Antiquote_Setup: ANTIQUOTE_SETUP =
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    13
struct
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
    14
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    15
(* misc utils *)
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    16
29736
ec3fc818b82e clean_string/clean_name: proper treatment of \<dash>;
wenzelm
parents: 29726
diff changeset
    17
fun translate f = Symbol.explode #> map f #> implode;
ec3fc818b82e clean_string/clean_name: proper treatment of \<dash>;
wenzelm
parents: 29726
diff changeset
    18
ec3fc818b82e clean_string/clean_name: proper treatment of \<dash>;
wenzelm
parents: 29726
diff changeset
    19
val clean_string = translate
26853
52cb0e965041 clean_string: map "_" to "\\_" (best used with underscore.sty);
wenzelm
parents: 26843
diff changeset
    20
  (fn "_" => "\\_"
30120
aaa4667285c8 uniform treatment of ML indexing, using general \indexdef macro for formal Isabelle/Isar entities;
wenzelm
parents: 29736
diff changeset
    21
    | "#" => "\\#"
52408
fa2dc6c6c94f updated operations on proof terms;
wenzelm
parents: 50239
diff changeset
    22
    | "$" => "\\$"
fa2dc6c6c94f updated operations on proof terms;
wenzelm
parents: 50239
diff changeset
    23
    | "%" => "\\%"
26897
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    24
    | "<" => "$<$"
26768
844068d16ba0 clean_string: handle { };
wenzelm
parents: 26756
diff changeset
    25
    | ">" => "$>$"
844068d16ba0 clean_string: handle { };
wenzelm
parents: 26756
diff changeset
    26
    | "{" => "\\{"
30120
aaa4667285c8 uniform treatment of ML indexing, using general \indexdef macro for formal Isabelle/Isar entities;
wenzelm
parents: 29736
diff changeset
    27
    | "|" => "$\\mid$"
26768
844068d16ba0 clean_string: handle { };
wenzelm
parents: 26756
diff changeset
    28
    | "}" => "\\}"
42666
fee67c099d03 use existing \<hyphen>;
wenzelm
parents: 42361
diff changeset
    29
    | "\<hyphen>" => "-"
26768
844068d16ba0 clean_string: handle { };
wenzelm
parents: 26756
diff changeset
    30
    | c => c);
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
    31
31546
d58d6acab331 eliminated escaped symbols;
wenzelm
parents: 31297
diff changeset
    32
fun clean_name "\<dots>" = "dots"
26897
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    33
  | clean_name ".." = "ddot"
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    34
  | clean_name "." = "dot"
26910
aa6357b39212 tuned clean_name (underscore);
wenzelm
parents: 26903
diff changeset
    35
  | clean_name "_" = "underscore"
26897
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    36
  | clean_name "{" = "braceleft"
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    37
  | clean_name "}" = "braceright"
42666
fee67c099d03 use existing \<hyphen>;
wenzelm
parents: 42361
diff changeset
    38
  | clean_name s = s |> translate (fn "_" => "-" | "\<hyphen>" => "-" | c => c);
26897
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
    39
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    40
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    41
(* verbatim text *)
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    42
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    43
val verbatim = space_implode "\\verb,|," o map (enclose "\\verb|" "|") o space_explode "|";
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    44
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    45
val verbatim_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    46
  Thy_Output.antiquotation @{binding verbatim} (Scan.lift Args.name)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
    47
    (K (split_lines #> map verbatim #> space_implode "\\isasep\\isanewline%\n"));
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    48
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    49
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    50
(* ML text *)
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    51
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    52
local
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
    53
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    54
val ml_toks = ML_Lex.read Position.none;
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
    55
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    56
fun ml_val (toks1, []) = ml_toks "fn _ => (" @ toks1 @ ml_toks ");"
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    57
  | ml_val (toks1, toks2) = ml_toks "fn _ => (" @ toks1 @ ml_toks " : " @ toks2 @ ml_toks ");";
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    58
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    59
fun ml_op (toks1, []) = ml_toks "fn _ => (op " @ toks1 @ ml_toks ");"
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    60
  | ml_op (toks1, toks2) = ml_toks "fn _ => (op " @ toks1 @ ml_toks " : " @ toks2 @ ml_toks ");";
46261
b03897da3c90 document antiquotations for ML infix operators;
wenzelm
parents: 45675
diff changeset
    61
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    62
fun ml_type (toks1, []) = ml_toks "val _ = NONE : (" @ toks1 @ ml_toks ") option;"
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    63
  | ml_type (toks1, toks2) =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    64
      ml_toks "val _ = [NONE : (" @ toks1 @ ml_toks ") option, NONE : (" @
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    65
        toks2 @ ml_toks ") option];";
22289
41ce4f5c97c9 added antiquotation for exceptions
haftmann
parents: 22094
diff changeset
    66
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    67
fun ml_exn (toks1, []) = ml_toks "fn _ => (" @ toks1 @ ml_toks " : exn);"
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    68
  | ml_exn (toks1, toks2) =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    69
      ml_toks "fn _ => (" @ toks1 @ ml_toks " : " @ toks2 @ ml_toks " -> exn);";
22289
41ce4f5c97c9 added antiquotation for exceptions
haftmann
parents: 22094
diff changeset
    70
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    71
fun ml_structure (toks, _) =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    72
  ml_toks "functor XXX() = struct structure XX = " @ toks @ ml_toks " end;";
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
    73
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    74
fun ml_functor (Antiquote.Text tok :: _, _) =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    75
      ml_toks "ML_Env.check_functor " @ ml_toks (ML_Syntax.print_string (ML_Lex.content_of tok))
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    76
  | ml_functor _ = raise Fail "Bad ML functor specification";
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
    77
39869
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    78
val is_name = ML_Lex.kind_of #> (fn kind => kind = ML_Lex.Ident orelse kind = ML_Lex.LongIdent);
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    79
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    80
fun ml_name txt =
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    81
  (case filter is_name (ML_Lex.tokenize txt) of
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    82
    toks as [_] => ML_Lex.flatten toks
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    83
  | _ => error ("Single ML name expected in input: " ^ quote txt));
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
    84
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    85
fun prep_ml source =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    86
  (#1 (Symbol_Pos.source_content source), ML_Lex.read_source source);
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    87
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
    88
fun index_ml name kind ml = Thy_Output.antiquotation name
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    89
  (Scan.lift (Args.name_source_position -- Scan.option (Args.colon |-- Args.name_source_position)))
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    90
  (fn {context = ctxt, ...} => fn (source1, opt_source2) =>
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
    91
    let
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    92
      val (txt1, toks1) = prep_ml source1;
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    93
      val (txt2, toks2) =
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    94
        (case opt_source2 of
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    95
          SOME source => prep_ml source
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    96
        | NONE => ("", []));
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
    97
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
    98
      val txt =
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
    99
        if txt2 = "" then txt1
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   100
        else if kind = "type" then txt1 ^ " = " ^ txt2
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   101
        else if kind = "exception" then txt1 ^ " of " ^ txt2
50239
fb579401dc26 tuned signature;
wenzelm
parents: 50201
diff changeset
   102
        else if Symbol_Pos.is_identifier (Long_Name.base_name (ml_name txt1))
42290
b1f544c84040 discontinued special treatment of structure Lexicon;
wenzelm
parents: 40801
diff changeset
   103
        then txt1 ^ ": " ^ txt2
39858
5be7a57c3b4e more robust treatment of symbolic indentifiers (which may contain colons);
wenzelm
parents: 39829
diff changeset
   104
        else txt1 ^ " : " ^ txt2;
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   105
      val txt' = if kind = "" then txt else kind ^ " " ^ txt;
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
   106
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
   107
      val _ = ML_Context.eval_in (SOME ctxt) false (#pos source1) (ml (toks1, toks2));
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   108
      val kind' = if kind = "" then "ML" else "ML " ^ kind;
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   109
    in
39869
c269f6bd0a1f more robust index_ML antiquotations: guess name from text (affects infixes and type constructors in particular);
wenzelm
parents: 39858
diff changeset
   110
      "\\indexdef{}{" ^ kind' ^ "}{" ^ clean_string (ml_name txt1) ^ "}" ^
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   111
      (txt'
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 37982
diff changeset
   112
      |> (if Config.get ctxt Thy_Output.quotes then quote else I)
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
   113
      |> (if Config.get ctxt Thy_Output.display
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
   114
          then enclose "\\begin{verbatim}\n" "\n\\end{verbatim}"
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   115
          else split_lines #> map verbatim #> space_implode "\\isasep\\isanewline%\n"))
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   116
    end);
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   117
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   118
in
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
   119
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   120
val index_ml_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   121
  index_ml @{binding index_ML} "" ml_val #>
46261
b03897da3c90 document antiquotations for ML infix operators;
wenzelm
parents: 45675
diff changeset
   122
  index_ml @{binding index_ML_op} "infix" ml_op #>
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   123
  index_ml @{binding index_ML_type} "type" ml_type #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   124
  index_ml @{binding index_ML_exn} "exception" ml_exn #>
55831
3a9386b32211 more markup for ML source;
wenzelm
parents: 55828
diff changeset
   125
  index_ml @{binding index_ML_struct} "structure" ml_structure #>
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   126
  index_ml @{binding index_ML_functor} "functor" ml_functor;
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
   127
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   128
end;
21375
ae8a112b62d7 Auxiliary antiquotations for Isabelle manuals.
wenzelm
parents:
diff changeset
   129
23846
bfedd1a024fc Added named_thms antiquotation.
berghofe
parents: 23651
diff changeset
   130
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   131
(* named theorems *)
23846
bfedd1a024fc Added named_thms antiquotation.
berghofe
parents: 23651
diff changeset
   132
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   133
val named_thms_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   134
  Thy_Output.antiquotation @{binding named_thms}
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   135
    (Scan.repeat (Attrib.thm -- Scan.lift (Args.parens Args.name)))
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   136
    (fn {context = ctxt, ...} =>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   137
      map (apfst (Thy_Output.pretty_thm ctxt))
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   138
      #> (if Config.get ctxt Thy_Output.quotes then map (apfst Pretty.quote) else I)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   139
      #> (if Config.get ctxt Thy_Output.display
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   140
          then
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   141
            map (fn (p, name) =>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   142
              Output.output (Pretty.string_of (Pretty.indent (Config.get ctxt Thy_Output.indent) p)) ^
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   143
              "\\rulename{" ^ Output.output (Pretty.str_of (Thy_Output.pretty_text ctxt name)) ^ "}")
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   144
            #> space_implode "\\par\\smallskip%\n"
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   145
            #> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   146
          else
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   147
            map (fn (p, name) =>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   148
              Output.output (Pretty.str_of p) ^
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   149
              "\\rulename{" ^ Output.output (Pretty.str_of (Thy_Output.pretty_text ctxt name)) ^ "}")
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   150
            #> space_implode "\\par\\smallskip%\n"
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   151
            #> enclose "\\isa{" "}"));
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   152
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   153
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   154
(* theory file *)
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   155
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   156
val thy_file_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   157
  Thy_Output.antiquotation @{binding thy_file} (Scan.lift Args.name)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   158
    (fn {context = ctxt, ...} =>
48899
92da8a8380da updated Thy_Load.check_thy;
wenzelm
parents: 48875
diff changeset
   159
      fn name => (Thy_Load.check_thy Path.current name; Thy_Output.output ctxt [Pretty.str name]));
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   160
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   161
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   162
(* Isabelle/Isar entities (with index) *)
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   163
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   164
local
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   165
26894
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26853
diff changeset
   166
fun no_check _ _ = true;
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26853
diff changeset
   167
53061
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   168
fun command_check (name, pos) =
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   169
  is_some (Keyword.command_keyword name) andalso
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   170
    let
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   171
      val markup =
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   172
        Outer_Syntax.scan Position.none name
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   173
        |> maps (Outer_Syntax.command_reports (#2 (Outer_Syntax.get_syntax ())))
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   174
        |> map (snd o fst);
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   175
      val _ = List.app (Position.report pos) markup;
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   176
    in true end;
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   177
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   178
fun check_tool (name, pos) =
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   179
  let
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   180
    fun tool dir =
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   181
      let val path = Path.append dir (Path.basic name)
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   182
      in if File.exists path then SOME path else NONE end;
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   183
  in
53045
4c297ee47c28 check_tool wrt. official ISABELLE_TOOLS;
wenzelm
parents: 53044
diff changeset
   184
    (case get_first tool (Path.split (getenv "ISABELLE_TOOLS")) of
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   185
      NONE => false
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   186
    | SOME path => (Position.report pos (Markup.path (Path.implode path)); true))
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   187
  end;
28237
f1fc11c73569 check setting and tool;
wenzelm
parents: 28218
diff changeset
   188
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   189
val arg = enclose "{" "}" o clean_string;
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   190
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   191
fun entity check markup kind index =
37216
3165bc303f66 modernized some structure names, keeping a few legacy aliases;
wenzelm
parents: 37198
diff changeset
   192
  Thy_Output.antiquotation
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   193
    (Binding.name (translate (fn " " => "_" | c => c) kind ^
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   194
      (case index of NONE => "" | SOME true => "_def" | SOME false => "_ref")))
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   195
    (Scan.lift (Scan.optional (Args.parens Args.name) "" -- Parse.position Args.name))
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   196
    (fn {context = ctxt, ...} => fn (logic, (name, pos)) =>
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   197
      let
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   198
        val hyper_name =
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   199
          "{" ^ Long_Name.append kind (Long_Name.append logic (clean_name name)) ^ "}";
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   200
        val hyper =
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   201
          enclose ("\\hyperlink" ^ hyper_name ^ "{") "}" #>
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   202
          index = SOME true ? enclose ("\\hypertarget" ^ hyper_name ^ "{") "}";
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   203
        val idx =
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   204
          (case index of
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   205
            NONE => ""
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   206
          | SOME is_def =>
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   207
              "\\index" ^ (if is_def then "def" else "ref") ^ arg logic ^ arg kind ^ arg name);
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   208
      in
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   209
        if check ctxt (name, pos) then
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   210
          idx ^
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   211
          (Output.output name
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   212
            |> (if markup = "" then I else enclose ("\\" ^ markup ^ "{") "}")
38767
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 37982
diff changeset
   213
            |> (if Config.get ctxt Thy_Output.quotes then quote else I)
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 37982
diff changeset
   214
            |> (if Config.get ctxt Thy_Output.display
d8da44a8dd25 proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents: 37982
diff changeset
   215
                then enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   216
                else hyper o enclose "\\mbox{\\isa{" "}}"))
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   217
        else error ("Bad " ^ kind ^ " " ^ quote name ^ Position.here pos)
30394
c11a1e65a2ed moved @{ML_functor} and @{ML_text} to Pure;
wenzelm
parents: 30382
diff changeset
   218
      end);
26897
044619358d3a clean_string: cover <;
wenzelm
parents: 26894
diff changeset
   219
26894
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26853
diff changeset
   220
fun entity_antiqs check markup kind =
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   221
  entity check markup kind NONE #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   222
  entity check markup kind (SOME true) #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   223
  entity check markup kind (SOME false);
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   224
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   225
in
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   226
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   227
val entity_setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   228
  entity_antiqs no_check "" "syntax" #>
53061
417cb0f713e0 more markup;
wenzelm
parents: 53045
diff changeset
   229
  entity_antiqs (K command_check) "isacommand" "command" #>
53044
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   230
  entity_antiqs (K (Keyword.is_keyword o #1)) "isakeyword" "keyword" #>
be27b6be8027 more markup via Name_Space.check;
wenzelm
parents: 52408
diff changeset
   231
  entity_antiqs (K (Keyword.is_keyword o #1)) "isakeyword" "element" #>
55742
a989bdaf8121 modernized Method.check_name/check_source (with reports) vs. strict Method.the_method (without interning nor reports), e.g. relevant for semantic completion;
wenzelm
parents: 54705
diff changeset
   232
  entity_antiqs (can o Method.check_name) "" "method" #>
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55742
diff changeset
   233
  entity_antiqs (can o Attrib.check o Proof_Context.theory_of) "" "attribute" #>
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   234
  entity_antiqs no_check "" "fact" #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   235
  entity_antiqs no_check "" "variable" #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   236
  entity_antiqs no_check "" "case" #>
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55742
diff changeset
   237
  entity_antiqs (can o Thy_Output.check_command) "" "antiquotation" #>
225a060e7445 proper context for global data;
wenzelm
parents: 55742
diff changeset
   238
  entity_antiqs (can o Thy_Output.check_option) "" "antiquotation option" #>
48554
011cbb395d46 no_check for @{setting} antiquotations -- empty values are treated as undefined on Cygwin;
wenzelm
parents: 47825
diff changeset
   239
  entity_antiqs no_check "isatt" "setting" #>
48578
21361b6189a6 some description of isabelle build;
wenzelm
parents: 48554
diff changeset
   240
  entity_antiqs no_check "isatt" "system option" #>
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   241
  entity_antiqs no_check "" "inference" #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   242
  entity_antiqs no_check "isatt" "executable" #>
48602
342ca8f3197b more uniform usage of "isabelle tool";
wenzelm
parents: 48578
diff changeset
   243
  entity_antiqs (K check_tool) "isatool" "tool" #>
55743
225a060e7445 proper context for global data;
wenzelm
parents: 55742
diff changeset
   244
  entity_antiqs (can o ML_Context.check_antiq) "" Markup.ML_antiquotationN;
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   245
26742
5a86bc79431c misc cleanup;
wenzelm
parents: 26710
diff changeset
   246
end;
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   247
43564
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   248
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   249
(* theory setup *)
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   250
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   251
val setup =
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   252
  verbatim_setup #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   253
  index_ml_setup #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   254
  named_thms_setup #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   255
  thy_file_setup #>
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   256
  entity_setup;
9864182c6bad document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents: 43563
diff changeset
   257
26751
2b97ea3130c2 added setup for Isar entities;
wenzelm
parents: 26742
diff changeset
   258
end;