src/Pure/PIDE/xml.scala
author wenzelm
Sun, 04 Sep 2011 19:06:45 +0200
changeset 44704 528d635ef6f0
parent 44698 0385292321a0
child 44705 089fcaf94c00
permissions -rw-r--r--
synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
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
43520
cec9b95fa35d explicit import java.lang.System to prevent odd scope problems;
wenzelm
parents: 38869
diff changeset
     9
import java.lang.System
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    10
import java.util.WeakHashMap
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    11
import java.lang.ref.WeakReference
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    12
import javax.xml.parsers.DocumentBuilderFactory
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    13
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
    14
import scala.actors.Actor._
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
    15
import scala.collection.mutable
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
    16
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    17
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    18
object XML
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    19
{
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
    20
  /** XML trees **/
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
    21
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    22
  /* datatype representation */
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    23
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43778
diff changeset
    24
  type Attributes = Properties.T
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
    25
38268
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    26
  sealed abstract class Tree { override def toString = string_of_tree(this) }
38230
ed147003de4b simplified type XML.Tree: embed Markup directly, avoid slightly odd triple;
wenzelm
parents: 36817
diff changeset
    27
  case class Elem(markup: Markup, body: List[Tree]) extends Tree
29204
wenzelm
parents: 29203
diff changeset
    28
  case class Text(content: String) extends Tree
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    29
38230
ed147003de4b simplified type XML.Tree: embed Markup directly, avoid slightly odd triple;
wenzelm
parents: 36817
diff changeset
    30
  def elem(name: String, body: List[Tree]) = Elem(Markup(name, Nil), body)
ed147003de4b simplified type XML.Tree: embed Markup directly, avoid slightly odd triple;
wenzelm
parents: 36817
diff changeset
    31
  def elem(name: String) = Elem(Markup(name, Nil), Nil)
33999
d3b200894e21 added auxiliary constructors;
wenzelm
parents: 33953
diff changeset
    32
38267
e50c283dd125 type XML.Body as basic data representation language (Scala version);
wenzelm
parents: 38263
diff changeset
    33
  type Body = List[Tree]
e50c283dd125 type XML.Body as basic data representation language (Scala version);
wenzelm
parents: 38263
diff changeset
    34
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    35
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    36
  /* string representation */
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    37
38268
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    38
  def string_of_body(body: Body): String =
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    39
  {
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    40
    val s = new StringBuilder
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    41
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    42
    def text(txt: String) {
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    43
      if (txt == null) s ++= txt
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    44
      else {
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    45
        for (c <- txt.iterator) c match {
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    46
          case '<' => s ++= "&lt;"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    47
          case '>' => s ++= "&gt;"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    48
          case '&' => s ++= "&amp;"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    49
          case '"' => s ++= "&quot;"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    50
          case '\'' => s ++= "&apos;"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    51
          case _ => s += c
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    52
        }
34005
ada5098506af toString: more robust handling of null;
wenzelm
parents: 33999
diff changeset
    53
      }
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    54
    }
38268
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    55
    def attrib(p: (String, String)) { s ++= " "; s ++= p._1; s ++= "=\""; text(p._2); s ++= "\"" }
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    56
    def elem(markup: Markup) { s ++= markup.name; markup.properties.foreach(attrib) }
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    57
    def tree(t: Tree): Unit =
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    58
      t match {
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    59
        case Elem(markup, Nil) =>
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    60
          s ++= "<"; elem(markup); s ++= "/>"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    61
        case Elem(markup, ts) =>
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    62
          s ++= "<"; elem(markup); s ++= ">"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    63
          ts.foreach(tree)
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    64
          s ++= "</"; s ++= markup.name; s ++= ">"
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    65
        case Text(txt) => text(txt)
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    66
      }
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    67
    body.foreach(tree)
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    68
    s.toString
29203
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    69
  }
0c4effb73518 override toString method;
wenzelm
parents: 29140
diff changeset
    70
38268
beb86b805590 more uniform XML/YXML string_of_body/string_of_tree;
wenzelm
parents: 38267
diff changeset
    71
  def string_of_tree(tree: XML.Tree): String = string_of_body(List(tree))
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    72
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    73
38484
9c1fde4e2487 tuned XML.content: Stream based iteration is supposed to be declarative *and* efficient;
wenzelm
parents: 38446
diff changeset
    74
  /* text content */
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    75
38484
9c1fde4e2487 tuned XML.content: Stream based iteration is supposed to be declarative *and* efficient;
wenzelm
parents: 38446
diff changeset
    76
  def content_stream(tree: Tree): Stream[String] =
9c1fde4e2487 tuned XML.content: Stream based iteration is supposed to be declarative *and* efficient;
wenzelm
parents: 38446
diff changeset
    77
    tree match {
43747
74a9e9c8d5e8 tuned signature;
wenzelm
parents: 43745
diff changeset
    78
      case Elem(_, body) => content_stream(body)
38484
9c1fde4e2487 tuned XML.content: Stream based iteration is supposed to be declarative *and* efficient;
wenzelm
parents: 38446
diff changeset
    79
      case Text(content) => Stream(content)
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    80
    }
43747
74a9e9c8d5e8 tuned signature;
wenzelm
parents: 43745
diff changeset
    81
  def content_stream(body: Body): Stream[String] =
74a9e9c8d5e8 tuned signature;
wenzelm
parents: 43745
diff changeset
    82
    body.toStream.flatten(content_stream(_))
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    83
38484
9c1fde4e2487 tuned XML.content: Stream based iteration is supposed to be declarative *and* efficient;
wenzelm
parents: 38446
diff changeset
    84
  def content(tree: Tree): Iterator[String] = content_stream(tree).iterator
43747
74a9e9c8d5e8 tuned signature;
wenzelm
parents: 43745
diff changeset
    85
  def content(body: Body): Iterator[String] = content_stream(body).iterator
27941
b4656b671cce added iterator over content;
wenzelm
parents: 27931
diff changeset
    86
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
    87
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
    88
  /* pipe-lined cache for partial sharing */
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    89
43745
562e35bc351e tuned XML.Cache parameters;
wenzelm
parents: 43520
diff changeset
    90
  class Cache(initial_size: Int = 131071, max_string: Int = 100)
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
    91
  {
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    92
    private var table = new WeakHashMap[Any, WeakReference[Any]](initial_size)
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
    93
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    94
    private def lookup[A](x: A): Option[A] =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    95
    {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    96
      val ref = table.get(x)
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    97
      if (ref == null) None
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    98
      else {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
    99
        val y = ref.asInstanceOf[WeakReference[A]].get
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   100
        if (y == null) None
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   101
        else Some(y)
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
   102
      }
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   103
    }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   104
    private def store[A](x: A): A =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   105
    {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   106
      table.put(x, new WeakReference[Any](x))
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   107
      x
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   108
    }
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   109
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   110
    private def trim_bytes(s: String): String = new String(s.toCharArray)
38869
wenzelm
parents: 38844
diff changeset
   111
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   112
    private def _cache_string(x: String): String =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   113
      lookup(x) match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   114
        case Some(y) => y
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   115
        case None =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   116
          val z = trim_bytes(x)
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   117
          if (z.length > max_string) z else store(z)
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   118
      }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   119
    private def _cache_props(x: Properties.T): Properties.T =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   120
      if (x.isEmpty) x
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   121
      else
34133
wenzelm
parents: 34119
diff changeset
   122
        lookup(x) match {
wenzelm
parents: 34119
diff changeset
   123
          case Some(y) => y
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   124
          case None => store(x.map(p => (trim_bytes(p._1).intern, _cache_string(p._2))))
34133
wenzelm
parents: 34119
diff changeset
   125
        }
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   126
    private def _cache_markup(x: Markup): Markup =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   127
      lookup(x) match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   128
        case Some(y) => y
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   129
        case None =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   130
          x match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   131
            case Markup(name, props) =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   132
              store(Markup(_cache_string(name), _cache_props(props)))
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   133
          }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   134
      }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   135
    private def _cache_tree(x: XML.Tree): XML.Tree =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   136
      lookup(x) match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   137
        case Some(y) => y
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   138
        case None =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   139
          x match {
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   140
            case XML.Elem(markup, body) =>
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   141
              store(XML.Elem(_cache_markup(markup), _cache_body(body)))
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   142
            case XML.Text(text) => store(XML.Text(_cache_string(text)))
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   143
          }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   144
      }
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   145
    private def _cache_body(x: XML.Body): XML.Body =
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   146
      if (x.isEmpty) x
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   147
      else
