src/Pure/PIDE/xml.scala
author wenzelm
Thu, 27 Jun 2024 22:09:09 +0200
changeset 80429 6f4d5d922da7
parent 76351 2cee31cd92f0
child 80430 89cd8fedefa7
permissions -rw-r--r--
clarified signature: more explicit types;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44698
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 44697
diff changeset
     1
/*  Title:      Pure/PIDE/xml.scala
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     3
44698
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 44697
diff changeset
     4
Untyped XML trees and basic data representation.
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     5
*/
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     6
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     7
package isabelle
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
     8
55618
995162143ef4 tuned imports;
wenzelm
parents: 52890
diff changeset
     9
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    10
object XML {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
    11
  /** XML trees **/
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
    12
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    13
  /* datatype representation */
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    14
65753
787e5ee6ef53 more operations;
wenzelm
parents: 65334
diff changeset
    15
  type Attribute = Properties.Entry
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43778
diff changeset
    16
  type Attributes = Properties.T
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
    17
57912
wenzelm
parents: 57909
diff changeset
    18
  sealed abstract class Tree { override def toString: String = string_of_tree(this) }
64354
wenzelm
parents: 61026
diff changeset
    19
  type Body = List[Tree]
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    20
  case class Elem(markup: Markup, body: Body) extends Tree {
73032
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    21
    private lazy val hash: Int = (markup, body).hashCode()
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    22
    override def hashCode(): Int = hash
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    23
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 51987
diff changeset
    24
    def name: String = markup.name
65753
787e5ee6ef53 more operations;
wenzelm
parents: 65334
diff changeset
    25
64358
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 64354
diff changeset
    26
    def update_attributes(more_attributes: Attributes): Elem =
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 64354
diff changeset
    27
      if (more_attributes.isEmpty) this
15c90b744481 more operations (see also properties.ML);
wenzelm
parents: 64354
diff changeset
    28
      else Elem(markup.update_properties(more_attributes), body)
65753
787e5ee6ef53 more operations;
wenzelm
parents: 65334
diff changeset
    29
65772
368399c5d87f proper type for iterated application;
wenzelm
parents: 65753
diff changeset
    30
    def + (att: Attribute): Elem = Elem(markup + att, body)
52890
36e2c0c308eb tuned signature;
wenzelm
parents: 51987
diff changeset
    31
  }
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    32
  case class Text(content: String) extends Tree {
73032
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    33
    private lazy val hash: Int = content.hashCode()
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    34
    override def hashCode(): Int = hash
72b13af7f266 persistent hash code: much faster caching;
wenzelm
parents: 73031
diff changeset
    35
  }
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    36
66196
31c9b09cc1d4 some HTML GUI elements;
wenzelm
parents: 65991
diff changeset
    37
  def elem(markup: Markup): XML.Elem = XML.Elem(markup, Nil)
64354
wenzelm
parents: 61026
diff changeset
    38
  def elem(name: String, body: Body): XML.Elem = XML.Elem(Markup(name, Nil), body)
wenzelm
parents: 61026
diff changeset
    39
  def elem(name: String): XML.Elem = XML.Elem(Markup(name, Nil), Nil)
38267
e50c283dd125 type XML.Body as basic data representation language (Scala version);
wenzelm
parents: 38263
diff changeset
    40
73028
95e0f014cd24 tuned signature;
wenzelm
parents: 73024
diff changeset
    41
  val no_text: Text = Text("")
69867
wenzelm
parents: 69805
diff changeset
    42
  val newline: Text = Text("\n")
wenzelm
parents: 69805
diff changeset
    43
74785
4671d29feb00 tuned signature;
wenzelm
parents: 74731
diff changeset
    44
  def string(s: String): Body = if (s.isEmpty) Nil else List(Text(s))
4671d29feb00 tuned signature;
wenzelm
parents: 74731
diff changeset
    45
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    46
  def enclose(bg: String, en:String, body: Body): Body =
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    47
    string(bg) ::: body ::: string(en)
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    48
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    49
  trait Traversal {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    50
    def text(s: String): Unit
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    51
    def elem(markup: Markup, end: Boolean = false): Unit
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    52
    def end_elem(name: String): Unit
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    53
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    54
    def tree(t: Tree): Unit =
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    55
      t match {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    56
        case Text(s) => text(s)
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    57
        case Elem(markup, Nil) => elem(markup, end = true)
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    58
        case Elem(markup, ts) => elem(markup); trees(ts); end_elem(markup.name)
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    59
      }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    60
    def trees(ts: Iterable[Tree]): Unit = ts.foreach(tree)
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    61
  }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
    62
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    63
69805
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    64
  /* name space */
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    65
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    66
  object Namespace {
69805
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    67
    def apply(prefix: String, target: String): Namespace =
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    68
      new Namespace(prefix, target)
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    69
  }
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    70
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    71
  final class Namespace private(prefix: String, target: String) {
69805
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    72
    def apply(name: String): String = prefix + ":" + name
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    73
    val attribute: XML.Attribute = ("xmlns:" + prefix, target)
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    74
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    75
    override def toString: String = attribute.toString
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    76
  }
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    77
a8debe27c36c support for XML name spaces;
wenzelm
parents: 69804
diff changeset
    78
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    79
  /* wrapped elements */
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    80
60215
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 57912
diff changeset
    81
  val XML_ELEM = "xml_elem"
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 57912
diff changeset
    82
  val XML_NAME = "xml_name"
5fb4990dfc73 misc tuning, based on warnings by IntelliJ IDEA;
wenzelm
parents: 57912
diff changeset
    83
  val XML_BODY = "xml_body"
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    84
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
    85
  object Wrapped_Elem {
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    86
    def apply(markup: Markup, body1: Body, body2: Body): XML.Elem =
61026
397354b29935 tuned signature;
wenzelm
parents: 60215
diff changeset
    87
      XML.Elem(Markup(XML_ELEM, (XML_NAME, markup.name) :: markup.properties),
397354b29935 tuned signature;
wenzelm
parents: 60215
diff changeset
    88
        XML.Elem(Markup(XML_BODY, Nil), body1) :: body2)
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    89
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    90
    def unapply(tree: Tree): Option[(Markup, Body, Body)] =
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    91
      tree match {
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    92
        case
61026
397354b29935 tuned signature;
wenzelm
parents: 60215
diff changeset
    93
          XML.Elem(Markup(XML_ELEM, (XML_NAME, name) :: props),
397354b29935 tuned signature;
wenzelm
parents: 60215
diff changeset
    94
            XML.Elem(Markup(XML_BODY, Nil), body1) :: body2) =>
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    95
          Some(Markup(name, props), body1, body2)
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    96
        case _ => None
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    97
      }
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    98
  }
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
    99
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   100
  object Root_Elem {
67818
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   101
    def apply(body: Body): XML.Elem = XML.Elem(Markup(XML_ELEM, Nil), body)
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   102
    def unapply(tree: Tree): Option[Body] =
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   103
      tree match {
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   104
        case XML.Elem(Markup(XML_ELEM, Nil), body) => Some(body)
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   105
        case _ => None
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   106
      }
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   107
  }
2457bea123e4 convenience to represent XML.Body as single XML.Elem;
wenzelm
parents: 67113
diff changeset
   108
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   109
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   110
  /* traverse text */
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   111
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   112
  def traverse_text[A](body: Body)(a: A)(op: (A, String) => A): A = {
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   113
    def traverse(x: A, t: Tree): A =
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   114
      t match {
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   115
        case XML.Wrapped_Elem(_, _, ts) => ts.foldLeft(x)(traverse)
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   116
        case XML.Elem(_, ts) => ts.foldLeft(x)(traverse)
61026
397354b29935 tuned signature;
wenzelm
parents: 60215
diff changeset
   117
        case XML.Text(s) => op(x, s)
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   118
      }
73359
d8a0e996614b tuned --- fewer warnings;
wenzelm
parents: 73340
diff changeset
   119
    body.foldLeft(a)(traverse)
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   120
  }
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   121
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   122
  def text_length(body: Body): Int = traverse_text(body)(0) { case (n, s) => n + s.length }
74683
c8327efc7af1 clarified signature: more direct XML.symbol_length;
wenzelm
parents: 73528
diff changeset
   123
  def symbol_length(body: Body): Int = traverse_text(body)(0) { case (n, s) => n + Symbol.length(s) }
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   124
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   125
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   126
  /* text content */
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   127
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   128
  def content(body: Body): String = {
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   129
    val text = new StringBuilder(text_length(body))
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   130
    traverse_text(body)(()) { case (_, s) => text.append(s) }
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   131
    text.toString
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   132
  }
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   133
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   134
  def content(tree: Tree): String = content(List(tree))
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   135
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   136
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   137
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49613
diff changeset
   138
  /** string representation **/
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
   139
69804
9efccbad7d42 uniform XML header;
wenzelm
parents: 68265
diff changeset
   140
  val header: String = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
9efccbad7d42 uniform XML header;
wenzelm
parents: 68265
diff changeset
   141
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   142
  class Output(builder: StringBuilder) extends Traversal {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   143
    def string(str: String, permissive: Boolean = false): Unit = {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   144
      if (str == null) { builder ++= str }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   145
      else {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   146
        for (c <- str) {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   147
          c match {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   148
            case '<' => builder ++= "&lt;"
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   149
            case '>' => builder ++= "&gt;"
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   150
            case '&' => builder ++= "&amp;"
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   151
            case '"' if !permissive => builder ++= "&quot;"
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   152
            case '\'' if !permissive => builder ++= "&apos;"
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   153
            case _ => builder += c
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   154
          }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   155
        }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   156
      }
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65903
diff changeset
   157
    }
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   158
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   159
    override def text(str: String): Unit = string(str)
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65903
diff changeset
   160
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   161
    override def elem(markup: Markup, end: Boolean = false): Unit = {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   162
      builder += '<'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   163
      builder ++= markup.name
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   164
      for ((a, b) <- markup.properties) {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   165
        builder += ' '
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   166
        builder ++= a
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   167
        builder += '='
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   168
        builder += '"'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   169
        string(b)
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   170
        builder += '"'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   171
      }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   172
      if (end) builder += '/'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   173
      builder += '>'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   174
    }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   175
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   176
    def end_elem(name: String): Unit = {
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   177
      builder += '<'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   178
      builder += '/'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   179
      builder ++= name
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   180
      builder += '>'
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   181
    }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   182
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   183
    def result(ts: Iterable[Tree]): String = { trees(ts); builder.toString }
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   184
    def result(t: Tree): String = { tree(t); builder.toString }
65990
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65903
diff changeset
   185
  }
868089ee9d60 uniform output of HTML as XML;
wenzelm
parents: 65903
diff changeset
   186
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   187
  def string_of_body(body: Body): String =
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   188
    if (body.isEmpty) ""
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   189
    else new Output(new StringBuilder).result(body)
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
   190
38268
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
   191
  def string_of_tree(tree: XML.Tree): String = string_of_body(List(tree))
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
   192
73528
c337c798f64c clarified HTML template (see also 04cb7e02ca38): avoid odd patching of sources;
wenzelm
parents: 73359
diff changeset
   193
  def text(s: String): String = string_of_tree(XML.Text(s))
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
   194
44808
05b8997899a2 XML.cache for partial sharing (strings only);
wenzelm
parents: 44721
diff changeset
   195
80429
6f4d5d922da7 clarified signature: more explicit types;
wenzelm
parents: 76351
diff changeset
   196
68265
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   197
  /** cache **/
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   198
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   199
  object Cache {
73024
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   200
    def make(
76351
2cee31cd92f0 generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents: 75436
diff changeset
   201
        compress: Compress.Cache = Compress.Cache.make(),
74731
161e84e6b40a just one cache, via HTML_Context, via Sessions.Store or Session;
wenzelm
parents: 74683
diff changeset
   202
        max_string: Int = isabelle.Cache.default_max_string,
73024
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   203
        initial_size: Int = isabelle.Cache.default_initial_size): Cache =
76351
2cee31cd92f0 generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents: 75436
diff changeset
   204
      new Cache(compress, max_string, initial_size)
68169
395432e7516e tuned signature;
wenzelm
parents: 67827
diff changeset
   205
76351
2cee31cd92f0 generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents: 75436
diff changeset
   206
    val none: Cache = make(Compress.Cache.none, max_string = 0)
73024
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   207
  }
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   208
76351
2cee31cd92f0 generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents: 75436
diff changeset
   209
  class Cache(val compress: Compress.Cache, max_string: Int, initial_size: Int)
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   210
  extends isabelle.Cache(max_string, initial_size) {
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   211
    protected def cache_props(x: Properties.T): Properties.T = {
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   212
      if (x.isEmpty) x
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   213
      else
34133
wenzelm
parents: 34119
diff changeset
   214
        lookup(x) match {
wenzelm
parents: 34119
diff changeset
   215
          case Some(y) => y
65903
692e428803c8 clarified signature;
wenzelm
parents: 65772
diff changeset
   216
          case None => store(x.map(p => (Library.isolate_substring(p._1).intern, cache_string(p._2))))
34133
wenzelm
parents: 34119
diff changeset
   217
        }
68265
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   218
    }
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   219
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   220
    protected def cache_markup(x: Markup): Markup = {
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   221
      lookup(x) match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   222
        case Some(y) => y
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   223
        case None =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   224
          x match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   225
            case Markup(name, props) =>
51663
098f3cf6c809 tuned signature;
wenzelm
parents: 51223
diff changeset
   226
              store(Markup(cache_string(name), cache_props(props)))
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   227
          }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   228
      }
68265
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   229
    }
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   230
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   231
    protected def cache_tree(x: XML.Tree): XML.Tree = {
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   232
      lookup(x) match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   233
        case Some(y) => y
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   234
        case None =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   235
          x match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   236
            case XML.Elem(markup, body) =>
51663
098f3cf6c809 tuned signature;
wenzelm
parents: 51223
diff changeset
   237
              store(XML.Elem(cache_markup(markup), cache_body(body)))
098f3cf6c809 tuned signature;
wenzelm
parents: 51223
diff changeset
   238
            case XML.Text(text) => store(XML.Text(cache_string(text)))
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   239
          }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   240
      }
