src/Pure/PIDE/markup.ML
author wenzelm
Wed, 22 Jun 2016 16:04:03 +0200
changeset 63347 e344dc82f6c2
parent 63337 ae9330fdbc16
child 63474 f66e3c3b0fb1
permissions -rw-r--r--
report class parameters within instantiation;
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
56743
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
     4
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
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
    11
  val parse_nat: string -> int
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
    12
  val parse_int: string -> int
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
    13
  val print_int: int -> string
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
    14
  val parse_real: string -> real
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
    15
  val print_real: real -> string
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
    16
  type T = string * Properties.T
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
    17
  val empty: T
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
    18
  val is_empty: T -> bool
38229
61d0fe8b96ac more robust treatment of Markup.token;
wenzelm
parents: 37195
diff changeset
    19
  val properties: Properties.T -> T -> T
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
    20
  val nameN: string
27818
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
    21
  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
    22
  val kindN: string
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
    23
  val serialN: string
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
    24
  val serial_properties: int -> Properties.T
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
    25
  val instanceN: string
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    26
  val languageN: string
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55613
diff changeset
    27
  val symbolsN: string
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    28
  val delimitedN: string
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    29
  val is_delimited: Properties.T -> bool
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    30
  val language: {name: string, symbols: bool, antiquotes: bool, delimited: bool} -> T
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    31
  val language': {name: string, symbols: bool, antiquotes: bool} -> bool -> T
62231
25f4a9cd8b68 tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents: 61864
diff changeset
    32
  val language_Isar: bool -> T
55761
213b9811f59f method language markup, e.g. relevant to prevent outer keyword completion;
wenzelm
parents: 55750
diff changeset
    33
  val language_method: T
56033
513c2b0ea565 more markup;
wenzelm
parents: 55956
diff changeset
    34
  val language_attribute: T
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    35
  val language_sort: bool -> T
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    36
  val language_type: bool -> T
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    37
  val language_term: bool -> T
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    38
  val language_prop: bool -> T
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    39
  val language_ML: bool -> T
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
    40
  val language_SML: bool -> T
61600
1ca11ddfcc70 clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents: 61598
diff changeset
    41
  val language_document: bool -> T
55653
528de9a20054 more markup -- complete symbols within antiquotation, notably with broken arguments;
wenzelm
parents: 55615
diff changeset
    42
  val language_antiquotation: T
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
    43
  val language_text: bool -> T
62520
2382876c238b more PIDE markup;
wenzelm
parents: 62231
diff changeset
    44
  val language_verbatim: bool -> T
55613
ad446b45efff more markup;
wenzelm
parents: 55561
diff changeset
    45
  val language_rail: T
56034
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 56033
diff changeset
    46
  val language_path: T
62772
77bbe5af41c3 more language markup;
wenzelm
parents: 62520
diff changeset
    47
  val language_mixfix: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    48
  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
    49
  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
    50
  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
    51
  val defN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    52
  val refN: string
55694
a1184dfb8e00 clarified semantic completion: retain kind.full_name as official item name for history;
wenzelm
parents: 55687
diff changeset
    53
  val completionN: string val completion: T
55914
c5b752d549e3 clarified init_assignable: make double-sure that initial values are reset;
wenzelm
parents: 55837
diff changeset
    54
  val no_completionN: string val no_completion: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    55
  val lineN: string
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58855
diff changeset
    56
  val end_lineN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    57
  val offsetN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    58
  val end_offsetN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    59
  val fileN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    60
  val idN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    61
  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
    62
  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
    63
  val positionN: string val position: T
62806
de9bf8171626 more markup;
wenzelm
parents: 62789
diff changeset
    64
  val expressionN: string val expression: string -> T
58545
30b75b7958d6 citation tooltip/hyperlink based on open buffers with .bib files;
wenzelm
parents: 58544
diff changeset
    65
  val citationN: string val citation: string -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    66
  val pathN: string val path: string -> T
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
    67
  val urlN: string val url: string -> T
61660
78b371644654 added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents: 61614
diff changeset
    68
  val docN: string val doc: string -> T
62788
374820748c70 unused;
wenzelm
parents: 62786
diff changeset
    69
  val markupN: string
374820748c70 unused;
wenzelm
parents: 62786
diff changeset
    70
  val consistentN: string
62789
ce15dd971965 explicit property for unbreakable block;
wenzelm
parents: 62788
diff changeset
    71
  val unbreakableN: string
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
    72
  val block_properties: string list
62788
374820748c70 unused;
wenzelm
parents: 62786
diff changeset
    73
  val indentN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    74
  val widthN: string
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
    75
  val blockN: string val block: bool -> int -> T
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
    76
  val breakN: string val break: int -> int -> T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    77
  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
    78
  val itemN: string val item: T