34133
wenzelm
parents: 34119
diff changeset
   148
        lookup(x) match {
wenzelm
parents: 34119
diff changeset
   149
          case Some(y) => y
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   150
          case None => x.map(_cache_tree(_))
34133
wenzelm
parents: 34119
diff changeset
   151
        }
38446
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
   152
9d59dab38fef XML.Cache: pipe-lined (thread-safe) version using actor;
wenzelm
parents: 38268
diff changeset
   153
    // main methods
44704
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   154
    // FIXME simplify signatures
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   155
    def cache_string(x: String)(f: String => Unit): Unit = f(synchronized { _cache_string(x) })
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   156
    def cache_markup(x: Markup)(f: Markup => Unit): Unit = f(synchronized { _cache_markup(x) })
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   157
    def cache_tree(x: XML.Tree)(f: XML.Tree => Unit): Unit = f(synchronized { _cache_tree(x) })
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   158
    def cache_body(x: XML.Body)(f: XML.Body => Unit): Unit = f(synchronized { _cache_body(x) })
528d635ef6f0 synchronous XML.Cache without actor -- potentially more efficient on machines with few cores;
wenzelm
parents: 44698
diff changeset
   159
    def cache_ignore[A](x: A)(f: A => Unit): Unit = f(x)
34108
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   160
  }
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   161
54d48ca8708f cache for partial sharing;
wenzelm
parents: 34047
diff changeset
   162
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   163
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   164
  /** document object model (W3C DOM) **/
