src/Pure/PIDE/markup.ML
author wenzelm
Wed, 20 Nov 2013 11:55:52 +0100
changeset 54526 92961f196d9e
parent 53378 07990ba8c0ea
child 54702 3daeba5130f0
permissions -rw-r--r--
load files that are not provided by PIDE blobs; uniform resolve_files via Command.read;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
45670
b84170538043 rearranged files;
wenzelm
parents: 45666
diff changeset
     1
(*  Title:      Pure/PIDE/markup.ML
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     3
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
     4
Isabelle-specific implementation of quasi-abstract markup elements.
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     5
*)
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     6
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     7
signature MARKUP =
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
     8
sig
51951
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
     9
  val parse_bool: string -> bool
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
    10
  val print_bool: bool -> string
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
    11
  val parse_int: string -> int
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
    12
  val print_int: int -> string
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
    13
  val parse_real: string -> real
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
    14
  val print_real: real -> string
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
    15
  type T = string * Properties.T
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
    16
  val empty: T
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
    17
  val is_empty: T -> bool
38229
61d0fe8b96ac more robust treatment of Markup.token;
wenzelm
parents: 37195
diff changeset
    18
  val properties: Properties.T -> T -> T
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
    19
  val nameN: string
27818
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
    20
  val name: string -> T -> T
38887
1261481ef5e5 Command.State: add reported positions to markup tree, according main message position or Markup.binding/entity/report occurrences in body;
wenzelm
parents: 38871
diff changeset
    21
  val kindN: string
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
    22
  val instanceN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    23
  val bindingN: string val binding: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    24
  val entityN: string val entity: string -> string -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    25
  val get_entity_kind: T -> string option
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    26
  val defN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    27
  val refN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    28
  val lineN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    29
  val offsetN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    30
  val end_offsetN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    31
  val fileN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    32
  val idN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    33
  val position_properties': string list
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    34
  val position_properties: string list
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    35
  val positionN: string val position: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    36
  val pathN: string val path: string -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    37
  val indentN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    38
  val blockN: string val block: int -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    39
  val widthN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    40
  val breakN: string val break: int -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    41
  val fbreakN: string val fbreak: T
51570
3633828d80fc basic support for Pretty.item, which is considered as logical markup and interpreted in Isabelle/Scala, but ignored elsewhere (TTY, latex etc.);
wenzelm
parents: 51228
diff changeset
    42
  val itemN: string val item: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    43
  val hiddenN: string val hidden: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    44
  val theoryN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    45
  val classN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    46
  val type_nameN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    47
  val constantN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    48
  val fixedN: string val fixed: string -> T
53378
07990ba8c0ea cases: more position information and PIDE markup;
wenzelm
parents: 53055
diff changeset
    49
  val caseN: string val case_: string -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    50
  val dynamic_factN: string val dynamic_fact: string -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    51
  val tfreeN: string val tfree: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    52
  val tvarN: string val tvar: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    53
  val freeN: string val free: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    54
  val skolemN: string val skolem: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    55
  val boundN: string val bound: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    56
  val varN: string val var: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    57
  val numeralN: string val numeral: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    58
  val literalN: string val literal: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    59
  val delimiterN: string val delimiter: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    60
  val inner_stringN: string val inner_string: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    61
  val inner_commentN: string val inner_comment: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    62
  val token_rangeN: string val token_range: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    63
  val sortN: string val sort: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    64
  val typN: string val typ: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    65
  val termN: string val term: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    66
  val propN: string val prop: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    67
  val sortingN: string val sorting: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    68
  val typingN: string val typing: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    69
  val ML_keywordN: string val ML_keyword: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    70
  val ML_delimiterN: string val ML_delimiter: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    71
  val ML_tvarN: string val ML_tvar: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    72
  val ML_numeralN: string val ML_numeral: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    73
  val ML_charN: string val ML_char: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    74
  val ML_stringN: string val ML_string: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    75
  val ML_commentN: string val ML_comment: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    76
  val ML_defN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    77
  val ML_openN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    78
  val ML_structN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    79
  val ML_typingN: string val ML_typing: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    80
  val ML_sourceN: string val ML_source: T
