src/Pure/PIDE/markup.scala
author wenzelm
Tue, 23 Jan 2018 19:25:39 +0100
changeset 67493 c4e9e0c50487
parent 67336 3ee6da378183
child 67839 0c2ed45ece20
permissions -rw-r--r--
treat sessions as entities with defining position; tuned signature;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
45670
b84170538043 rearranged files;
wenzelm
parents: 45667
diff changeset
     1
/*  Title:      Pure/PIDE/markup.scala
27958
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     3
56743
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
     4
Quasi-abstract markup elements.
27958
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     5
*/
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     6
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     7
package isabelle
292d78c906b1 Common markup elements.
wenzelm
parents:
diff changeset
     8
27970
3dd5fbdf61c4 added position, messages;
wenzelm
parents: 27958
diff changeset
     9
32450
375db037f4d2 misc tuning;
wenzelm
parents: 31472
diff changeset
    10
object Markup
375db037f4d2 misc tuning;
wenzelm
parents: 31472
diff changeset
    11
{
56743
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    12
  /* elements */
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    13
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    14
  object Elements
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    15
  {
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    16
    def apply(elems: Set[String]): Elements = new Elements(elems)
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    17
    def apply(elems: String*): Elements = apply(Set(elems: _*))
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    18
    val empty: Elements = apply()
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    19
    val full: Elements =
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    20
      new Elements(Set.empty)
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    21
      {
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    22
        override def apply(elem: String): Boolean = true
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    23
        override def toString: String = "Elements.full"
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    24
      }
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    25
  }
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    26
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    27
  sealed class Elements private[Markup](private val rep: Set[String])
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    28
  {
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    29
    def apply(elem: String): Boolean = rep.contains(elem)
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    30
    def + (elem: String): Elements = new Elements(rep + elem)
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    31
    def ++ (elems: Elements): Elements = new Elements(rep ++ elems.rep)
65176
908d8be90533 suppress irrelevant markup for VSCode;
wenzelm
parents: 64370
diff changeset
    32
    def - (elem: String): Elements = new Elements(rep - elem)
908d8be90533 suppress irrelevant markup for VSCode;
wenzelm
parents: 64370
diff changeset
    33
    def -- (elems: Elements): Elements = new Elements(rep -- elems.rep)
56743
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    34
    override def toString: String = rep.mkString("Elements(", ",", ")")
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    35
  }
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    36
81370dfadb1d tuned signature;
wenzelm
parents: 56733
diff changeset
    37
45666
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45633
diff changeset
    38
  /* properties */
29184
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    39
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    40
  val NAME = "name"
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43748
diff changeset
    41
  val Name = new Properties.String(NAME)
42136
826168ae0213 added Markup.Name and Markup.Kind convenience;
wenzelm
parents: 41483
diff changeset
    42
29184
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    43
  val KIND = "kind"
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43748
diff changeset
    44
  val Kind = new Properties.String(KIND)
29184
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    45
65937
fde7b5d209d5 store errors in build_history logs and database;
wenzelm
parents: 65753
diff changeset
    46
  val CONTENT = "content"
fde7b5d209d5 store errors in build_history logs and database;
wenzelm
parents: 65753
diff changeset
    47
  val Content = new Properties.String(CONTENT)
fde7b5d209d5 store errors in build_history logs and database;
wenzelm
parents: 65753
diff changeset
    48
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    49
  val SERIAL = "serial"
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    50
  val Serial = new Properties.Long(SERIAL)
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    51
52854
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
    52
  val INSTANCE = "instance"
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
    53
  val Instance = new Properties.String(INSTANCE)
92932931bd82 more general Output.result: allow to update arbitrary properties;
wenzelm
parents: 52800
diff changeset
    54
29184
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    55
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    56
  /* basic markup */
29184
85889d58b5da more markup elements;
wenzelm
parents: 29140
diff changeset
    57
45666
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45633
diff changeset
    58
  val Empty = Markup("", Nil)
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45633
diff changeset
    59
  val Broken = Markup("broken", Nil)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    60
55551
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    61
  class Markup_String(val name: String, prop: String)
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    62
  {
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    63
    private val Prop = new Properties.String(prop)
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    64
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    65
    def apply(s: String): Markup = Markup(name, Prop(s))
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    66
    def unapply(markup: Markup): Option[String] =
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    67
      if (markup.name == name) Prop.unapply(markup.properties) else None
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    68
  }
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    69
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    70
  class Markup_Int(val name: String, prop: String)
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    71
  {
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    72
    private val Prop = new Properties.Int(prop)
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    73
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    74
    def apply(i: Int): Markup = Markup(name, Prop(i))
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    75
    def unapply(markup: Markup): Option[Int] =
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    76
      if (markup.name == name) Prop.unapply(markup.properties) else None
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    77
  }
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
    78
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    79
  class Markup_Long(val name: String, prop: String)
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    80
  {
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    81
    private val Prop = new Properties.Long(prop)
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    82
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    83
    def apply(i: Long): Markup = Markup(name, Prop(i))
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    84
    def unapply(markup: Markup): Option[Long] =
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    85
      if (markup.name == name) Prop.unapply(markup.properties) else None
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    86
  }
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
    87
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    88
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    89
  /* formal entities */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    90
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    91
  val BINDING = "binding"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    92
  val ENTITY = "entity"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    93
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    94
  object Entity
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    95
  {
62986
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62806
diff changeset
    96
    val Def = new Properties.Long("def")
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62806
diff changeset
    97
    val Ref = new Properties.Long("ref")
9d2fae6b31cc background color for entity def/ref focus;
wenzelm
parents: 62806
diff changeset
    98
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
    99
    def unapply(markup: Markup): Option[(String, String)] =
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   100
      markup match {
55551
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   101
        case Markup(ENTITY, props) =>
63337
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62986
diff changeset
   102
          val kind = Kind.unapply(props).getOrElse("")
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62986
diff changeset
   103
          val name = Name.unapply(props).getOrElse("")
ae9330fdbc16 position information for literal facts;
wenzelm
parents: 62986
diff changeset
   104
          Some((kind, name))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   105
        case _ => None
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   106
      }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   107
  }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   108
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   109
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   110
  /* completion */
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   111
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   112
  val COMPLETION = "completion"
55914
c5b752d549e3 clarified init_assignable: make double-sure that initial values are reset;
wenzelm
parents: 55837
diff changeset
   113
  val NO_COMPLETION = "no_completion"
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   114
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 55666
diff changeset
   115
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   116
  /* position */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   117
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   118
  val LINE = "line"
58978
e42da880c61e more position information, e.g. relevant for errors in generated ML source;
wenzelm
parents: 58853
diff changeset
   119
  val END_LINE = "line"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   120
  val OFFSET = "offset"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   121
  val END_OFFSET = "end_offset"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   122
  val FILE = "file"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   123
  val ID = "id"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   124
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   125
  val DEF_LINE = "def_line"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   126
  val DEF_OFFSET = "def_offset"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   127
  val DEF_END_OFFSET = "def_end_offset"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   128
  val DEF_FILE = "def_file"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   129
  val DEF_ID = "def_id"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   130
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   131
  val POSITION_PROPERTIES = Set(LINE, OFFSET, END_OFFSET, FILE, ID)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   132
  val POSITION = "position"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   133
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   134
58464
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   135
  /* expression */
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   136
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   137
  val EXPRESSION = "expression"
62806
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   138
  object Expression
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   139
  {
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   140
    def unapply(markup: Markup): Option[String] =
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   141
      markup match {
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   142
        case Markup(EXPRESSION, Kind(kind)) => Some(kind)
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   143
        case Markup(EXPRESSION, _) => Some("")
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   144
        case _ => None
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   145
      }
de9bf8171626 more markup;
wenzelm
parents: 61864
diff changeset
   146
  }
58464
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   147
5e7fc9974aba support for sub-expression markup;
wenzelm
parents: 58048
diff changeset
   148
58544
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   149
  /* citation */
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   150
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   151
  val CITATION = "citation"
58545
30b75b7958d6 citation tooltip/hyperlink based on open buffers with .bib files;
wenzelm
parents: 58544
diff changeset
   152
  val Citation = new Markup_String(CITATION, NAME)
58544
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   153
340f130b3d38 bibtex support in ML: document antiquotation @{cite} with markup;
wenzelm
parents: 58464
diff changeset
   154
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   155
  /* embedded languages */
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   156
55666
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55616
diff changeset
   157
  val Symbols = new Properties.Boolean("symbols")
cc350eb1087e refined language context: antiquotes;
wenzelm
parents: 55616
diff changeset
   158
  val Antiquotes = new Properties.Boolean("antiquotes")
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55765
diff changeset
   159
  val Delimited = new Properties.Boolean("delimited")
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   160
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   161
  val LANGUAGE = "language"
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   162
  object Language
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   163
  {
67336
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   164
    val DOCUMENT = "document"
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55615
diff changeset
   165
    val ML = "ML"
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   166
    val SML = "SML"
56843
b2bfcd8cda80 support for path completion based on file-system content;
wenzelm
parents: 56743
diff changeset
   167
    val PATH = "path"
55616
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55615
diff changeset
   168
    val UNKNOWN = "unknown"
25a7a998852a default completion context via outer syntax;
wenzelm
parents: 55615
diff changeset
   169
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55765
diff changeset
   170
    def unapply(markup: Markup): Option[(String, Boolean, Boolean, Boolean)] =
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   171
      markup match {
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   172
        case Markup(LANGUAGE, props) =>
55828
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55765
diff changeset
   173
          (props, props, props, props) match {
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55765
diff changeset
   174
            case (Name(name), Symbols(symbols), Antiquotes(antiquotes), Delimited(delimited)) =>
42ac3cfb89f6 clarified language markup: added "delimited" property;
wenzelm
parents: 55765
diff changeset
   175
              Some((name, symbols, antiquotes, delimited))
55615
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   176
            case _ => None
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   177
          }
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   178
        case _ => None
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   179
      }
bf4bbe72f740 completion of keywords and symbols based on language context;
wenzelm
parents: 55553
diff changeset
   180
  }
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   181
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   182
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
   183
  /* external resources */
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   184
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   185
  val PATH = "path"
55551
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   186
  val Path = new Markup_String(PATH, NAME)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   187
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
   188
  val URL = "url"
55551
4a5f65df29fa tuned signature;
wenzelm
parents: 55550
diff changeset
   189
  val Url = new Markup_String(URL, NAME)
54702
3daeba5130f0 added document antiquotation @{url}, which produces formal markup for LaTeX and PIDE;
wenzelm
parents: 53378
diff changeset
   190
61660
78b371644654 added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents: 61598
diff changeset
   191
  val DOC = "doc"
78b371644654 added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents: 61598
diff changeset
   192
  val Doc = new Markup_String(DOC, NAME)
78b371644654 added antiquotation @{doc}, e.g. useful for demonstration purposes;
wenzelm
parents: 61598
diff changeset
   193
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   194
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   195
  /* pretty printing */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   196
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   197
  val Consistent = new Properties.Boolean("consistent")
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   198
  val Indent = new Properties.Int("indent")
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   199
  val Width = new Properties.Int("width")
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   200
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   201
  object Block
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   202
  {
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   203
    val name = "block"
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   204
    def apply(c: Boolean, i: Int): Markup =
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   205
      Markup(name,
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   206
        (if (c) Consistent(c) else Nil) :::
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   207
        (if (i != 0) Indent(i) else Nil))
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   208
    def unapply(markup: Markup): Option[(Boolean, Int)] =
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   209
      if (markup.name == name) {
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   210
        val c = Consistent.unapply(markup.properties).getOrElse(false)
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   211
        val i = Indent.unapply(markup.properties).getOrElse(0)
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   212
        Some((c, i))
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   213
      }
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   214
      else None
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   215
  }
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   216
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   217
  object Break
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   218
  {
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   219
    val name = "break"
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   220
    def apply(w: Int, i: Int): Markup =
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   221
      Markup(name,
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   222
        (if (w != 0) Width(w) else Nil) :::
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   223
        (if (i != 0) Indent(i) else Nil))
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   224
    def unapply(markup: Markup): Option[(Int, Int)] =
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   225
      if (markup.name == name) {
61864
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   226
        val w = Width.unapply(markup.properties).getOrElse(0)
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   227
        val i = Indent.unapply(markup.properties).getOrElse(0)
3a5992c3410c support for blocks with consistent breaks;
wenzelm
parents: 61862
diff changeset
   228
        Some((w, i))
61862
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   229
      }
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   230
      else None
e2a9e46ac0fb support pretty break indent, like underlying ML systems;
wenzelm
parents: 61660
diff changeset
   231
  }
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   232
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: 50975
diff changeset
   233
  val ITEM = "item"
51574
2b58d7b139d6 ghost bullet via markup, which is painted as bar under text (normally space);
wenzelm
parents: 51570
diff changeset
   234
  val BULLET = "bullet"
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: 50975
diff changeset
   235
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   236
  val SEPARATOR = "separator"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   237
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   238
56548
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56278
diff changeset
   239
  /* text properties */
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56278
diff changeset
   240
ae6870efc28d markup for prose words within formal comments;
wenzelm
parents: 56278
diff changeset
   241
  val WORDS = "words"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   242
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   243
  val HIDDEN = "hidden"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   244
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   245
58048
aa6296d09e0e more explicit Method.modifier with reported position;
wenzelm
parents: 57595
diff changeset
   246
  /* misc entities */
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   247
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   248
  val CLASS = "class"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   249
  val TYPE_NAME = "type_name"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   250
  val FIXED = "fixed"
53378
07990ba8c0ea cases: more position information and PIDE markup;
wenzelm
parents: 53055
diff changeset
   251
  val CASE = "case"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   252
  val CONSTANT = "constant"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   253
  val DYNAMIC_FACT = "dynamic_fact"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   254
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   255
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   256
  /* inner syntax */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   257
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   258
  val TFREE = "tfree"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   259
  val TVAR = "tvar"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   260
  val FREE = "free"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   261
  val SKOLEM = "skolem"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   262
  val BOUND = "bound"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   263
  val VAR = "var"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   264
  val NUMERAL = "numeral"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   265
  val LITERAL = "literal"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   266
  val DELIMITER = "delimiter"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   267
  val INNER_STRING = "inner_string"
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   268
  val INNER_CARTOUCHE = "inner_cartouche"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   269
  val INNER_COMMENT = "inner_comment"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   270
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   271
  val TOKEN_RANGE = "token_range"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   272
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   273
  val SORTING = "sorting"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   274
  val TYPING = "typing"
63347
e344dc82f6c2 report class parameters within instantiation;
wenzelm
parents: 63337
diff changeset
   275
  val CLASS_PARAMETER = "class_parameter"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   276
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   277
  val ATTRIBUTE = "attribute"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   278
  val METHOD = "method"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   279
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   280
55550
bcc643ac071a generic markup for embedded languages;
wenzelm
parents: 55526
diff changeset
   281
  /* antiquotations */
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   282
55526
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   283
  val ANTIQUOTED = "antiquoted"
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   284
  val ANTIQUOTE = "antiquote"
39708e59f4b0 more markup;
wenzelm
parents: 55505
diff changeset
   285
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   286
  val ML_ANTIQUOTATION = "ML_antiquotation"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   287
  val DOCUMENT_ANTIQUOTATION = "document_antiquotation"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   288
  val DOCUMENT_ANTIQUOTATION_OPTION = "document_antiquotation_option"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   289
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   290
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   291
  /* text structure */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   292
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   293
  val PARAGRAPH = "paragraph"
50545
00bdc48c5f71 explicit text_fold markup, which is used by default in Pretty.chunks/chunks2;
wenzelm
parents: 50543
diff changeset
   294
  val TEXT_FOLD = "text_fold"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   295
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   296
61449
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   297
  /* Markdown document structure */
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   298
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   299
  val MARKDOWN_PARAGRAPH = "markdown_paragraph"
67323
d02208cefbdb PIDE markup for Markdown items (which may consist of multiple paragraphs or lists);
wenzelm
parents: 67322
diff changeset
   300
  val MARKDOWN_ITEM = "markdown_item"
67336
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   301
  val Markdown_Bullet = new Markup_Int("markdown_bullet", "depth")
61449
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   302
  val Markdown_List = new Markup_String("markdown_list", "kind")
67336
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   303
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   304
  val ITEMIZE = "itemize"
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   305
  val ENUMERATE = "enumerate"
3ee6da378183 HTML output for Markdown elements;
wenzelm
parents: 67323
diff changeset
   306
  val DESCRIPTION = "description"
61449
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   307
4f31f79cf2d1 report Markdown document structure;
wenzelm
parents: 60882
diff changeset
   308
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
   309
  /* ML */
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   310
55505
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55390
diff changeset
   311
  val ML_KEYWORD1 = "ML_keyword1"
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55390
diff changeset
   312
  val ML_KEYWORD2 = "ML_keyword2"
2a1ca7f6607b more uniform ML keyword markup;
wenzelm
parents: 55390
diff changeset
   313
  val ML_KEYWORD3 = "ML_keyword3"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   314
  val ML_DELIMITER = "ML_delimiter"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   315
  val ML_TVAR = "ML_tvar"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   316
  val ML_NUMERAL = "ML_numeral"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   317
  val ML_CHAR = "ML_char"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   318
  val ML_STRING = "ML_string"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   319
  val ML_COMMENT = "ML_comment"
56278
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   320
  val SML_STRING = "SML_string"
2576d3a40ed6 separate tokenization and language context for SML: no symbols, no antiquotes;
wenzelm
parents: 56202
diff changeset
   321
  val SML_COMMENT = "SML_comment"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   322
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   323
  val ML_DEF = "ML_def"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   324
  val ML_OPEN = "ML_open"
55837
154855d9a564 clarified names of antiquotations and markup;
wenzelm
parents: 55828
diff changeset
   325
  val ML_STRUCTURE = "ML_structure"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   326
  val ML_TYPING = "ML_typing"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   327
60744
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
   328
  val ML_BREAKPOINT = "ML_breakpoint"
4eba53a0ac3d report possible breakpoint positions;
wenzelm
parents: 59707
diff changeset
   329
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   330
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   331
  /* outer syntax */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   332
55744
4a4e5686e091 clarified token markup: keyword1/keyword2 is for syntax, and "command" the entity kind;
wenzelm
parents: 55694
diff changeset
   333
  val COMMAND = "command"
66044
bd7516709051 more HTML rendering as in Isabelle/jEdit;
wenzelm
parents: 65937
diff changeset
   334
  val KEYWORD = "keyword"
55744
4a4e5686e091 clarified token markup: keyword1/keyword2 is for syntax, and "command" the entity kind;
wenzelm
parents: 55694
diff changeset
   335
  val KEYWORD1 = "keyword1"
4a4e5686e091 clarified token markup: keyword1/keyword2 is for syntax, and "command" the entity kind;
wenzelm
parents: 55694
diff changeset
   336
  val KEYWORD2 = "keyword2"
55765
ec7ca5388dea markup for method combinators;
wenzelm
parents: 55744
diff changeset
   337
  val KEYWORD3 = "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
   338
  val QUASI_KEYWORD = "quasi_keyword"
56202
0a11d17eeeff more markup for improper elements;
wenzelm
parents: 55919
diff changeset
   339
  val IMPROPER = "improper"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   340
  val OPERATOR = "operator"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   341
  val STRING = "string"
59081
2ceb05ee0331 clarified token kind;
wenzelm
parents: 58978
diff changeset
   342
  val ALT_STRING = "alt_string"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   343
  val VERBATIM = "verbatim"
55033
8e8243975860 support for nested text cartouches;
wenzelm
parents: 54702
diff changeset
   344
  val CARTOUCHE = "cartouche"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   345
  val COMMENT = "comment"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   346
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   347
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   348
  /* timing */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   349
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   350
  val Elapsed = new Properties.Double("elapsed")
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   351
  val CPU = new Properties.Double("cpu")
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   352
  val GC = new Properties.Double("gc")
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   353
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   354
  object Timing_Properties
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   355
  {
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   356
    def apply(timing: isabelle.Timing): Properties.T =
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   357
      Elapsed(timing.elapsed.seconds) ::: CPU(timing.cpu.seconds) ::: GC(timing.gc.seconds)
51662
3391a493f39a just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents: 51574
diff changeset
   358
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   359
    def unapply(props: Properties.T): Option[isabelle.Timing] =
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   360
      (props, props, props) match {
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   361
        case (Elapsed(elapsed), CPU(cpu), GC(gc)) =>
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   362
          Some(new isabelle.Timing(Time.seconds(elapsed), Time.seconds(cpu), Time.seconds(gc)))
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   363
        case _ => None
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   364
      }
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   365
  }
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   366
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   367
  val TIMING = "timing"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   368
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   369
  object Timing
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   370
  {
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   371
    def apply(timing: isabelle.Timing): Markup = Markup(TIMING, Timing_Properties(timing))
51662
3391a493f39a just one timing protocol function, with 3 implementations: TTY/PG, PIDE/document, build;
wenzelm
parents: 51574
diff changeset
   372
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   373
    def unapply(markup: Markup): Option[isabelle.Timing] =
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   374
      markup match {
50781
a0f22c2d60cc standardized treatment of timing properties;
wenzelm
parents: 50715
diff changeset
   375
        case Markup(TIMING, Timing_Properties(timing)) => Some(timing)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   376
        case _ => None
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   377
      }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   378
  }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   379
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   380
65317
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   381
  /* process result */
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   382
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   383
  val Return_Code = new Properties.Int("return_code")
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   384
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   385
  object Process_Result
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   386
  {
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   387
    def apply(result: Process_Result): Properties.T =
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   388
      Return_Code(result.rc) :::
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   389
        (if (result.timing.is_zero) Nil else Timing_Properties(result.timing))
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   390
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   391
    def unapply(props: Properties.T): Option[Process_Result] =
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   392
      props match {
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   393
        case Return_Code(rc) =>
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   394
          val timing = Timing_Properties.unapply(props).getOrElse(isabelle.Timing.zero)
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   395
          Some(isabelle.Process_Result(rc, timing = timing))
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   396
        case _ => None
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   397
      }
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   398
  }
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   399
b9f5cd845616 more informative session result;
wenzelm
parents: 65313
diff changeset
   400
63474
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   401
  /* command indentation */
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   402
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   403
  object Command_Indent
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   404
  {
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   405
    val name = "command_indent"
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   406
    def unapply(markup: Markup): Option[Int] =
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   407
      if (markup.name == name) Indent.unapply(markup.properties) else None
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   408
  }
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   409
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   410
f66e3c3b0fb1 semantic indentation for unstructured proof scripts;
wenzelm
parents: 63347
diff changeset
   411
  /* goals */
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   412
50543
42bbe637be54 fold main goal;
wenzelm
parents: 50503
diff changeset
   413
  val GOAL = "goal"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   414
  val SUBGOAL = "subgoal"
50215
97959912840a more general sendback properties;
wenzelm
parents: 50201
diff changeset
   415
50450
358b6020f8b6 generalized notion of active area, where sendback is just one application;
wenzelm
parents: 50255
diff changeset
   416
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   417
  /* command status */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   418
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   419
  val TASK = "task"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   420
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   421
  val ACCEPTED = "accepted"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   422
  val FORKED = "forked"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   423
  val JOINED = "joined"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   424
  val RUNNING = "running"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   425
  val FINISHED = "finished"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   426
  val FAILED = "failed"
66379
6392766f3c25 maintain "consolidated" status of theory nodes, which means all evals are finished (but not necessarily prints nor imports);
wenzelm
parents: 66044
diff changeset
   427
  val CONSOLIDATED = "consolidated"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   428
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   429
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   430
  /* interactive documents */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   431
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   432
  val VERSION = "version"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   433
  val ASSIGN = "assign"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   434
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   435
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   436
  /* prover process */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   437
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   438
  val PROVER_COMMAND = "prover_command"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   439
  val PROVER_ARG = "prover_arg"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   440
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   441
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   442
  /* messages */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   443
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   444
  val INIT = "init"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   445
  val STATUS = "status"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   446
  val REPORT = "report"
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   447
  val RESULT = "result"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   448
  val WRITELN = "writeln"
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   449
  val STATE = "state"
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   450
  val INFORMATION = "information"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   451
  val TRACING = "tracing"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   452
  val WARNING = "warning"
59203
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59186
diff changeset
   453
  val LEGACY = "legacy"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   454
  val ERROR = "error"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   455
  val PROTOCOL = "protocol"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   456
  val SYSTEM = "system"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   457
  val STDOUT = "stdout"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   458
  val STDERR = "stderr"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   459
  val EXIT = "exit"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   460
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   461
  val WRITELN_MESSAGE = "writeln_message"
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   462
  val STATE_MESSAGE = "state_message"
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   463
  val INFORMATION_MESSAGE = "information_message"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   464
  val TRACING_MESSAGE = "tracing_message"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   465
  val WARNING_MESSAGE = "warning_message"
59203
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59186
diff changeset
   466
  val LEGACY_MESSAGE = "legacy_message"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   467
  val ERROR_MESSAGE = "error_message"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   468
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   469
  val messages = Map(
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   470
    WRITELN -> WRITELN_MESSAGE,
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   471
    STATE -> STATE_MESSAGE,
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   472
    INFORMATION -> INFORMATION_MESSAGE,
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   473
    TRACING -> TRACING_MESSAGE,
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   474
    WARNING -> WARNING_MESSAGE,
59203
5f0bd5afc16d explicit message channel for "legacy", which is nonetheless a variant of "warning";
wenzelm
parents: 59186
diff changeset
   475
    LEGACY -> LEGACY_MESSAGE,
59184
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   476
    ERROR -> ERROR_MESSAGE)
830bb7ddb3ab explicit message channels for "state", "information";
wenzelm
parents: 59112
diff changeset
   477
52876
78989972d5b8 more explicit status for query operation;
wenzelm
parents: 52854
diff changeset
   478
  val message: String => String = messages.withDefault((s: String) => s)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   479
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   480
  val NO_REPORT = "no_report"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   481
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   482
  val BAD = "bad"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   483
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   484
  val INTENSIFY = "intensify"
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   485
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   486
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   487
  /* active areas */
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   488
50715
8cfd585b9162 prefer old graph browser in Isabelle/jEdit, which still produces better layout;
wenzelm
parents: 50545
diff changeset
   489
  val BROWSER = "browser"
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   490
  val GRAPHVIEW = "graphview"
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   491
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   492
  val SENDBACK = "sendback"
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   493
  val PADDING = "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
   494
  val PADDING_LINE = (PADDING, "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
   495
  val PADDING_COMMAND = (PADDING, "command")
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   496
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   497
  val DIALOG = "dialog"
50503
50f141b34bb7 enable Isabelle/ML to produce uninterpreted result messages as well;
wenzelm
parents: 50501
diff changeset
   498
  val Result = new Properties.String(RESULT)
50500
c94bba7906d2 identify dialogs via official serial and maintain as result message;
wenzelm
parents: 50499
diff changeset
   499
63681
d2448471ffba active jEdit actions;
wenzelm
parents: 63475
diff changeset
   500
  val JEDIT_ACTION = "jedit_action"
d2448471ffba active jEdit actions;
wenzelm
parents: 63475
diff changeset
   501
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   502
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   503
  /* protocol message functions */
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   504
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   505
  val FUNCTION = "function"
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   506
  val Function = new Properties.String(FUNCTION)
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   507
66942
91a21a5631ae proper order of initialization (amending 9953ae603a23);
wenzelm
parents: 66873
diff changeset
   508
  val COMMAND_TIMING: Properties.Entry = (FUNCTION, "command_timing")
91a21a5631ae proper order of initialization (amending 9953ae603a23);
wenzelm
parents: 66873
diff changeset
   509
  val THEORY_TIMING: Properties.Entry = (FUNCTION, "theory_timing")
91a21a5631ae proper order of initialization (amending 9953ae603a23);
wenzelm
parents: 66873
diff changeset
   510
52563
f9a20c2c3b70 tuned protocol terminology;
wenzelm
parents: 52111
diff changeset
   511
  val Assign_Update: Properties.T = List((FUNCTION, "assign_update"))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   512
  val Removed_Versions: Properties.T = List((FUNCTION, "removed_versions"))
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   513
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   514
  object Protocol_Handler
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   515
  {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   516
    def unapply(props: Properties.T): Option[(String)] =
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   517
      props match {
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   518
        case List((FUNCTION, "protocol_handler"), (NAME, name)) => Some(name)
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   519
        case _ => None
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   520
      }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   521
  }
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   522
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   523
  val INVOKE_SCALA = "invoke_scala"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   524
  object Invoke_Scala
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   525
  {
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   526
    def unapply(props: Properties.T): Option[(String, String)] =
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   527
      props match {
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   528
        case List((FUNCTION, INVOKE_SCALA), (NAME, name), (ID, id)) => Some((name, id))
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   529
        case _ => None
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   530
      }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   531
  }
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   532
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   533
  val CANCEL_SCALA = "cancel_scala"
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   534
  object Cancel_Scala
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   535
  {
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   536
    def unapply(props: Properties.T): Option[String] =
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   537
      props match {
52111
1fd184eaa310 explicit management of Session.Protocol_Handlers, with protocol state and functions;
wenzelm
parents: 51818
diff changeset
   538
        case List((FUNCTION, CANCEL_SCALA), (ID, id)) => Some(id)
50201
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   539
        case _ => None
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   540
      }
c26369c9eda6 Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents: 49613
diff changeset
   541
  }
50255
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   542
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   543
  object ML_Statistics
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   544
  {
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   545
    def unapply(props: Properties.T): Option[Properties.T] =
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   546
      props match {
66872
wenzelm
parents: 66379
diff changeset
   547
        case (FUNCTION, "ML_statistics") :: props => Some(props)
50255
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   548
        case _ => None
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   549
      }
d0ec1f0d1d7d some support for ML runtime statistics;
wenzelm
parents: 50215
diff changeset
   550
  }
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   551
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   552
  object Task_Statistics
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   553
  {
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   554
    def unapply(props: Properties.T): Option[Properties.T] =
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   555
      props match {
66872
wenzelm
parents: 66379
diff changeset
   556
        case (FUNCTION, "task_statistics") :: props => Some(props)
50975
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   557
        case _ => None
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   558
      }
73ec6ad6700e more systematic task statistics;
wenzelm
parents: 50781
diff changeset
   559
  }
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   560
59367
6193bbbbe564 more type-safe handler interface;
wenzelm
parents: 59366
diff changeset
   561
  val LOADING_THEORY = "loading_theory"
56616
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   562
  object Loading_Theory
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   563
  {
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   564
    def unapply(props: Properties.T): Option[String] =
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   565
      props match {
59367
6193bbbbe564 more type-safe handler interface;
wenzelm
parents: 59366
diff changeset
   566
        case List((FUNCTION, LOADING_THEORY), (NAME, name)) => Some(name)
56616
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   567
        case _ => None
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   568
      }
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   569
  }
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   570
65313
347ed6219dab more realistic PIDE build session;
wenzelm
parents: 65176
diff changeset
   571
  val BUILD_SESSION_FINISHED = "build_session_finished"
347ed6219dab more realistic PIDE build session;
wenzelm
parents: 65176
diff changeset
   572
  val Build_Session_Finished: Properties.T = List((FUNCTION, BUILD_SESSION_FINISHED))
56616
abc2da18d08d added protocol command "use_theories", with core functionality of batch build;
wenzelm
parents: 56548
diff changeset
   573
56864
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56843
diff changeset
   574
  val PRINT_OPERATIONS = "print_operations"
0446c7ac2e32 support print operations as asynchronous query;
wenzelm
parents: 56843
diff changeset
   575
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   576
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   577
  /* debugger output */
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   578
60842
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   579
  val DEBUGGER_STATE = "debugger_state"
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   580
  object Debugger_State
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   581
  {
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   582
    def unapply(props: Properties.T): Option[String] =
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   583
      props match {
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   584
        case List((FUNCTION, DEBUGGER_STATE), (NAME, name)) => Some(name)
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   585
        case _ => None
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   586
      }
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   587
  }
5510c8444bc4 protocol support for thread debugger state;
wenzelm
parents: 60834
diff changeset
   588
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   589
  val DEBUGGER_OUTPUT = "debugger_output"
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   590
  object Debugger_Output
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   591
  {
60834
781f1168d31e maintain debugger output messages;
wenzelm
parents: 60831
diff changeset
   592
    def unapply(props: Properties.T): Option[String] =
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   593
      props match {
60834
781f1168d31e maintain debugger output messages;
wenzelm
parents: 60831
diff changeset
   594
        case List((FUNCTION, DEBUGGER_OUTPUT), (NAME, name)) => Some(name)
60830
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   595
        case _ => None
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   596
      }
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   597
  }
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   598
f56e189350b2 separate channel for debugger output;
wenzelm
parents: 60744
diff changeset
   599
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   600
  /* simplifier trace */
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   601
57594
037f3b251df5 regular message to refer to Simplifier Trace panel (unused);
wenzelm
parents: 56864
diff changeset
   602
  val SIMP_TRACE_PANEL = "simp_trace_panel"
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   603
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   604
  val SIMP_TRACE_LOG = "simp_trace_log"
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   605
  val SIMP_TRACE_STEP = "simp_trace_step"
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   606
  val SIMP_TRACE_RECURSE = "simp_trace_recurse"
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   607
  val SIMP_TRACE_HINT = "simp_trace_hint"
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   608
  val SIMP_TRACE_IGNORE = "simp_trace_ignore"
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   609
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   610
  val SIMP_TRACE_CANCEL = "simp_trace_cancel"
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   611
  object Simp_Trace_Cancel
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   612
  {
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   613
    def unapply(props: Properties.T): Option[Long] =
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   614
      props match {
55553
99409ccbe04a more standard names for protocol and markup elements;
wenzelm
parents: 55551
diff changeset
   615
        case (FUNCTION, SIMP_TRACE_CANCEL) :: Serial(i) => Some(i)
55316
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   616
        case _ => None
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   617
      }
885500f4aa6a interactive simplifier trace: new panel in Isabelle/jEdit to inspect and modify simplification state
Lars Hupel <lars.hupel@mytum.de>
parents: 55033
diff changeset
   618
  }
65335
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   619
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   620
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   621
  /* XML data representation */
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   622
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   623
  def encode: XML.Encode.T[Markup] = (markup: Markup) =>
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   624
  {
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   625
    import XML.Encode._
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   626
    pair(string, properties)((markup.name, markup.properties))
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   627
  }
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   628
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   629
  def decode: XML.Decode.T[Markup] = (body: XML.Body) =>
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   630
  {
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   631
    import XML.Decode._
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   632
    val (name, props) = pair(string, properties)(body)
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   633
    Markup(name, props)
7634d33c1a79 support to encode/decode command state;
wenzelm
parents: 65317
diff changeset
   634
  }
45666
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45633
diff changeset
   635
}
43721
fad8634cee62 echo prover input via raw_messages, for improved protocol tracing;
wenzelm
parents: 43710
diff changeset
   636
fad8634cee62 echo prover input via raw_messages, for improved protocol tracing;
wenzelm
parents: 43710
diff changeset
   637
45666
d83797ef0d2d separate module for concrete Isabelle markup;
wenzelm
parents: 45633
diff changeset
   638
sealed case class Markup(name: String, properties: Properties.T)
59707
10effab11669 tuned signature;
wenzelm
parents: 59369
diff changeset
   639
{
10effab11669 tuned signature;
wenzelm
parents: 59369
diff changeset
   640
  def markup(s: String): String =
10effab11669 tuned signature;
wenzelm
parents: 59369
diff changeset
   641
    YXML.string_of_tree(XML.Elem(this, List(XML.Text(s))))
64358
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 63681
diff changeset
   642
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 63681
diff changeset
   643
  def update_properties(more_props: Properties.T): Markup =
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 63681
diff changeset
   644
    if (more_props.isEmpty) this
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 63681
diff changeset
   645
    else Markup(name, (more_props :\ properties) { case (p, ps) => Properties.put(ps, p) })
65753
787e5ee6ef53 more operations;
wenzelm
parents: 65335
diff changeset
   646
787e5ee6ef53 more operations;
wenzelm
parents: 65335
diff changeset
   647
  def + (entry: Properties.Entry): Markup =
787e5ee6ef53 more operations;
wenzelm
parents: 65335
diff changeset
   648
    Markup(name, Properties.put(properties, entry))
59707
10effab11669 tuned signature;
wenzelm
parents: 59369
diff changeset
   649
}