27948
2638b611d3ce renamed DOM to document, add xml version and optional stylesheets;
wenzelm
parents: 27947
diff changeset
   165
34871
e596a0b71f3c incorporate "proofdocument" part into main Isabelle/Pure.jar -- except for html_panel.scala, which depends on external library (Lobo/Cobra browser);
wenzelm
parents: 34133
diff changeset
   166
  def get_data(node: org.w3c.dom.Node): Option[XML.Tree] =
38231
968844caaff9 simplified some Markup;
wenzelm
parents: 38230
diff changeset
   167
    node.getUserData(Markup.Data.name) match {
34047
2af94d45597f added get_data;
wenzelm
parents: 34046
diff changeset
   168
      case tree: XML.Tree => Some(tree)
2af94d45597f added get_data;
wenzelm
parents: 34046
diff changeset
   169
      case _ => None
2af94d45597f added get_data;
wenzelm
parents: 34046
diff changeset
   170
    }
2af94d45597f added get_data;
wenzelm
parents: 34046
diff changeset
   171
34871
e596a0b71f3c incorporate "proofdocument" part into main Isabelle/Pure.jar -- except for html_panel.scala, which depends on external library (Lobo/Cobra browser);
wenzelm
parents: 34133
diff changeset
   172
  def document_node(doc: org.w3c.dom.Document, tree: Tree): org.w3c.dom.Node =