56548
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56465
diff changeset
    79
  val wordsN: string val words: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    80
  val hiddenN: string val hidden: T
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 56278
diff changeset
    81
  val system_optionN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    82
  val theoryN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    83
  val classN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    84
  val type_nameN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    85
  val constantN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    86
  val fixedN: string val fixed: string -> T
53378
07990ba8c0ea cases: more position information and PIDE markup;
wenzelm
parents: 53055
diff changeset
    87
  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
    88
  val dynamic_factN: string val dynamic_fact: string -> T
63337
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62933
diff changeset
    89
  val literal_factN: string val literal_fact: string -> T
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 57975
diff changeset
    90
  val method_modifierN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
    91
  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
    92
  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
    93
  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
    94
  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
    95
  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
    96
  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
    97
  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
    98
  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
    99
  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
   100
  val inner_stringN: string val inner_string: T
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   101
  val inner_cartoucheN: string val inner_cartouche: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   102
  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
   103
  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
   104
  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
   105
  val typingN: string val typing: T
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 63337
diff changeset
   106
  val class_parameterN: string val class_parameter: T
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   107
  val ML_keyword1N: string val ML_keyword1: T
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   108
  val ML_keyword2N: string val ML_keyword2: T
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   109
  val ML_keyword3N: string val ML_keyword3: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   110
  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
   111
  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
   112
  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
   113
  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
   114
  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
   115
  val ML_commentN: string val ML_comment: T
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   116
  val SML_stringN: string val SML_string: T
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   117
  val SML_commentN: string val SML_comment: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   118
  val ML_defN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   119
  val ML_openN: string
55837
154855d9a564 clarified names of antiquotations and markup;
wenzelm
parents: 55828
diff changeset
   120
  val ML_structureN: string
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   121
  val ML_typingN: string val ML_typing: T
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   122
  val ML_breakpointN: string val ML_breakpoint: int -> T
55526
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   123
  val antiquotedN: string val antiquoted: T
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   124
  val antiquoteN: string val antiquote: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   125
  val ML_antiquotationN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   126
  val document_antiquotationN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   127
  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
   128
  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
   129
  val text_foldN: string val text_fold: T
61449
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   130
  val markdown_paragraphN: string val markdown_paragraph: T
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   131
  val markdown_listN: string val markdown_list: string -> T
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   132
  val markdown_itemN: string val markdown_item: int -> T
59795
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   133
  val inputN: string val input: bool -> Properties.T -> T
59935
343905de27b1 clarified command keyword markup;
wenzelm
parents: 59795
diff changeset
   134
  val command_keywordN: string val command_keyword: T
55750
baa7a1e57f4a back to Markup.command for actual tokens (amending 4a4e5686e091) -- avoid conflict of jEdit token marker with Rendering.text_colors;
wenzelm
parents: 55744
diff changeset
   135
  val commandN: string val command: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   136
  val stringN: string val string: T
59081
2ceb05ee0331 clarified token kind;
wenzelm
parents: 58978
diff changeset
   137
  val alt_stringN: string val alt_string: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   138
  val verbatimN: string val verbatim: T
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   139
  val cartoucheN: string val cartouche: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   140
  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
   141
  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
   142
  val keyword2N: string val keyword2: T
55763
4b3907cb5654 tuned signature;
wenzelm
parents: 55761
diff changeset
   143
  val keyword3N: string val keyword3: T
55919
2eb8c13339a5 more explicit quasi_keyword markup, for Args.$$$ material, which is somewhere in between of outer and inner syntax;
wenzelm
parents: 55914
diff changeset
   144
  val quasi_keywordN: string val quasi_keyword: T
56202
0a11d17eeeff more markup for improper elements;
wenzelm
parents: 56034
diff changeset
   145
  val improperN: string val improper: T
0a11d17eeeff more markup for improper elements;
wenzelm
parents: 56034
diff changeset
   146
  val operatorN: string val operator: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   147
  val elapsedN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   148
  val cpuN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   149
  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
   150
  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
   151
  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
   152
  val command_timingN: string
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   153
  val command_timing_properties:
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   154
    {file: string, offset: int, name: string} -> Time.time -> Properties.T
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   155
  val parse_command_timing_properties:
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   156
    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
   157
  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
   158
  val subgoalsN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   159
  val proof_stateN: string val proof_state: int -> T
50543
42bbe637be54 fold main goal;
wenzelm
parents: 50537
diff changeset
   160
  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
   161
  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
   162
  val taskN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   163
  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
   164
  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
   165
  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
   166
  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
   167
  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
   168
  val failedN: string val failed: T
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50845
diff changeset
   169
  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
   170
  val initN: string