51626
e09446d3caca unified terminology with Markup.DOCUMENT_SOURCE in Scala, which is unused but displayed as "document source" entity in Isabelle/jEdit;
wenzelm
parents: 51606
diff changeset
    81
  val document_sourceN: string val document_source: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    82
  val antiqN: string val antiq: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    83
  val ML_antiquotationN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    84
  val document_antiquotationN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    85
  val document_antiquotation_optionN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    86
  val paragraphN: string val paragraph: T
50545
00bdc48c5f71 explicit text_fold markup, which is used by default in Pretty.chunks/chunks2;
wenzelm
parents: 50543
diff changeset
    87
  val text_foldN: string val text_fold: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    88
  val keywordN: string val keyword: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    89
  val operatorN: string val operator: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    90
  val commandN: string val command: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    91
  val stringN: string val string: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    92
  val altstringN: string val altstring: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    93
  val verbatimN: string val verbatim: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    94
  val commentN: string val comment: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    95
  val controlN: string val control: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    96
  val tokenN: string val token: Properties.T -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    97
  val keyword1N: string val keyword1: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    98
  val keyword2N: string val keyword2: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    99
  val elapsedN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   100
  val cpuN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   101
  val gcN: string
51606
2843cc095a57 additional timing status for implicitly forked terminal proofs -- proper accounting for interactive Timing dockable etc.;
wenzelm
parents: 51570
diff changeset
   102
  val timing_properties: {elapsed: Time.time, cpu: Time.time, gc: Time.time} -> Properties.T
2843cc095a57 additional timing status for implicitly forked terminal proofs -- proper accounting for interactive Timing dockable etc.;
wenzelm
parents: 51570
diff changeset
   103
  val parse_timing_properties: Properties.T -> {elapsed: Time.time, cpu: Time.time, gc: Time.time}
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   104
  val command_timingN: string
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   105
  val command_timing_properties:
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   106
    {file: string, offset: int, name: string} -> Time.time -> Properties.T
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   107
  val parse_command_timing_properties:
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   108
    Properties.T -> ({file: string, offset: int, name: string} * Time.time) option
51606
2843cc095a57 additional timing status for implicitly forked terminal proofs -- proper accounting for interactive Timing dockable etc.;
wenzelm
parents: 51570
diff changeset
   109
  val timingN: string val timing: {elapsed: Time.time, cpu: Time.time, gc: Time.time} -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   110
  val subgoalsN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   111
  val proof_stateN: string val proof_state: int -> T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   112
  val stateN: string val state: T
50543
42bbe637be54 fold main goal;
wenzelm
parents: 50537
diff changeset
   113
  val goalN: string val goal: T
50537
08ce81aeeacc more subgoal markup information, which is potentially useful to manage proof state output;
wenzelm
parents: 50503
diff changeset
   114
  val subgoalN: string val subgoal: string -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   115
  val taskN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   116
  val acceptedN: string val accepted: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   117
  val forkedN: string val forked: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   118
  val joinedN: string val joined: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   119
  val runningN: string val running: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   120
  val finishedN: string val finished: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   121
  val failedN: string val failed: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   122
  val serialN: string
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   123
  val serial_properties: int -> Properties.T
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50845
diff changeset
   124
  val exec_idN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   125
  val initN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   126
  val statusN: string
50503
50f141b34bb7 enable Isabelle/ML to produce uninterpreted result messages as well;
wenzelm
parents: 50500
diff changeset
   127
  val resultN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   128
  val writelnN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   129
  val tracingN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   130
  val warningN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   131
  val errorN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   132
  val protocolN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   133
  val legacyN: string val legacy: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   134
  val promptN: string val prompt: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   135
  val reportN: string val report: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   136
  val no_reportN: string val no_report: T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   137
  val badN: string val bad: T
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   138
  val intensifyN: string val intensify: T
52643
34c29356930e more explicit Markup.information for messages produced by "auto" tools;
wenzelm
parents: 52563
diff changeset
   139
  val informationN: string val information: T
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50683
diff changeset
   140
  val browserN: string
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   141
  val graphviewN: string
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   142
  val sendbackN: string
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   143
  val paddingN: string