68265
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   241
    }
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   242
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   243
    protected def cache_body(x: XML.Body): XML.Body = {
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   244
      if (x.isEmpty) x
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   245
      else
34133
wenzelm
parents: 34119
diff changeset
   246
        lookup(x) match {
wenzelm
parents: 34119
diff changeset
   247
          case Some(y) => y
71601
97ccf48c2f0c misc tuning based on hints by IntelliJ IDEA;
wenzelm
parents: 70828
diff changeset
   248
          case None => x.map(cache_tree)
34133
wenzelm
parents: 34119
diff changeset
   249
        }
68265
f0899dad4877 more general cache, also for term substructures;
wenzelm
parents: 68169
diff changeset
   250
    }
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
   251
73030
72a8fdfa185d support more direct hash-consing via XML.Cache;
wenzelm
parents: 73028
diff changeset
   252
    // support hash-consing
72a8fdfa185d support more direct hash-consing via XML.Cache;
wenzelm
parents: 73028
diff changeset
   253
    def tree0(x: XML.Tree): XML.Tree =
72a8fdfa185d support more direct hash-consing via XML.Cache;
wenzelm
parents: 73028
diff changeset
   254
      if (no_cache) x else synchronized { lookup(x) getOrElse store(x) }
72a8fdfa185d support more direct hash-consing via XML.Cache;
wenzelm
parents: 73028
diff changeset
   255
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
   256
    // main methods