61209
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   171
  val statusN: string val status: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   172
  val resultN: string val result: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   173
  val writelnN: string val writeln: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   174
  val stateN: string val state: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   175
  val informationN: string val information: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   176
  val tracingN: string val tracing: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   177
  val warningN: string val warning: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   178
  val legacyN: string val legacy: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   179
  val errorN: string val error: T
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   180
  val systemN: string val system: T
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   181
  val protocolN: string
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   182
  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
   183
  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
   184
  val badN: string val bad: T
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   185
  val intensifyN: string val intensify: T
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50683
diff changeset
   186
  val browserN: string
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   187
  val graphviewN: string
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   188
  val sendbackN: string
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   189
  val paddingN: string
50842
777c6026ca93 tuned signature;
wenzelm
parents: 50781
diff changeset
   190
  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
   191
  val padding_command: Properties.entry
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   192
  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
   193
  val functionN: string
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52111
diff changeset
   194
  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
   195
  val removed_versions: Properties.T
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51990
diff changeset
   196
  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
   197
  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
   198
  val cancel_scala: string -> Properties.T
50842
777c6026ca93 tuned signature;
wenzelm
parents: 50781
diff changeset
   199
  val ML_statistics: Properties.entry
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   200
  val task_statistics: Properties.entry
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   201
  val command_timing: Properties.entry
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   202
  val loading_theory: string -> Properties.T
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   203
  val dest_loading_theory: Properties.T -> string option
59369
7090199d3f78 more informative build_theories_result: cumulative Runtime.exn_message;
wenzelm
parents: 59364
diff changeset
   204
  val build_theories_result: string -> Properties.T
56864
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56743
diff changeset
   205
  val print_operationsN: string
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56743
diff changeset
   206
  val print_operations: Properties.T
60842
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   207
  val debugger_state: string -> Properties.T
60834
781f1168d31e maintain debugger output messages;
wenzelm
parents: 60830
diff changeset
   208
  val debugger_output: string -> Properties.T
57594
037f3b251df5 regular message to refer to Simplifier Trace panel (unused);
wenzelm
parents: 56864
diff changeset
   209
  val simp_trace_panelN: string
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   210
  val simp_trace_logN: string
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   211
  val simp_trace_stepN: string
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   212
  val simp_trace_recurseN: string
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   213
  val simp_trace_hintN: string
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   214
  val simp_trace_ignoreN: string
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   215
  val simp_trace_cancel: serial -> Properties.T
40131
7cbebd636e79 explicitly qualify type Output.output, which is a slightly odd internal feature;
wenzelm
parents: 39585
diff changeset
   216
  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
   217
  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
   218
  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
   219
  val enclose: T -> Output.output -> Output.output
25552
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   220
  val markup: T -> string -> string
59125
ee19c92ae8b4 more explicit markup for improper commands;
wenzelm
parents: 59112
diff changeset
   221
  val markups: T list -> string -> string
43665
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   222
  val markup_only: T -> string
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55919
diff changeset
   223
  val markup_report: string -> string
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   224
end;
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   225
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   226
structure Markup: MARKUP =
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   227
struct
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   228
30221
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   229
(** markup elements **)
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   230
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   231
(* misc values *)
51951
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   232
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   233
fun parse_bool "true" = true
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   234
  | parse_bool "false" = false
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   235
  | parse_bool s = raise Fail ("Bad boolean " ^ quote s);
51951
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   236
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   237
val print_bool = Bool.toString;
fab4ab92e812 more standard Isabelle/ML operations -- avoid inaccurate Bool.fromString;
wenzelm
parents: 51665
diff changeset
   238
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   239
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   240
fun parse_nat s =
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   241
  let val i = Int.fromString s in
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   242
    if is_none i orelse the i < 0
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   243
    then raise Fail ("Bad natural number " ^ quote s)
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   244
    else the i
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   245
  end;
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   246
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   247
fun parse_int s =
43797
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   248
  let val i = Int.fromString s in
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   249
    if is_none i orelse String.isPrefix "~" s
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   250
    then raise Fail ("Bad integer " ^ quote s)