50842
777c6026ca93 tuned signature;
wenzelm
parents: 50781
diff changeset
   144
  val padding_line: Properties.entry
52697
6fb98a20c349 explicit padding on command boundary for "auto" generated sendback -- do not replace the corresponding goal command, but append to it;
wenzelm
parents: 52643
diff changeset
   145
  val padding_command: Properties.entry
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   146
  val dialogN: string val dialog: serial -> string -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   147
  val functionN: string
52800
1baa5d19ac44 less aggressive flushing: cope with massive amounts of protocol messages, e.g. from threads_trace;
wenzelm
parents: 52697
diff changeset
   148
  val flush: Properties.T
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52111
diff changeset
   149
  val assign_update: Properties.T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   150
  val removed_versions: Properties.T
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51990
diff changeset
   151
  val protocol_handler: string -> Properties.T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   152
  val invoke_scala: string -> string -> Properties.T
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   153
  val cancel_scala: string -> Properties.T
53055
0fe8a9972eda some protocol to determine provers according to ML;
wenzelm
parents: 52854
diff changeset
   154
  val sledgehammer_provers: Properties.T
50842
777c6026ca93 tuned signature;
wenzelm
parents: 50781
diff changeset
   155
  val ML_statistics: Properties.entry
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   156
  val task_statistics: Properties.entry
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   157
  val command_timing: Properties.entry
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   158
  val loading_theory: string -> Properties.T
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   159
  val dest_loading_theory: Properties.T -> string option
40131
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   160
  val no_output: Output.output * Output.output
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   161
  val default_output: T -> Output.output * Output.output
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   162
  val add_mode: string -> (T -> Output.output * Output.output) -> unit
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   163
  val output: T -> Output.output * Output.output
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   164
  val enclose: T -> Output.output -> Output.output
25552
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   165
  val markup: T -> string -> string
43665
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   166
  val markup_only: T -> string
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   167
end;
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   168
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   169
structure Markup: MARKUP =
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   170
struct
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   171
30221
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   172
(** markup elements **)
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   173
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   174
(* misc values *)
51951
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   175
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   176
fun parse_bool "true" = true
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   177
  | parse_bool "false" = false
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   178
  | parse_bool s = raise Fail ("Bad boolean: " ^ quote s);
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   179
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   180
val print_bool = Bool.toString;
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   181
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   182
fun parse_int s =
43797
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   183
  let val i = Int.fromString s in
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   184
    if is_none i orelse String.isPrefix "~" s
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   185
    then raise Fail ("Bad integer: " ^ quote s)
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   186
    else the i
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   187
  end;
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   188
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   189
val print_int = signed_string_of_int;
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   190
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   191
fun parse_real s =
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   192
  (case Real.fromString s of
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   193
    SOME x => x
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   194
  | NONE => raise Fail ("Bad real: " ^ quote s));
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   195
51990
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   196
fun print_real x =
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   197
  let val s = signed_string_of_real x in
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   198
    (case space_explode "." s of
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   199
      [a, b] => if forall_string (fn c => c = "0") b then a else s
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   200
    | _ => s)
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   201
  end;
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   202
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   203
23658
wenzelm
parents: 23644
diff changeset
   204
(* basic markup *)
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   205
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
   206
type T = string * Properties.T;
23637
f3e16ee56f32 added toplevel markup;
wenzelm
parents: 23626
diff changeset
   207
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   208
val empty = ("", []);
23637
f3e16ee56f32 added toplevel markup;
wenzelm
parents: 23626
diff changeset
   209
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   210
fun is_empty ("", _) = true
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   211
  | is_empty _ = false;
27883
e506f0c6d3f0 added is_none;
wenzelm
parents: 27879
diff changeset
   212
23794
ab2edd87b912 added get_string, get_int;
wenzelm
parents: 23786
diff changeset
   213
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   214
fun properties more_props ((elem, props): T) =
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
   215
  (elem, fold_rev Properties.put more_props props);
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   216
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   217
fun markup_elem elem = (elem, (elem, []): T);
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   218
fun markup_string elem prop = (elem, fn s => (elem, [(prop, s)]): T);
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   219
fun markup_int elem prop = (elem, fn i => (elem, [(prop, print_int i)]): T);
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   220
26977
e736139b553d added theory_nameN;
wenzelm
parents: 26702
diff changeset
   221