33953
5e865ed88313 added document_node;
wenzelm
parents: 29204
diff changeset
   173
  {
34871
e596a0b71f3c incorporate "proofdocument" part into main Isabelle/Pure.jar -- except for html_panel.scala, which depends on external library (Lobo/Cobra browser);
wenzelm
parents: 34133
diff changeset
   174
    def DOM(tr: Tree): org.w3c.dom.Node = tr match {
38231
968844caaff9 simplified some Markup;
wenzelm
parents: 38230
diff changeset
   175
      case Elem(Markup.Data, List(data, t)) =>
34046
8e743ca417b9 sealed XML.Tree;
wenzelm
parents: 34005
diff changeset
   176
        val node = DOM(t)
38231
968844caaff9 simplified some Markup;
wenzelm
parents: 38230
diff changeset
   177
        node.setUserData(Markup.Data.name, data, null)
34046
8e743ca417b9 sealed XML.Tree;
wenzelm
parents: 34005
diff changeset
   178
        node
38230
ed147003de4b simplified type XML.Tree: embed Markup directly, avoid slightly odd triple;
wenzelm
parents: 36817
diff changeset
   179
      case Elem(Markup(name, atts), ts) =>
38231
968844caaff9 simplified some Markup;
wenzelm
parents: 38230
diff changeset
   180
        if (name == Markup.Data.name)
34046
8e743ca417b9 sealed XML.Tree;
wenzelm
parents: 34005
diff changeset
   181
          error("Malformed data element: " + tr.toString)
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
   182
        val node = doc.createElement(name)
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
   183
        for ((name, value) <- atts) node.setAttribute(name, value)
27952
wenzelm
parents: 27948
diff changeset
   184
        for (t <- ts) node.appendChild(DOM(t))
27947
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
   185
        node
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
   186
      case Text(txt) => doc.createTextNode(txt)
b6dc0a396857 tuned comments;
wenzelm
parents: 27942
diff changeset
   187
    }
33953
5e865ed88313 added document_node;
wenzelm
parents: 29204
diff changeset
   188
    DOM(tree)
5e865ed88313 added document_node;
wenzelm
parents: 29204
diff changeset
   189
  }
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   190
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   191
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   192
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   193
  /** XML as data representation language **/
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   194
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   195
  class XML_Atom(s: String) extends Exception(s)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   196
  class XML_Body(body: XML.Body) extends Exception
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   197
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   198
  object Encode
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   199
  {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   200
    type T[A] = A => XML.Body
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   201
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   202
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   203
    /* atomic values */
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   204
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   205
    def long_atom(i: Long): String = i.toString
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   206
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   207
    def int_atom(i: Int): String = i.toString
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   208
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   209
    def bool_atom(b: Boolean): String = if (b) "1" else "0"
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   210
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   211
    def unit_atom(u: Unit) = ""
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   212
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   213
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   214
    /* structural nodes */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   215
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   216
    private def node(ts: XML.Body): XML.Tree = XML.Elem(Markup(":", Nil), ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   217
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   218
    private def vector(xs: List[String]): XML.Attributes =
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   219
      xs.zipWithIndex.map(p => (int_atom(p._2), p._1))
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   220
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   221
    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
   222
      XML.Elem(Markup(int_atom(tag), vector(data._1)), data._2)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   223
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   224
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   225
    /* representation of standard types */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   226
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43778
diff changeset
   227
    val properties: T[Properties.T] =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   228
      (props => List(XML.Elem(Markup(":", props), Nil)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   229
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   230
    val string: T[String] = (s => if (s.isEmpty) Nil else List(XML.Text(s)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   231
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   232
    val long: T[Long] = (x => string(long_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   233
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   234
    val int: T[Int] = (x => string(int_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   235
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   236
    val bool: T[Boolean] = (x => string(bool_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   237
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   238
    val unit: T[Unit] = (x => string(unit_atom(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   239
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   240
    def pair[A, B](f: T[A], g: T[B]): T[(A, B)] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   241
      (x => List(node(f(x._1)), node(g(x._2))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   242
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   243
    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
   244
      (x => List(node(f(x._1)), node(g(x._2)), node(h(x._3))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   245
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   246
    def list[A](f: T[A]): T[List[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   247
      (xs => xs.map((x: A) => node(f(x))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   248
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   249
    def option[A](f: T[A]): T[Option[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   250
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   251
      case None => Nil
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   252
      case Some(x) => List(node(f(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   253
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   254
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   255
    def variant[A](fs: List[PartialFunction[A, (List[String], XML.Body)]]): T[A] =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   256
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   257
      case x =>
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   258
        val (f, tag) = fs.iterator.zipWithIndex.find(p => p._1.isDefinedAt(x)).get
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   259
        List(tagged(tag, f(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   260
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   261
  }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   262
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   263
  object Decode
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   264
  {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   265
    type T[A] = XML.Body => A
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   266
    type V[A] = (List[String], XML.Body) => A
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   267
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   268
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   269
    /* atomic values */
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   270
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   271
    def long_atom(s: String): Long =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   272
      try { java.lang.Long.parseLong(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   273
      catch { case e: NumberFormatException => throw new XML_Atom(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   274
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   275
    def int_atom(s: String): Int =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   276
      try { Integer.parseInt(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   277
      catch { case e: NumberFormatException => throw new XML_Atom(s) }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   278
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   279
    def bool_atom(s: String): Boolean =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   280
      if (s == "1") true
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   281
      else if (s == "0") false
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   282
      else throw new XML_Atom(s)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   283
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   284
    def unit_atom(s: String): Unit =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   285
      if (s == "") () else throw new XML_Atom(s)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   286
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   287
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   288
    /* structural nodes */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   289
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   290
    private def node(t: XML.Tree): XML.Body =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   291
      t match {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   292
        case XML.Elem(Markup(":", Nil), ts) => ts
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   293
        case _ => throw new XML_Body(List(t))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   294
      }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   295
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   296
    private def vector(atts: XML.Attributes): List[String] =
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   297
    {
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   298
      val xs = new mutable.ListBuffer[String]
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   299
      var i = 0
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   300
      for ((a, x) <- atts) {
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   301
        if (int_atom(a) == i) { xs += x; i = i + 1 }
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   302
        else throw new XML_Atom(a)
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   303
      }
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   304
      xs.toList
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   305
    }
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   306
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   307
    private def tagged(t: XML.Tree): (Int, (List[String], XML.Body)) =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   308
      t match {
43781
d43e5f79bdc2 retain some terminology of "XML attributes";
wenzelm
parents: 43780
diff changeset
   309
        case XML.Elem(Markup(name, atts), ts) => (int_atom(name), (vector(atts), ts))
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   310
        case _ => throw new XML_Body(List(t))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   311
      }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   312
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   313
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   314
    /* representation of standard types */
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   315
43780
2cb2310d68b6 more uniform Properties in ML and Scala;
wenzelm
parents: 43778
diff changeset
   316
    val properties: T[Properties.T] =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   317
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   318
      case List(XML.Elem(Markup(":", props), Nil)) => props
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   319
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   320
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   321
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   322
    val string: T[String] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   323
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   324
      case Nil => ""
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   325
      case List(XML.Text(s)) => s
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   326
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   327
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   328
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   329
    val long: T[Long] = (x => long_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   330
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   331
    val int: T[Int] = (x => int_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   332
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   333
    val bool: T[Boolean] = (x => bool_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   334
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   335
    val unit: T[Unit] = (x => unit_atom(string(x)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   336
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   337
    def pair[A, B](f: T[A], g: T[B]): T[(A, B)] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   338
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   339
      case List(t1, t2) => (f(node(t1)), g(node(t2)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   340
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   341
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   342
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   343
    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
   344
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   345
      case List(t1, t2, t3) => (f(node(t1)), g(node(t2)), h(node(t3)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   346
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   347
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   348
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   349
    def list[A](f: T[A]): T[List[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   350
      (ts => ts.map(t => f(node(t))))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   351
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   352
    def option[A](f: T[A]): T[Option[A]] =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   353
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   354
      case Nil => None
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   355
      case List(t) => Some(f(node(t)))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   356
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   357
    }
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 variant[A](fs: List[V[A]]): T[A] =
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   360
    {
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   361
      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
   362
        val (tag, (xs, ts)) = tagged(t)
43768
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   363
        val f =
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   364
          try { fs(tag) }
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   365
          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
   366
        f(xs, ts)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   367
      case ts => throw new XML_Body(ts)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   368
    }
e0219ef7f84c tuned XML modules;
wenzelm
parents: 43747
diff changeset
   369
  }
27931
b533a9de87a7 Minimalistic XML tree values.
wenzelm
parents:
diff changeset
   370
}