43797
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   251
    else the i
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43748
diff changeset
   252
  end;
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   253
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   254
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
   255
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   256
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   257
fun parse_real s =
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   258
  (case Real.fromString s of
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   259
    SOME x => x
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   260
  | NONE => raise Fail ("Bad real " ^ quote s));
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   261
51990
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   262
fun print_real x =
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   263
  let val s = signed_string_of_real x in
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   264
    (case space_explode "." s of
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   265
      [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
   266
    | _ => s)
cc66addbba6d more uniform Markup.print_real;
wenzelm
parents: 51988
diff changeset
   267
  end;
51988
a9725750c53a more uniform Markup.parse_real;
wenzelm
parents: 51951
diff changeset
   268
38414
49f1f657adc2 more basic Markup.parse_int/print_int (using signed_string_of_int) (ML);
wenzelm
parents: 38229
diff changeset
   269
23658
wenzelm
parents: 23644
diff changeset
   270
(* basic markup *)
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   271
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
   272
type T = string * Properties.T;
23637
f3e16ee56f32 added toplevel markup;
wenzelm
parents: 23626
diff changeset
   273
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   274
val empty = ("", []);
23637
f3e16ee56f32 added toplevel markup;
wenzelm
parents: 23626
diff changeset
   275
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   276
fun is_empty ("", _) = true
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   277
  | is_empty _ = false;
27883
e506f0c6d3f0 added is_none;
wenzelm
parents: 27879
diff changeset
   278
23794
ab2edd87b912 added get_string, get_int;
wenzelm
parents: 23786
diff changeset
   279
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   280
fun properties more_props ((elem, props): T) =
28017
4919bd124a58 type Properties.T;
wenzelm
parents: 27969
diff changeset
   281
  (elem, fold_rev Properties.put more_props props);
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   282
55551
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   283
fun markup_elem name = (name, (name, []): T);
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   284
fun markup_string name prop = (name, fn s => (name, [(prop, s)]): T);
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   285
fun markup_int name prop = (name, fn i => (name, [(prop, print_int i)]): T);
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   286
26977
e736139b553d added theory_nameN;
wenzelm
parents: 26702
diff changeset
   287
38721
ca8b14fa0d0d added some proof state markup, notably number of subgoals (e.g. for indentation);
wenzelm
parents: 38474
diff changeset
   288
(* misc properties *)
26977
e736139b553d added theory_nameN;
wenzelm
parents: 26702
diff changeset
   289
23658
wenzelm
parents: 23644
diff changeset
   290
val nameN = "name";
27818
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
   291
fun name a = properties [(nameN, a)];
74087a19879f added name property operation;
wenzelm
parents: 27804
diff changeset
   292
23658
wenzelm
parents: 23644
diff changeset
   293
val kindN = "kind";
23671
9e8257472c27 proper position markup;
wenzelm
parents: 23658
diff changeset
   294
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   295
val serialN = "serial";
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   296
fun serial_properties i = [(serialN, print_int i)];
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   297
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   298
val instanceN = "instance";
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
   299
23658
wenzelm
parents: 23644
diff changeset
   300
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   301
(* embedded languages *)
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   302
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   303
val languageN = "language";
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55613
diff changeset
   304
val symbolsN = "symbols";
55666
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55653
diff changeset
   305
val antiquotesN = "antiquotes";
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   306
val delimitedN = "delimited"
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   307
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   308
fun is_delimited props =
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   309
  Properties.get props delimitedN = SOME "true";
55666
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55653
diff changeset
   310
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   311
fun language {name, symbols, antiquotes, delimited} =
55666
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55653
diff changeset
   312
  (languageN,
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   313
   [(nameN, name),
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   314
    (symbolsN, print_bool symbols),
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   315
    (antiquotesN, print_bool antiquotes),
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   316
    (delimitedN, print_bool delimited)]);
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   317
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   318
fun language' {name, symbols, antiquotes} delimited =
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   319
  language {name = name, symbols = symbols, antiquotes = antiquotes, delimited = delimited};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   320
62231
25f4a9cd8b68 tuned markup, e.g. relevant for Rendering.tooltip;
wenzelm
parents: 61864
diff changeset
   321
val language_Isar = language' {name = "Isar", symbols = true, antiquotes = false};
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   322
val language_method =
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   323
  language {name = "method", symbols = true, antiquotes = false, delimited = false};
56033
513c2b0ea565 more markup;
wenzelm
parents: 55956
diff changeset
   324
val language_attribute =
513c2b0ea565 more markup;
wenzelm
parents: 55956
diff changeset
   325
  language {name = "attribute", symbols = true, antiquotes = false, delimited = false};
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   326
val language_sort = language' {name = "sort", symbols = true, antiquotes = false};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   327
val language_type = language' {name = "type", symbols = true, antiquotes = false};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   328
val language_term = language' {name = "term", symbols = true, antiquotes = false};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   329
val language_prop = language' {name = "prop", symbols = true, antiquotes = false};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   330
val language_ML = language' {name = "ML", symbols = false, antiquotes = true};
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   331
val language_SML = language' {name = "SML", symbols = false, antiquotes = false};
61600
1ca11ddfcc70 clarified completion of explicit symbols (see also f6bd97a587b7, e0e4ac981cf1);
wenzelm
parents: 61598
diff changeset
   332
val language_document = language' {name = "document", symbols = false, antiquotes = true};
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   333
val language_antiquotation =
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   334
  language {name = "antiquotation", symbols = true, antiquotes = false, delimited = true};
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   335
val language_text = language' {name = "text", symbols = true, antiquotes = false};
62772
77bbe5af41c3 more language markup;
wenzelm
parents: 62520
diff changeset
   336
val language_verbatim = language' {name = "verbatim_text", symbols = true, antiquotes = false};
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55763
diff changeset
   337
val language_rail = language {name = "rail", symbols = true, antiquotes = true, delimited = true};
56034
1c59b555ac4a some Markup.language_path to prevent completion of symbols (notably "~") -- always "delimited" for simplicity in contrast to 42ac3cfb89f6;
wenzelm
parents: 56033
diff changeset
   338
val language_path = language {name = "path", symbols = false, antiquotes = false, delimited = true};
62772
77bbe5af41c3 more language markup;
wenzelm
parents: 62520
diff changeset
   339
val language_mixfix =
77bbe5af41c3 more language markup;
wenzelm
parents: 62520
diff changeset
   340
  language {name = "mixfix_annotation", symbols = true, antiquotes = false, delimited = true};
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   341
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   342
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   343
(* formal entities *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   344
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   345
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
   346
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   347
val entityN = "entity";
63337
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62933
diff changeset
   348
fun entity kind name =
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62933
diff changeset
   349
  (entityN,
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62933
diff changeset
   350
    (if name = "" then [] else [(nameN, name)]) @ (if kind = "" then [] else [(kindN, kind)]));
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   351
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   352
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
   353
  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
   354
  else NONE;
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 defN = "def";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   357
val refN = "ref";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   358
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   359
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   360
(* completion *)
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   361
55694
a1184dfb8e00 clarified semantic completion: retain kind.full_name as official item name for history;
wenzelm
parents: 55687
diff changeset
   362
val (completionN, completion) = markup_elem "completion";
55914
c5b752d549e3 clarified init_assignable: make double-sure that initial values are reset;
wenzelm
parents: 55837
diff changeset
   363
val (no_completionN, no_completion) = markup_elem "no_completion";
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   364
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   365
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   366
(* position *)
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 lineN = "line";
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58855
diff changeset
   369
val end_lineN = "end_line";
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58855
diff changeset
   370
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   371
val offsetN = "offset";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   372
val end_offsetN = "end_offset";
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58855
diff changeset
   373
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   374
val fileN = "file";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   375
val idN = "id";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   376
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   377
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
   378
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
   379
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   380
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
   381
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   382
58464
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   383
(* expression *)
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   384
62806
de9bf8171626 more markup;
wenzelm
parents: 62789
diff changeset
   385
val expressionN = "expression";
de9bf8171626 more markup;
wenzelm
parents: 62789
diff changeset
   386
fun expression kind = (expressionN, if kind = "" then [] else [(kindN, kind)]);
58464
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   387
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   388
58544
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   389
(* citation *)
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   390
58545
30b75b7958d6 citation tooltip/hyperlink based on open buffers with .bib files;
wenzelm
parents: 58544
diff changeset
   391
val (citationN, citation) = markup_string "citation" nameN;
58544
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   392
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   393
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
   394
(* external resources *)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   395
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   396
val (pathN, path) = markup_string "path" nameN;
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
   397
val (urlN, url) = markup_string "url" nameN;
61660
78b371644654 added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents: 61614
diff changeset
   398
val (docN, doc) = markup_string "doc" nameN;
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   399
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   400
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   401
(* pretty printing *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   402
62783
75ee05386b90 explicit mixfix block properties;
wenzelm
parents: 62772
diff changeset
   403
val markupN = "markup";
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   404
val consistentN = "consistent";
62789
ce15dd971965 explicit property for unbreakable block;
wenzelm
parents: 62788
diff changeset
   405
val unbreakableN = "unbreakable";
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   406
val indentN = "indent";
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   407
62789
ce15dd971965 explicit property for unbreakable block;
wenzelm
parents: 62788
diff changeset
   408
val block_properties = [markupN, consistentN, unbreakableN, indentN];
62786
2461a58b3587 clarified treatment of properties;
wenzelm
parents: 62783
diff changeset
   409
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   410
val widthN = "width";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   411
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   412
val blockN = "block";
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   413
fun block c i =
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   414
  (blockN,
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   415
    (if c then [(consistentN, print_bool c)] else []) @
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   416
    (if i <> 0 then [(indentN, print_int i)] else []));
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   417
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   418
val breakN = "break";
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   419
fun break w i =
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   420
  (breakN,
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   421
    (if w <> 0 then [(widthN, print_int w)] else []) @
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   422
    (if i <> 0 then [(indentN, print_int i)] else []));
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   423
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   424
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
   425
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
   426
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
   427
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   428
56548
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56465
diff changeset
   429
(* text properties *)
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56465
diff changeset
   430
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56465
diff changeset
   431
val (wordsN, words) = markup_elem "words";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   432
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   433
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
   434
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   435
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 57975
diff changeset
   436
(* misc entities *)
56465
6ad693903e22 more positions and markup;
wenzelm
parents: 56278
diff changeset
   437
6ad693903e22 more positions and markup;
wenzelm
parents: 56278
diff changeset
   438
val system_optionN = "system_option";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   439
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   440
val theoryN = "theory";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   441
val classN = "class";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   442
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
   443
val constantN = "constant";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   444
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   445
val (fixedN, fixed) = markup_string "fixed" nameN;
53378
07990ba8c0ea cases: more position information and PIDE markup;
wenzelm
parents: 53055
diff changeset
   446
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
   447
val (dynamic_factN, dynamic_fact) = markup_string "dynamic_fact" nameN;
63337
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62933
diff changeset
   448
val (literal_factN, literal_fact) = markup_string "literal_fact" nameN;
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   449
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 57975
diff changeset
   450
val method_modifierN = "method_modifier";
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 57975
diff changeset
   451
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   452
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   453
(* inner syntax *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   454
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   455
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
   456
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
   457
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
   458
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
   459
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
   460
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
   461
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
   462
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
   463
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
   464
val (inner_stringN, inner_string) = markup_elem "inner_string";
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   465
val (inner_cartoucheN, inner_cartouche) = markup_elem "inner_cartouche";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   466
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
   467
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   468
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
   469
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   470
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
   471
val (typingN, typing) = markup_elem "typing";
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 63337
diff changeset
   472
val (class_parameterN, class_parameter) = markup_elem "class_parameter";
50201
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
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   475
(* ML *)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   476
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   477
val (ML_keyword1N, ML_keyword1) = markup_elem "ML_keyword1";
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   478
val (ML_keyword2N, ML_keyword2) = markup_elem "ML_keyword2";
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55033
diff changeset
   479
val (ML_keyword3N, ML_keyword3) = markup_elem "ML_keyword3";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   480
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
   481
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
   482
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
   483
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
   484
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
   485
val (ML_commentN, ML_comment) = markup_elem "ML_comment";
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   486
val (SML_stringN, SML_string) = markup_elem "SML_string";
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   487
val (SML_commentN, SML_comment) = markup_elem "SML_comment";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   488
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   489
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
   490
val ML_openN = "ML_open";
55837
154855d9a564 clarified names of antiquotations and markup;
wenzelm
parents: 55828
diff changeset
   491
val ML_structureN = "ML_structure";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   492
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
   493
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   494
val (ML_breakpointN, ML_breakpoint) = markup_int "ML_breakpoint" serialN;
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59935
diff changeset
   495
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   496
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   497
(* antiquotations *)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   498
55526
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   499
val (antiquotedN, antiquoted) = markup_elem "antiquoted";
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   500
val (antiquoteN, antiquote) = markup_elem "antiquote";
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   501
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   502
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
   503
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
   504
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
   505
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   506
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   507
(* text structure *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   508
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   509
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
   510
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
   511
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   512
61449
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   513
(* Markdown document structure *)
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   514
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   515
val (markdown_paragraphN, markdown_paragraph) = markup_elem "markdown_paragraph";
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   516
val (markdown_listN, markdown_list) = markup_string "markdown_list" kindN;
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   517
val (markdown_itemN, markdown_item) = markup_int "markdown_item" "depth";
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   518
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 61209
diff changeset
   519
59795
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   520
(* formal input *)
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   521
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   522
val inputN = "input";
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   523
fun input delimited props = (inputN, (delimitedN, print_bool delimited) :: props);
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   524
d453c69596cc clarified input source;
wenzelm
parents: 59369
diff changeset
   525
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   526
(* outer syntax *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   527
59935
343905de27b1 clarified command keyword markup;
wenzelm
parents: 59795
diff changeset
   528
val (command_keywordN, command_keyword) = markup_elem "command_keyword";
55750
baa7a1e57f4a back to Markup.command for actual tokens (amending 4a4e5686e091) -- avoid conflict of jEdit token marker with Rendering.text_colors;
wenzelm
parents: 55744
diff changeset
   529
val (commandN, command) = markup_elem "command";
55744
4a4e5686e091 clarified token markup: keyword1/keyword2 is for syntax, and "command" the entity kind;
wenzelm
parents: 55694
diff changeset
   530
val (keyword1N, keyword1) = markup_elem "keyword1";
4a4e5686e091 clarified token markup: keyword1/keyword2 is for syntax, and "command" the entity kind;
wenzelm
parents: 55694
diff changeset
   531
val (keyword2N, keyword2) = markup_elem "keyword2";
55763
4b3907cb5654 tuned signature;
wenzelm
parents: 55761
diff changeset
   532
val (keyword3N, keyword3) = markup_elem "keyword3";
55919
2eb8c13339a5 more explicit quasi_keyword markup, for Args.$$$ material, which is somewhere in between of outer and inner syntax;
wenzelm
parents: 55914
diff changeset
   533
val (quasi_keywordN, quasi_keyword) = markup_elem "quasi_keyword";
56202
0a11d17eeeff more markup for improper elements;
wenzelm
parents: 56034
diff changeset
   534
val (improperN, improper) = markup_elem "improper";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   535
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
   536
val (stringN, string) = markup_elem "string";
59081
2ceb05ee0331 clarified token kind;
wenzelm
parents: 58978
diff changeset
   537
val (alt_stringN, alt_string) = markup_elem "alt_string";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   538
val (verbatimN, verbatim) = markup_elem "verbatim";
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   539
val (cartoucheN, cartouche) = markup_elem "cartouche";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   540
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
   541
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   542
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   543
(* timing *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   544
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   545
val elapsedN = "elapsed";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   546
val cpuN = "cpu";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   547
val gcN = "gc";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   548
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   549
fun timing_properties {elapsed, cpu, gc} =
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   550
 [(elapsedN, Time.toString elapsed),
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   551
  (cpuN, Time.toString cpu),
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   552
  (gcN, Time.toString gc)];
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   553
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   554
fun parse_timing_properties props =
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   555
 {elapsed = Properties.seconds props elapsedN,
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   556
  cpu = Properties.seconds props cpuN,
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   557
  gc = Properties.seconds props gcN};
51218
6425a0d3b7ac support for build passing timings from Scala to ML;
wenzelm
parents: 51217
diff changeset
   558
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   559
val timingN = "timing";
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   560
fun timing t = (timingN, timing_properties t);
51218
6425a0d3b7ac support for build passing timings from Scala to ML;
wenzelm
parents: 51217
diff changeset
   561
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   562
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   563
(* command timing *)
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   564
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   565
val command_timingN = "command_timing";
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   566
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   567
fun command_timing_properties {file, offset, name} elapsed =
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   568
 [(fileN, file), (offsetN, print_int offset),
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   569
  (nameN, name), (elapsedN, Time.toString elapsed)];
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   570
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   571
fun parse_command_timing_properties props =
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   572
  (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
   573
    (SOME file, SOME offset, SOME name) =>
51665
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   574
      SOME ({file = file, offset = parse_int offset, name = name},
cba83c9f72b9 tuned signature;
wenzelm
parents: 51626
diff changeset
   575
        Properties.seconds props elapsedN)
51228
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   576
  | _ => NONE);
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   577
dff3471dd8bc more tight representation of command timing;
wenzelm
parents: 51218
diff changeset
   578
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   579
(* toplevel *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   580
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   581
val subgoalsN = "subgoals";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   582
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
   583
50543
42bbe637be54 fold main goal;
wenzelm
parents: 50537
diff changeset
   584
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
   585
val (subgoalN, subgoal) = markup_string "subgoal" nameN;
50215
97959912840a more general sendback properties;
wenzelm
parents: 50201
diff changeset
   586
50450
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50255
diff changeset
   587
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   588
(* command status *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   589
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   590
val taskN = "task";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   591
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   592
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
   593
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
   594
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
   595
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
   596
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
   597
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
   598
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   599
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   600
(* messages *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   601
50914
fe4714886d92 identify future results more carefully, to avoid odd duplication of error messages, notably from forked goals;
wenzelm
parents: 50845
diff changeset
   602
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
   603
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   604
val initN = "init";
61209
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   605
val (statusN, status) = markup_elem "status";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   606
val (resultN, result) = markup_elem "result";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   607
val (writelnN, writeln) = markup_elem "writeln";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   608
val (stateN, state) = markup_elem "state"
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   609
val (informationN, information) = markup_elem "information";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   610
val (tracingN, tracing) = markup_elem "tracing";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   611
val (warningN, warning) = markup_elem "warning";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   612
val (legacyN, legacy) = markup_elem "legacy";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   613
val (errorN, error) = markup_elem "error";
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   614
val (systemN, system) = markup_elem "system";
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   615
val protocolN = "protocol";
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   616
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   617
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
   618
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
   619
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   620
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
   621
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   622
val (intensifyN, intensify) = markup_elem "intensify";
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   623
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   624
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   625
(* active areas *)
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   626
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50683
diff changeset
   627
val browserN = "browser"
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   628
val graphviewN = "graphview";
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   629
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   630
val sendbackN = "sendback";
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   631
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
   632
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
   633
val padding_command = (paddingN, "command");
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   634
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   635
val dialogN = "dialog";
50503
50f141b34bb7 enable Isabelle/ML to produce uninterpreted result messages as well;
wenzelm
parents: 50500
diff changeset
   636
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
   637
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   638
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   639
(* protocol message functions *)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   640
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   641
val functionN = "function"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   642
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52111
diff changeset
   643
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
   644
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
   645
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51990
diff changeset
   646
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
   647
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   648
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
   649
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
   650
50683
34b109c5324c inline ML statistics into build log;
wenzelm
parents: 50545
diff changeset
   651
val ML_statistics = (functionN, "ML_statistics");
50255
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   652
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   653
val task_statistics = (functionN, "task_statistics");
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50914
diff changeset
   654
51216
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   655
val command_timing = (functionN, "command_timing");
e6e7685fc8f8 emit command_timing properties into build log;
wenzelm
parents: 50975
diff changeset
   656
50845
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   657
fun loading_theory name = [("function", "loading_theory"), ("name", name)];
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   658
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   659
fun dest_loading_theory [("function", "loading_theory"), ("name", name)] = SOME name
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   660
  | dest_loading_theory _ = NONE;
477ca927676f immediate theory progress for build_dialog;
wenzelm
parents: 50842
diff changeset
   661
59369
7090199d3f78 more informative build_theories_result: cumulative Runtime.exn_message;
wenzelm
parents: 59364
diff changeset
   662
fun build_theories_result id = [("function", "build_theories_result"), ("id", id)];
56616
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   663
56864
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56743
diff changeset
   664
val print_operationsN = "print_operations";
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56743
diff changeset
   665
val print_operations = [(functionN, print_operationsN)];
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56743
diff changeset
   666
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 46894
diff changeset
   667
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   668
(* debugger *)
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   669
60842
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   670
fun debugger_state name = [(functionN, "debugger_state"), (nameN, name)];
60834
781f1168d31e maintain debugger output messages;
wenzelm
parents: 60830
diff changeset
   671
fun debugger_output name = [(functionN, "debugger_output"), (nameN, name)];
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   672
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   673
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   674
(* simplifier trace *)
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   675
57594
037f3b251df5 regular message to refer to Simplifier Trace panel (unused);
wenzelm
parents: 56864
diff changeset
   676
val simp_trace_panelN = "simp_trace_panel";
037f3b251df5 regular message to refer to Simplifier Trace panel (unused);
wenzelm
parents: 56864
diff changeset
   677
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   678
val simp_trace_logN = "simp_trace_log";
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   679
val simp_trace_stepN = "simp_trace_step";
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   680
val simp_trace_recurseN = "simp_trace_recurse";
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   681
val simp_trace_hintN = "simp_trace_hint";
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   682
val simp_trace_ignoreN = "simp_trace_ignore";
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   683
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   684
fun simp_trace_cancel i = [(functionN, "simp_trace_cancel"), (serialN, print_int i)];
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   685
27969
46d7057b8614 added messages and process information;
wenzelm
parents: 27894
diff changeset
   686
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   687
30221
14145e81a2fe added markup for binding;
wenzelm
parents: 29522
diff changeset
   688
(** print mode operations **)
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   689
29325
a205acc94356 Markup.no_output;
wenzelm
parents: 29318
diff changeset
   690
val no_output = ("", "");
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   691
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   692
local
62933
f14569a9ab93 proper output of markup, e.g. relevant for nested ML as used in Pure/System/bash.ML;
wenzelm
parents: 62806
diff changeset
   693
  val default = {output = Output_Primitives.markup_fn};
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   694
  val modes = Synchronized.var "Markup.modes" (Symtab.make [("", default)]);
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   695
in
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   696
  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
   697
    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
   698
      (if not (Symtab.defined tab name) then ()
61209
7a421e7ef97c tuned signature;
wenzelm
parents: 60842
diff changeset
   699
       else Output.warning ("Redefining markup mode " ^ quote name);
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
   700
       Symtab.update (name, {output = output}) tab));
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   701
  fun get_mode () =
43684
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   702
    the_default default
85388f5570c4 prefer Synchronized.var;
wenzelm
parents: 43673
diff changeset
   703
      (Library.get_first (Symtab.lookup (Synchronized.value modes)) (print_mode_value ()));
23623
939b58b527ee Common markup elements.
wenzelm
parents:
diff changeset
   704
end;
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   705
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38429
diff changeset
   706
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
   707
23719
ccd9cb15c062 more markup for inner and outer syntax;
wenzelm
parents: 23704
diff changeset
   708
val enclose = output #-> Library.enclose;
ccd9cb15c062 more markup for inner and outer syntax;
wenzelm
parents: 23704
diff changeset
   709
25552
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   710
fun markup m =
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   711
  let val (bg, en) = output m
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   712
  in Library.enclose (Output.escape bg) (Output.escape en) end;
e4d465bc5b35 added channels;
wenzelm
parents: 24870
diff changeset
   713
59125
ee19c92ae8b4 more explicit markup for improper commands;
wenzelm
parents: 59112
diff changeset
   714
val markups = fold_rev markup;
ee19c92ae8b4 more explicit markup for improper commands;
wenzelm
parents: 59112
diff changeset
   715
43665
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   716
fun markup_only m = markup m "";
573d1272f36d tuned signature;
wenzelm
parents: 43593
diff changeset
   717
55956
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55919
diff changeset
   718
fun markup_report "" = ""
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55919
diff changeset
   719
  | markup_report txt = markup report txt;
94d384d621b0 reject internal term names outright, and complete consts instead;
wenzelm
parents: 55919
diff changeset
   720
23704
18d6ee425689 added print_mode setup (from pretty.ML);
wenzelm
parents: 23695
diff changeset
   721
end;