38721
ca8b14fa0d0d added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents: 38474
diff changeset
   222
(* misc properties *)
26977
e736139b553d added theory_nameN;
wenzelm
parents: 26702
diff changeset
   223
23658
wenzelm
parents: 23644
diff changeset
   224
val nameN = "name";
27818
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
   225
fun name a = properties [(nameN, a)];
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
   226
23658
wenzelm
parents: 23644
diff changeset
   227
val kindN = "kind";
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   228
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   229
val instanceN = "instance";
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   230
23658
wenzelm
parents: 23644
diff changeset
   231
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   232
(* formal entities *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   233
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   234
val (bindingN, binding) = markup_elem "binding";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   235
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   236
val entityN = "entity";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   237
fun entity kind name = (entityN, [(nameN, name), (kindN, kind)]);
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   238
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   239
fun get_entity_kind (name, props) =
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   240
  if name = entityN then AList.lookup (op =) props kindN
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   241
  else NONE;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   242
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   243
val defN = "def";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   244
val refN = "ref";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   245
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   246
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   247
(* position *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   248
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   249
val lineN = "line";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   250
val offsetN = "offset";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   251
val end_offsetN = "end_offset";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   252
val fileN = "file";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   253
val idN = "id";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   254
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   255
val position_properties' = [fileN, idN];
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   256
val position_properties = [lineN, offsetN, end_offsetN] @ position_properties';
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   257
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   258
val (positionN, position) = markup_elem "position";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   259
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   260
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   261
(* path *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   262
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   263
val (pathN, path) = markup_string "path" nameN;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   264
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   265
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   266
(* pretty printing *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   267
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   268
val indentN = "indent";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   269
val (blockN, block) = markup_int "block" indentN;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   270
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   271
val widthN = "width";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   272
val (breakN, break) = markup_int "break" widthN;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   273
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   274
val (fbreakN, fbreak) = markup_elem "fbreak";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   275
51570
3633828d80fc basic support for Pretty.item, which is considered as logical markup and interpreted in Isabelle/Scala, but ignored elsewhere (TTY, latex etc.);
wenzelm
parents: 51228
diff changeset
   276
val (itemN, item) = markup_elem "item";
3633828d80fc basic support for Pretty.item, which is considered as logical markup and interpreted in Isabelle/Scala, but ignored elsewhere (TTY, latex etc.);
wenzelm
parents: 51228
diff changeset
   277
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   278
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   279
(* hidden text *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   280
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   281
val (hiddenN, hidden) = markup_elem "hidden";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   282
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   283
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   284
(* logical entities *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   285
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   286
val theoryN = "theory";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   287
val classN = "class";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   288
val type_nameN = "type_name";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   289
val constantN = "constant";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   290
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   291
val (fixedN, fixed) = markup_string "fixed" nameN;
53378
07990ba8c0ea cases: more position information and PIDE markup;
wenzelm
parents: 53055
diff changeset
   292
val (caseN, case_) = markup_string "case" nameN;
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   293
val (dynamic_factN, dynamic_fact) = markup_string "dynamic_fact" nameN;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   294
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   295
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   296
(* inner syntax *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   297
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   298
val (tfreeN, tfree) = markup_elem "tfree";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   299
val (tvarN, tvar) = markup_elem "tvar";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   300
val (freeN, free) = markup_elem "free";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   301
val (skolemN, skolem) = markup_elem "skolem";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   302
val (boundN, bound) = markup_elem "bound";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   303
val (varN, var) = markup_elem "var";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   304
val (numeralN, numeral) = markup_elem "numeral";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   305
val (literalN, literal) = markup_elem "literal";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   306
val (delimiterN, delimiter) = markup_elem "delimiter";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   307
val (inner_stringN, inner_string) = markup_elem "inner_string";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   308
val (inner_commentN, inner_comment) = markup_elem "inner_comment";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   309
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   310
val (token_rangeN, token_range) = markup_elem "token_range";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   311
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   312
val (sortN, sort) = markup_elem "sort";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   313
val (typN, typ) = markup_elem "typ";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   314
val (termN, term) = markup_elem "term";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   315
val (propN, prop) = markup_elem "prop";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   316
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   317
val (sortingN, sorting) = markup_elem "sorting";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   318
val (typingN, typing) = markup_elem "typing";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   319
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   320
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   321
(* ML syntax *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   322
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   323
val (ML_keywordN, ML_keyword) = markup_elem "ML_keyword";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   324
val (ML_delimiterN, ML_delimiter) = markup_elem "ML_delimiter";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   325
val (ML_tvarN, ML_tvar) = markup_elem "ML_tvar";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   326
val (ML_numeralN, ML_numeral) = markup_elem "ML_numeral";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   327
val (ML_charN, ML_char) = markup_elem "ML_char";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   328
val (ML_stringN, ML_string) = markup_elem "ML_string";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   329
val (ML_commentN, ML_comment) = markup_elem "ML_comment";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   330
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   331
val ML_defN = "ML_def";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   332
val ML_openN = "ML_open";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   333
val ML_structN = "ML_struct";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   334
val (ML_typingN, ML_typing) = markup_elem "ML_typing";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   335
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   336
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   337
(* embedded source text *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   338
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   339
val (ML_sourceN, ML_source) = markup_elem "ML_source";
51626
e09446d3caca unified terminology with Markup.DOCUMENT_SOURCE in Scala, which is unused but displayed as "document source" entity in Isabelle/jEdit;
wenzelm
parents: 51606
diff changeset
   340
val (document_sourceN, document_source) = markup_elem "document_source";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   341
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   342
val (antiqN, antiq) = markup_elem "antiq";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   343
val ML_antiquotationN = "ML_antiquotation";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   344
val document_antiquotationN = "document_antiquotation";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   345
val document_antiquotation_optionN = "document_antiquotation_option";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   346
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   347
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   348
(* text structure *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   349
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   350
val (paragraphN, paragraph) = markup_elem "paragraph";
50545
00bdc48c5f71 explicit text_fold markup, which is used by default in Pretty.chunks/chunks2;
wenzelm
parents: 50543
diff changeset
   351
val (text_foldN, text_fold) = markup_elem "text_fold";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   352
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   353
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   354
(* outer syntax *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   355
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   356
val (keywordN, keyword) = markup_elem "keyword";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   357
val (operatorN, operator) = markup_elem "operator";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   358
val (commandN, command) = markup_elem "command";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   359
val (stringN, string) = markup_elem "string";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   360
val (altstringN, altstring) = markup_elem "altstring";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   361
val (verbatimN, verbatim) = markup_elem "verbatim";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   362
val (commentN, comment) = markup_elem "comment";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   363
val (controlN, control) = markup_elem "control";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   364
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   365
val tokenN = "token";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   366
fun token props = (tokenN, props);
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   367
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   368
val (keyword1N, keyword1) = markup_elem "keyword1";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   369
val (keyword2N, keyword2) = markup_elem "keyword2";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   370
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   371
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   372
(* timing *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   373
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   374
val elapsedN = "elapsed";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   375
val cpuN = "cpu";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   376
val gcN = "gc";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   377
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   378
fun timing_properties {elapsed, cpu, gc} =
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   379
 [(elapsedN, Time.toString elapsed),
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   380
  (cpuN, Time.toString cpu),
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   381
  (gcN, Time.toString gc)];
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   382
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   383
fun parse_timing_properties props =
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   384
 {elapsed = Properties.seconds props elapsedN,
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   385
  cpu = Properties.seconds props cpuN,
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   386
  gc = Properties.seconds props gcN};
51218
6425a0d3b7ac support for build passing timings from Scala to ML;
wenzelm
parents: 51217
diff changeset
   387
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   388
val timingN = "timing";
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   389
fun timing t = (timingN, timing_properties t);
51218
6425a0d3b7ac support for build passing timings from Scala to ML;
wenzelm
parents: 51217
diff changeset
   390
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   391
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   392
(* command timing *)
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   393
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   394
val command_timingN = "command_timing";
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   395
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   396
fun command_timing_properties {file, offset, name} elapsed =
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   397
 [(fileN, file), (offsetN, print_int offset),
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   398
  (nameN, name), (elapsedN, Time.toString elapsed)];
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   399
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   400
fun parse_command_timing_properties props =
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   401
  (case (Properties.get props fileN, Properties.get props offsetN, Properties.get props nameN) of
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   402
    (SOME file, SOME offset, SOME name) =>
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   403
      SOME ({file = file, offset = parse_int offset, name = name},
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   404
        Properties.seconds props elapsedN)
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   405
  | _ => NONE);
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   406
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   407
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   408
(* toplevel *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   409
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   410
val subgoalsN = "subgoals";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   411
val (proof_stateN, proof_state) = markup_int "proof_state" subgoalsN;
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   412
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   413
val (stateN, state) = markup_elem "state";
50543
42bbe637be54 fold main goal;
wenzelm
parents: 50537
diff changeset
   414
val (goalN, goal) = markup_elem "goal";
50537
08ce81aeeacc more subgoal markup information, which is potentially useful to manage proof state output;
wenzelm
parents: 50503
diff changeset
   415
val (subgoalN, subgoal) = markup_string "subgoal" nameN;
50215
97959912840a more general sendback properties;
wenzelm
parents: 50201
diff changeset
   416
50450
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50255
diff changeset
   417
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   418
(* command status *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   419
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   420
val taskN = "task";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   421
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   422
val (acceptedN, accepted) = markup_elem "accepted";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   423
val (forkedN, forked) = markup_elem "forked";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   424
val (joinedN, joined) = markup_elem "joined";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   425
val (runningN, running) = markup_elem "running";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   426
val (finishedN, finished) = markup_elem "finished";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   427
val (failedN, failed) = markup_elem "failed";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   428
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   429
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   430
(* messages *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   431
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   432
val serialN = "serial";
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   433
fun serial_properties i = [(serialN, print_int i)];
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   434
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50845
diff changeset
   435
val exec_idN = "exec_id";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   436
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   437
val initN = "init";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   438
val statusN = "status";
50503
50f141b34bb7 enable Isabelle/ML to produce uninterpreted result messages as well;
wenzelm
parents: 50500
diff changeset
   439
val resultN = "result";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   440
val writelnN = "writeln";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   441
val tracingN = "tracing";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   442
val warningN = "warning";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   443
val errorN = "error";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   444
val protocolN = "protocol";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   445
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   446
val (legacyN, legacy) = markup_elem "legacy";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   447
val (promptN, prompt) = markup_elem "prompt";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   448
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   449
val (reportN, report) = markup_elem "report";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   450
val (no_reportN, no_report) = markup_elem "no_report";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   451
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   452
val (badN, bad) = markup_elem "bad";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   453
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   454
val (intensifyN, intensify) = markup_elem "intensify";
52643
34c29356930e more explicit Markup.information for messages produced by "auto" tools;
wenzelm
parents: 52563
diff changeset
   455
val (informationN, information) = markup_elem "information";
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   456
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   457
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   458
(* active areas *)
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   459
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50683
diff changeset
   460
val browserN = "browser"
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   461
val graphviewN = "graphview";
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   462
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   463
val sendbackN = "sendback";
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   464
val paddingN = "padding";
52697
6fb98a20c349 explicit padding on command boundary for "auto" generated sendback -- do not replace the corresponding goal command, but append to it;
wenzelm
parents: 52643
diff changeset
   465
val padding_line = (paddingN, "line");
6fb98a20c349 explicit padding on command boundary for "auto" generated sendback -- do not replace the corresponding goal command, but append to it;
wenzelm
parents: 52643
diff changeset
   466
val padding_command = (paddingN, "command");
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   467
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   468
val dialogN = "dialog";
50503
50f141b34bb7 enable Isabelle/ML to produce uninterpreted result messages as well;
wenzelm
parents: 50500
diff changeset
   469
fun dialog i result = (dialogN, [(serialN, print_int i), (resultN, result)]);
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   470
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   471
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   472
(* protocol message functions *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   473
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   474
val functionN = "function"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   475
52800
1baa5d19ac44 less aggressive flushing: cope with massive amounts of protocol messages, e.g. from threads_trace;
wenzelm
parents: 52697
diff changeset
   476
val flush = [(functionN, "flush")];
1baa5d19ac44 less aggressive flushing: cope with massive amounts of protocol messages, e.g. from threads_trace;
wenzelm
parents: 52697
diff changeset
   477
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52111
diff changeset
   478
val assign_update = [(functionN, "assign_update")];
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   479
val removed_versions = [(functionN, "removed_versions")];
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   480
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51990
diff changeset
   481
fun protocol_handler name = [(functionN, "protocol_handler"), (nameN, name)];
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51990
diff changeset
   482
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   483
fun invoke_scala name id = [(functionN, "invoke_scala"), (nameN, name), (idN, id)];
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   484
fun cancel_scala id = [(functionN, "cancel_scala"), (idN, id)];
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   485
53055
0fe8a9972eda some protocol to determine provers according to ML;
wenzelm
parents: 52854
diff changeset
   486
val sledgehammer_provers = [(functionN, "sledgehammer_provers")];
0fe8a9972eda some protocol to determine provers according to ML;
wenzelm
parents: 52854
diff changeset
   487
50683
34b109c5324c inline ML statistics into build log;
wenzelm
parents: 50545
diff changeset
   488
val ML_statistics = (functionN, "ML_statistics");
50255
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   489
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   490
val task_statistics = (functionN, "task_statistics");
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   491
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   492
val command_timing = (functionN, "command_timing");
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   493
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   494
fun loading_theory name = [("function", "loading_theory"), ("name", name)];
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   495
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   496
fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   497
  | dest_loading_theory _ = NONE;
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   498
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   499
27969
46d7057b8614 added messages and process information;
wenzelm
parents: 27894
diff changeset
   500
30221
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   501
(** print mode operations **)
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   502
29325
a205acc94356 Markup.no_output;
wenzelm
parents: 29318
diff changeset
   503
val no_output = ("", "");
a205acc94356 Markup.no_output;
wenzelm
parents: 29318
diff changeset
   504
fun default_output (_: T) = no_output;
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   505
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   506
local
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   507
  val default = {output = default_output};
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   508
  val modes = Synchronized.var "Markup.modes" (Symtab.make [("", default)]);
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   509
in
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   510
  fun add_mode name output =
46894
e2ad717ec889 allow redefining pretty/markup modes (not output due to bootstrap issues) -- to support reloading of theory src/HOL/src/Tools/Code_Generator;
wenzelm
parents: 45674
diff changeset
   511
    Synchronized.change modes (fn tab =>
e2ad717ec889 allow redefining pretty/markup modes (not output due to bootstrap issues) -- to support reloading of theory src/HOL/src/Tools/Code_Generator;
wenzelm
parents: 45674
diff changeset
   512
      (if not (Symtab.defined tab name) then ()
e2ad717ec889 allow redefining pretty/markup modes (not output due to bootstrap issues) -- to support reloading of theory src/HOL/src/Tools/Code_Generator;
wenzelm
parents: 45674
diff changeset
   513
       else warning ("Redefining markup mode " ^ quote name);
e2ad717ec889 allow redefining pretty/markup modes (not output due to bootstrap issues) -- to support reloading of theory src/HOL/src/Tools/Code_Generator;
wenzelm
parents: 45674
diff changeset
   514
       Symtab.update (name, {output = output}) tab));
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   515
  fun get_mode () =
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   516
    the_default default
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   517
      (Library.get_first (Symtab.lookup (Synchronized.value modes)) (print_mode_value ()));
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   518
end;
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   519
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   520
fun output m = if is_empty m then no_output else #output (get_mode ()) m;
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   521
23719
ccd9cb15c062 more markup for inner and outer syntax;
wenzelm
parents: 23704
diff changeset
   522
val enclose = output #-> Library.enclose;
ccd9cb15c062 more markup for inner and outer syntax;
wenzelm
parents: 23704
diff changeset
   523
25552
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   524
fun markup m =
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   525
  let val (bg, en) = output m
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   526
  in Library.enclose (Output.escape bg) (Output.escape en) end;
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   527
43665
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   528
fun markup_only m = markup m "";
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   529
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   530
end;