73024
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   257
    def props(x: Properties.T): Properties.T =
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   258
      if (no_cache) x else synchronized { cache_props(x) }
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   259
    def markup(x: Markup): Markup =
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   260
      if (no_cache) x else synchronized { cache_markup(x) }
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   261
    def tree(x: XML.Tree): XML.Tree =
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   262
      if (no_cache) x else synchronized { cache_tree(x) }
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   263
    def body(x: XML.Body): XML.Body =
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   264
      if (no_cache) x else synchronized { cache_body(x) }
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   265
    def elem(x: XML.Elem): XML.Elem =
337e1b135d2f clarified signature --- internal Cache.none;
wenzelm
parents: 71601
diff changeset
   266
      if (no_cache) x else synchronized { cache_tree(x).asInstanceOf[XML.Elem] }
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   267
  }
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   268
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   269
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   270
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   271
  /** XML as data representation language **/
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   272
51987
7d8e0e3c553b tuned signature;
wenzelm
parents: 51663
diff changeset
   273
  abstract class Error(s: String) extends Exception(s)
7d8e0e3c553b tuned signature;
wenzelm
parents: 51663
diff changeset
   274
  class XML_Atom(s: String) extends Error(s)
7d8e0e3c553b tuned signature;
wenzelm
parents: 51663
diff changeset
   275
  class XML_Body(body: XML.Body) extends Error("")
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   276
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   277
  object Encode {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   278
    type T[A] = A => XML.Body
65334
wenzelm
parents: 65333
diff changeset
   279
    type V[A] = PartialFunction[A, (List[String], XML.Body)]
70828
cb70d84a9f5e more compact XML representation;
wenzelm
parents: 69867
diff changeset
   280
    type P[A] = PartialFunction[A, List[String]]
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   281
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   282
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   283
    /* atomic values */
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   284
57909
0fb331032f02 more compact representation of special string values;
wenzelm
parents: 55618
diff changeset
   285
    def long_atom(i: Long): String = Library.signed_string_of_long(i)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   286
57909
0fb331032f02 more compact representation of special string values;
wenzelm
parents: 55618
diff changeset
   287
    def int_atom(i: Int): String = Library.signed_string_of_int(i)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   288
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   289
    def bool_atom(b: Boolean): String = if (b) "1" else "0"
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   290
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   291
    def unit_atom(u: Unit) = ""
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   292
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   293
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   294
    /* structural nodes */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   295
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   296
    private def node(ts: XML.Body): XML.Tree = XML.Elem(Markup(":", Nil), ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   297
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   298
    private def vector(xs: List[String]): XML.Attributes =
46839
f7232c078fa5 simplified -- plain map_index is sufficient (pointed out by Enrico Tassi);
wenzelm
parents: 45673
diff changeset
   299
      xs.zipWithIndex.map({ case (x, i) => (int_atom(i), x) })
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   300
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   301
    private def tagged(tag: Int, data: (List[String], XML.Body)): XML.Tree =
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   302
      XML.Elem(Markup(int_atom(tag), vector(data._1)), data._2)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   303
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   304
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   305
    /* representation of standard types */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   306
65333
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   307
    val tree: T[XML.Tree] = (t => List(t))
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   308
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43778
diff changeset
   309
    val properties: T[Properties.T] =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   310
      (props => List(XML.Elem(Markup(":", props), Nil)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   311
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   312
    val string: T[String] = (s => if (s.isEmpty) Nil else List(XML.Text(s)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   313
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   314
    val long: T[Long] = (x => string(long_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   315
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   316
    val int: T[Int] = (x => string(int_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   317
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   318
    val bool: T[Boolean] = (x => string(bool_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   319
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   320
    val unit: T[Unit] = (x => string(unit_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   321
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   322
    def pair[A, B](f: T[A], g: T[B]): T[(A, B)] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   323
      (x => List(node(f(x._1)), node(g(x._2))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   324
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   325
    def triple[A, B, C](f: T[A], g: T[B], h: T[C]): T[(A, B, C)] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   326
      (x => List(node(f(x._1)), node(g(x._2)), node(h(x._3))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   327
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   328
    def list[A](f: T[A]): T[List[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   329
      (xs => xs.map((x: A) => node(f(x))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   330
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   331
    def option[A](f: T[A]): T[Option[A]] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   332
      case None => Nil
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   333
      case Some(x) => List(node(f(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   334
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   335
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   336
    def variant[A](fs: List[V[A]]): T[A] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   337
      case x =>
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   338
        val (f, tag) = fs.iterator.zipWithIndex.find(p => p._1.isDefinedAt(x)).get
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   339
        List(tagged(tag, f(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   340
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   341
  }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   342
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   343
  object Decode {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   344
    type T[A] = XML.Body => A
75436
40630fec3b5d clarified signature;
wenzelm
parents: 75393
diff changeset
   345
    type V[A] = PartialFunction[(List[String], XML.Body), A]
70828
cb70d84a9f5e more compact XML representation;
wenzelm
parents: 69867
diff changeset
   346
    type P[A] = PartialFunction[List[String], A]
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   347
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   348
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   349
    /* atomic values */
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   350
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   351
    def long_atom(s: String): Long =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   352
      try { java.lang.Long.parseLong(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   353
      catch { case e: NumberFormatException => throw new XML_Atom(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   354
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   355
    def int_atom(s: String): Int =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   356
      try { Integer.parseInt(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   357
      catch { case e: NumberFormatException => throw new XML_Atom(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   358
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   359
    def bool_atom(s: String): Boolean =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   360
      if (s == "1") true
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   361
      else if (s == "0") false
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   362
      else throw new XML_Atom(s)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   363
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   364
    def unit_atom(s: String): Unit =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   365
      if (s == "") () else throw new XML_Atom(s)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   366
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   367
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   368
    /* structural nodes */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   369
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   370
    private def node(t: XML.Tree): XML.Body =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   371
      t match {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   372
        case XML.Elem(Markup(":", Nil), ts) => ts
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   373
        case _ => throw new XML_Body(List(t))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   374
      }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   375
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   376
    private def vector(atts: XML.Attributes): List[String] =
46839
f7232c078fa5 simplified -- plain map_index is sufficient (pointed out by Enrico Tassi);
wenzelm
parents: 45673
diff changeset
   377
      atts.iterator.zipWithIndex.map(
f7232c078fa5 simplified -- plain map_index is sufficient (pointed out by Enrico Tassi);
wenzelm
parents: 45673
diff changeset
   378
        { case ((a, x), i) => if (int_atom(a) == i) x else throw new XML_Atom(a) }).toList
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   379
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   380
    private def tagged(t: XML.Tree): (Int, (List[String], XML.Body)) =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   381
      t match {
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   382
        case XML.Elem(Markup(name, atts), ts) => (int_atom(name), (vector(atts), ts))
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   383
        case _ => throw new XML_Body(List(t))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   384
      }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   385
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   386
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   387
    /* representation of standard types */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   388
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   389
    val tree: T[XML.Tree] = {
65333
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   390
      case List(t) => t
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   391
      case ts => throw new XML_Body(ts)
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   392
    }
289561ca4fa3 more operations;
wenzelm
parents: 64820
diff changeset
   393
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   394
    val properties: T[Properties.T] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   395
      case List(XML.Elem(Markup(":", props), Nil)) => props
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   396
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   397
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   398
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   399
    val string: T[String] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   400
      case Nil => ""
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   401
      case List(XML.Text(s)) => s
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   402
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   403
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   404
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   405
    val long: T[Long] = (x => long_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   406
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   407
    val int: T[Int] = (x => int_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   408
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   409
    val bool: T[Boolean] = (x => bool_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   410
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   411
    val unit: T[Unit] = (x => unit_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   412
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   413
    def pair[A, B](f: T[A], g: T[B]): T[(A, B)] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   414
      case List(t1, t2) => (f(node(t1)), g(node(t2)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   415
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   416
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   417
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   418
    def triple[A, B, C](f: T[A], g: T[B], h: T[C]): T[(A, B, C)] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   419
      case List(t1, t2, t3) => (f(node(t1)), g(node(t2)), h(node(t3)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   420
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   421
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   422
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   423
    def list[A](f: T[A]): T[List[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   424
      (ts => ts.map(t => f(node(t))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   425
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   426
    def option[A](f: T[A]): T[Option[A]] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   427
      case Nil => None
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   428
      case List(t) => Some(f(node(t)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   429
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   430
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   431
75393
87ebf5a50283 clarified formatting, for the sake of scala3;
wenzelm
parents: 74789
diff changeset
   432
    def variant[A](fs: List[V[A]]): T[A] = {
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   433
      case List(t) =>
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   434
        val (tag, (xs, ts)) = tagged(t)
43768
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   435
        val f =
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   436
          try { fs(tag) }
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   437
          catch { case _: IndexOutOfBoundsException => throw new XML_Body(List(t)) }
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   438
        f(xs, ts)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   439
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   440
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   441
  }
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
   442
}