src/Pure/PIDE/xml.ML
author wenzelm
Sat, 31 Aug 2024 16:00:16 +0200
changeset 80793 90f6e541e926
parent 80461 38d020af64aa
child 80801 090adcdceaae
permissions -rw-r--r--
minor performance tuning: avoid many small strings, notably in File_Stream.output;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
44698
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 43949
diff changeset
     1
(*  Title:      Pure/PIDE/xml.ML
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 43949
diff changeset
     2
    Author:     David Aspinall
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 43949
diff changeset
     3
    Author:     Stefan Berghofer
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 43949
diff changeset
     4
    Author:     Makarius
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
     5
46840
42e32c777581 tuned comment;
wenzelm
parents: 46839
diff changeset
     6
Untyped XML trees and representation of ML values.
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
     7
*)
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
     8
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
     9
signature XML_DATA_OPS =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    10
sig
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
    11
  type 'a A
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    12
  type 'a 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
    13
  type 'a V
70828
cb70d84a9f5e more compact XML representation;
wenzelm
parents: 69806
diff changeset
    14
  type 'a P
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
  val int_atom: int A
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
    16
  val bool_atom: bool A
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
    17
  val unit_atom: unit A
80461
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
    18
  val self: Output_Primitives.XML.body T
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
    19
  val tree: Output_Primitives.XML.tree T
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    20
  val properties: Properties.T T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    21
  val string: string T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    22
  val int: int T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    23
  val bool: bool T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    24
  val unit: unit T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    25
  val pair: 'a T -> 'b T -> ('a * 'b) T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    26
  val triple: 'a T -> 'b T -> 'c T -> ('a * 'b * 'c) T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    27
  val list: 'a T -> 'a list T
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    28
  val option: 'a T -> 'a option 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
    29
  val variant: 'a V list -> 'a T
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    30
end;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    31
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    32
signature XML =
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    33
sig
46837
5bdd68f380b3 clarified XML signature (again) -- coincide with basic Markup without explicit dependency;
wenzelm
parents: 45155
diff changeset
    34
  type attributes = (string * string) list
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    35
  datatype tree =
46837
5bdd68f380b3 clarified XML signature (again) -- coincide with basic Markup without explicit dependency;
wenzelm
parents: 45155
diff changeset
    36
      Elem of (string * attributes) * tree list
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    37
    | Text of string
38266
492d377ecfe2 type XML.body as basic data representation language;
wenzelm
parents: 38228
diff changeset
    38
  type body = tree list
70991
f9f7c34b7dd4 more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents: 70828
diff changeset
    39
  val blob: string list -> body
70994
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    40
  val is_empty: tree -> bool
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    41
  val is_empty_body: body -> bool
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    42
  val string: string -> body
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    43
  val enclose: string -> string -> body -> body
69234
2dec32c7313f more Haskell operations;
wenzelm
parents: 69224
diff changeset
    44
  val xml_elemN: string
2dec32c7313f more Haskell operations;
wenzelm
parents: 69224
diff changeset
    45
  val xml_nameN: string
2dec32c7313f more Haskell operations;
wenzelm
parents: 69224
diff changeset
    46
  val xml_bodyN: string
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
    47
  val wrap_elem: ((string * attributes) * tree list) * tree list -> tree
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
    48
  val unwrap_elem: tree -> (((string * attributes) * tree list) * tree list) option
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    49
  val add_content: tree -> Buffer.T -> Buffer.T
39555
ccb223a4d49c added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents: 38474
diff changeset
    50
  val content_of: body -> string
56059
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
    51
  val trim_blanks: body -> body
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    52
  val header: string
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    53
  val text: string -> string
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    54
  val element: string -> attributes -> string list -> string
69345
6bd63c94cf62 tuned signature (see also src/Tools/Haskell/Markup.hs);
wenzelm
parents: 69234
diff changeset
    55
  val output_markup: Markup.T -> Markup.output
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
    56
  val string_of: tree -> string
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
    57
  val pretty: int -> tree -> Pretty.T
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
    58
  val parse_comments: string list -> unit * string list
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    59
  val parse_string : string -> string option
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    60
  val parse_element: string list -> tree * string list
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
    61
  val parse_document: string list -> tree * string list
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
    62
  val parse: string -> tree
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    63
  exception XML_ATOM of string
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
    64
  exception XML_BODY of body
80461
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
    65
  structure Encode: XML_DATA_OPS
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
    66
  structure Decode: XML_DATA_OPS
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    67
end;
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    68
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    69
structure XML: XML =
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    70
struct
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
    71
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    72
(** XML trees **)
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    73
70991
f9f7c34b7dd4 more scalable protocol_message: use XML.body directly (Output.output hook is not required);
wenzelm
parents: 70828
diff changeset
    74
open Output_Primitives.XML;
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
    75
80793
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    76
val blob =
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    77
  let
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    78
    val limit = 8000;
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    79
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    80
    val buffer = fn "" => I | s => cons s;
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    81
    val output1 = fn "" => I | s => cons (Text s);
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    82
    val output = fn [] => I | ss => cons (Text (implode ss));
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    83
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    84
    fun make [] _ buf result = output buf result
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    85
      | make (x :: xs) m buf result =
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    86
          let val l = size x in
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    87
            if l + m < limit then make xs (l + m) (buffer x buf) result
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    88
            else if l + m = limit then make xs 0 [] (output (buffer x buf) result)
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    89
            else if l >= limit then make xs 0 [] (output1 x (output buf result))
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    90
            else make xs l [x] (output buf result)
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    91
          end;
90f6e541e926 minor performance tuning: avoid many small strings, notably in File_Stream.output;
wenzelm
parents: 80461
diff changeset
    92
  in fn xs => make (rev xs) 0 [] [] end
38266
492d377ecfe2 type XML.body as basic data representation language;
wenzelm
parents: 38228
diff changeset
    93
70994
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    94
fun is_empty (Text "") = true
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    95
  | is_empty _ = false;
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    96
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    97
val is_empty_body = forall is_empty;
ff11af12dfdd clarified signature;
wenzelm
parents: 70991
diff changeset
    98
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
    99
fun string "" = []
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   100
  | string s = [Text s];
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   101
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   102
fun enclose bg en body = string bg @ body @ string en;
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   103
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   104
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   105
(* wrapped elements *)
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   106
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   107
val xml_elemN = "xml_elem";
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   108
val xml_nameN = "xml_name";
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   109
val xml_bodyN = "xml_body";
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   110
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   111
fun wrap_elem (((a, atts), body1), body2) =
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   112
  Elem ((xml_elemN, (xml_nameN, a) :: atts), Elem ((xml_bodyN, []), body1) :: body2);
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   113
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   114
fun unwrap_elem (Elem ((name, (n, a) :: atts), Elem ((name', atts'), body1) :: body2)) =
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   115
      if name = xml_elemN andalso n = xml_nameN andalso name' = xml_bodyN andalso null atts'
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   116
      then SOME (((a, atts), body1), body2) else NONE
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   117
  | unwrap_elem _ = NONE;
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   118
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   119
69224
fe9d746b273e tuned comments;
wenzelm
parents: 65333
diff changeset
   120
(* text content *)
49650
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
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: 49599
diff changeset
   122
fun add_content tree =
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   123
  (case unwrap_elem tree of
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   124
    SOME (_, ts) => fold add_content ts
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   125
  | NONE =>
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   126
      (case tree of
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   127
        Elem (_, ts) => fold add_content ts
9fad6480300d support for wrapped XML elements, which allows to preserve full markup tree information in to_XML/from_XML conversion;
wenzelm
parents: 49599
diff changeset
   128
      | Text s => Buffer.add s));
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   129
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   130
val content_of = Buffer.build_content o fold add_content;
39555
ccb223a4d49c added XML.content_of convenience -- cover XML.body, which is the general situation;
wenzelm
parents: 38474
diff changeset
   131
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   132
56059
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   133
(* trim blanks *)
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   134
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   135
fun trim_blanks trees =
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   136
  trees |> maps
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   137
    (fn Elem (markup, body) => [Elem (markup, trim_blanks body)]
74785
4671d29feb00 tuned signature;
wenzelm
parents: 74231
diff changeset
   138
      | Text s => s |> raw_explode |> trim Symbol.is_blank |> implode |> string);
56059
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   139
2390391584c2 some document antiquotations for Isabelle/jEdit elements;
wenzelm
parents: 49650
diff changeset
   140
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   141
26525
14a56f013469 added detect;
wenzelm
parents: 25838
diff changeset
   142
(** string representation **)
14a56f013469 added detect;
wenzelm
parents: 25838
diff changeset
   143
69806
2156053c4ce9 tuned according to Scala version;
wenzelm
parents: 69804
diff changeset
   144
val header = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   145
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   146
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   147
(* escaped text *)
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   148
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   149
fun decode "&lt;" = "<"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   150
  | decode "&gt;" = ">"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   151
  | decode "&amp;" = "&"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   152
  | decode "&apos;" = "'"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   153
  | decode "&quot;" = "\""
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   154
  | decode c = c;
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   155
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   156
fun encode "<" = "&lt;"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   157
  | encode ">" = "&gt;"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   158
  | encode "&" = "&amp;"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   159
  | encode "'" = "&apos;"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   160
  | encode "\"" = "&quot;"
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   161
  | encode c = c;
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   162
25838
00b2a1b2c4e9 removed unused text_charref, cdata;
wenzelm
parents: 24584
diff changeset
   163
val text = translate_string encode;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   164
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   165
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   166
(* elements *)
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   167
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   168
fun elem name atts =
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   169
  space_implode " " (name :: map (fn (a, x) => a ^ "=\"" ^ text x ^ "\"") atts);
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   170
26525
14a56f013469 added detect;
wenzelm
parents: 25838
diff changeset
   171
fun element name atts body =
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   172
  let val b = implode body in
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   173
    if b = "" then Library.enclose "<" "/>" (elem name atts)
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   174
    else Library.enclose "<" ">" (elem name atts) ^ b ^ Library.enclose "</" ">" name
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   175
  end;
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   176
27884
10c927e4abf5 output_markup: check Markup.is_none;
wenzelm
parents: 26984
diff changeset
   177
fun output_markup (markup as (name, atts)) =
38474
e498dc2eb576 uniform Markup.empty/Markup.Empty in ML and Scala;
wenzelm
parents: 38266
diff changeset
   178
  if Markup.is_empty markup then Markup.no_output
74789
a5c23da73fca clarified signature;
wenzelm
parents: 74785
diff changeset
   179
  else (Library.enclose "<" ">" (elem name atts), Library.enclose "</" ">" name);
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   180
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   181
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   182
(* output content *)
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   183
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   184
fun content_depth depth =
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   185
  let
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   186
    fun traverse _ (Elem ((name, atts), [])) =
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   187
          Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add "/>"
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   188
      | traverse d (Elem ((name, atts), ts)) =
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   189
          Buffer.add "<" #> Buffer.add (elem name atts) #> Buffer.add ">" #>
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   190
          traverse_body d ts #>
26525
14a56f013469 added detect;
wenzelm
parents: 25838
diff changeset
   191
          Buffer.add "</" #> Buffer.add name #> Buffer.add ">"
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   192
      | traverse _ (Text s) = Buffer.add (text s)
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   193
    and traverse_body 0 _ = Buffer.add "..."
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   194
      | traverse_body d ts = fold (traverse (d - 1)) ts;
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   195
  in Buffer.build_content o traverse depth end;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   196
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   197
val string_of = content_depth ~1;
43791
5e9a1d71f94d XML.pretty with depth limit;
wenzelm
parents: 43783
diff changeset
   198
74231
b3c65c984210 tuned signature;
wenzelm
parents: 73570
diff changeset
   199
fun pretty depth tree = Pretty.str (content_depth (Int.max (0, depth)) tree);
25838
00b2a1b2c4e9 removed unused text_charref, cdata;
wenzelm
parents: 24584
diff changeset
   200
62819
d3ff367a16a0 careful export of type-dependent functions, without losing their special status;
wenzelm
parents: 62663
diff changeset
   201
val _ = ML_system_pp (fn depth => fn _ => Pretty.to_polyml o pretty (FixedInt.toInt depth));
62663
bea354f6ff21 clarified modules;
wenzelm
parents: 61707
diff changeset
   202
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   203
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   204
44698
0385292321a0 moved XML/YXML to src/Pure/PIDE;
wenzelm
parents: 43949
diff changeset
   205
(** XML parsing **)
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   206
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   207
local
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   208
43947
9b00f09f7721 defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents: 43844
diff changeset
   209
fun err msg (xs, _) =
9b00f09f7721 defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents: 43844
diff changeset
   210
  fn () => "XML parsing error: " ^ msg () ^ "\nfound: " ^ quote (Symbol.beginning 100 xs);
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   211
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   212
fun ignored _ = [];
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   213
45155
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   214
fun name_start_char c = Symbol.is_ascii_letter c orelse c = ":" orelse c = "_";
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   215
fun name_char c = name_start_char c orelse Symbol.is_ascii_digit c orelse c = "-" orelse c = ".";
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   216
val parse_name = Scan.one name_start_char ::: Scan.many name_char;
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   217
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   218
val blanks = Scan.many Symbol.is_blank;
45155
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   219
val special = $$ "&" ^^ (parse_name >> implode) ^^ $$ ";" >> decode;
58854
b979c781c2db discontinued obsolete \<^sync> marker;
wenzelm
parents: 56059
diff changeset
   220
val regular = Scan.one Symbol.not_eof;
b979c781c2db discontinued obsolete \<^sync> marker;
wenzelm
parents: 56059
diff changeset
   221
fun regular_except x = Scan.one (fn c => Symbol.not_eof c andalso c <> x);
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   222
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   223
val parse_chars = Scan.repeat1 (special || regular_except "<") >> implode;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   224
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   225
val parse_cdata =
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   226
  Scan.this_string "<![CDATA[" |--
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   227
  (Scan.repeat (Scan.unless (Scan.this_string "]]>") regular) >> implode) --|
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   228
  Scan.this_string "]]>";
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   229
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   230
val parse_att =
45155
3216d65d8f34 slightly more standard-conformant XML parsing (see also 94033767ef9b);
wenzelm
parents: 44809
diff changeset
   231
  ((parse_name >> implode) --| (blanks -- $$ "=" -- blanks)) --
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   232
  (($$ "\"" || $$ "'") :|-- (fn s =>
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   233
    (Scan.repeat (special || regular_except s) >> implode) --| $$ s));
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   234
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   235
val parse_comment =
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   236
  Scan.this_string "<!--" --
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   237
  Scan.repeat (Scan.unless (Scan.this_string "-->") regular) --
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   238
  Scan.this_string "-->" >> ignored;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   239
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   240
val parse_processing_instruction =
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   241
  Scan.this_string "<?" --
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   242
  Scan.repeat (Scan.unless (Scan.this_string "?>") regular) --
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   243
  Scan.this_string "?>" >> ignored;
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   244
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   245
val parse_doctype =
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   246
  Scan.this_string "<!DOCTYPE" --
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   247
  Scan.repeat (Scan.unless ($$ ">") regular) --
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   248
  $$ ">" >> ignored;
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   249
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   250
val parse_misc =
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   251
  Scan.one Symbol.is_blank >> ignored ||
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   252
  parse_processing_instruction ||
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   253
  parse_comment;
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   254
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   255
val parse_optional_text =
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   256
  Scan.optional (parse_chars >> (single o Text)) [];
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   257
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   258
in
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   259
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   260
val parse_comments =
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   261
  blanks -- Scan.repeat (parse_comment -- blanks >> K ()) >> K ();
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   262
40627
becf5d5187cc renamed raw "explode" function to "raw_explode" to emphasize its meaning;
wenzelm
parents: 40131
diff changeset
   263
val parse_string = Scan.read Symbol.stopper parse_chars o raw_explode;
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   264
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   265
fun parse_content xs =
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   266
  (parse_optional_text @@@
61476
1884c40f1539 tuned signature;
wenzelm
parents: 60982
diff changeset
   267
    Scan.repeats
26551
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   268
      ((parse_element >> single ||
da1cd11d8a25 renamed parse_comment_whspc to parse_comments;
wenzelm
parents: 26546
diff changeset
   269
        parse_cdata >> (single o Text) ||
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   270
        parse_processing_instruction ||
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   271
        parse_comment)
61476
1884c40f1539 tuned signature;
wenzelm
parents: 60982
diff changeset
   272
      @@@ parse_optional_text)) xs
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   273
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   274
and parse_element xs =
43949
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   275
  ($$ "<" |-- parse_name -- Scan.repeat (blanks |-- parse_att) --| blanks :--
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   276
    (fn (name, _) =>
43947
9b00f09f7721 defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents: 43844
diff changeset
   277
      !! (err (fn () => "Expected > or />"))
43949
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   278
       ($$ "/" -- $$ ">" >> ignored ||
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   279
        $$ ">" |-- parse_content --|
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   280
          !! (err (fn () => "Expected </" ^ implode name ^ ">"))
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   281
              ($$ "<" -- $$ "/" -- Scan.this name -- blanks -- $$ ">")))
94033767ef9b more precise parse_name according to XML standard;
wenzelm
parents: 43947
diff changeset
   282
    >> (fn ((name, atts), body) => Elem ((implode name, atts), body))) xs;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   283
26984
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   284
val parse_document =
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   285
  (Scan.repeat parse_misc -- Scan.option parse_doctype -- Scan.repeat parse_misc)
d0e098e206f3 added parse_document (optional unchecked header material);
wenzelm
parents: 26554
diff changeset
   286
  |-- parse_element;
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   287
26539
a0754be538ab added output_markup (from Tools/isabelle_process.ML);
wenzelm
parents: 26525
diff changeset
   288
fun parse s =
43947
9b00f09f7721 defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents: 43844
diff changeset
   289
  (case Scan.finite Symbol.stopper (Scan.error (!! (err (fn () => "Malformed element"))
40627
becf5d5187cc renamed raw "explode" function to "raw_explode" to emphasize its meaning;
wenzelm
parents: 40131
diff changeset
   290
      (blanks |-- parse_document --| blanks))) (raw_explode s) of
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   291
    (x, []) => x
48769
e3b7087bb923 tuned message;
wenzelm
parents: 47199
diff changeset
   292
  | (_, ys) => error ("XML parsing error: unprocessed input\n" ^ Symbol.beginning 100 ys));
24264
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   293
d6935e7dac8b moved Tools/xml.ML to General/xml.ML (again);
wenzelm
parents:
diff changeset
   294
end;
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   295
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   296
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   297
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   298
(** XML as data representation language **)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   299
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   300
exception XML_ATOM of string;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   301
exception XML_BODY of tree list;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   302
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   303
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   304
structure Encode =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   305
struct
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   306
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   307
type 'a A = 'a -> string;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   308
type 'a T = 'a -> body;
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   309
type 'a V = 'a -> string list * body;
70828
cb70d84a9f5e more compact XML representation;
wenzelm
parents: 69806
diff changeset
   310
type 'a P = 'a -> string list;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   311
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   312
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   313
(* atomic values *)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   314
69574
wenzelm
parents: 69345
diff changeset
   315
fun int_atom i = Value.print_int i;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   316
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   317
fun bool_atom false = "0"
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   318
  | bool_atom true = "1";
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   319
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   320
fun unit_atom () = "";
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   321
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   322
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   323
(* structural nodes *)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   324
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   325
fun node ts = Elem ((":", []), ts);
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   326
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   327
fun vector xs = map_index (fn (i, x) => (int_atom i, x)) xs;
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   328
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   329
fun tagged (tag, (xs, ts)) = Elem ((int_atom tag, vector xs), ts);
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   330
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   331
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   332
(* representation of standard types *)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   333
80461
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
   334
fun self (x: body) = x;
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
   335
65333
289561ca4fa3 more operations;
wenzelm
parents: 63806
diff changeset
   336
fun tree (t: tree) = [t];
289561ca4fa3 more operations;
wenzelm
parents: 63806
diff changeset
   337
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   338
fun properties props = [Elem ((":", props), [])];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   339
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   340
fun string "" = []
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   341
  | string s = [Text s];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   342
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   343
val int = string o int_atom;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   344
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   345
val bool = string o bool_atom;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   346
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   347
val unit = string o unit_atom;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   348
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   349
fun pair f g (x, y) = [node (f x), node (g y)];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   350
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   351
fun triple f g h (x, y, z) = [node (f x), node (g y), node (h z)];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   352
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   353
fun list f xs = map (node o f) xs;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   354
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   355
fun option _ NONE = []
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   356
  | option f (SOME x) = [node (f x)];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   357
47199
15ede9f1da3f more specific notion of partiality (cf. Scala version);
wenzelm
parents: 46840
diff changeset
   358
fun variant fs x =
15ede9f1da3f more specific notion of partiality (cf. Scala version);
wenzelm
parents: 46840
diff changeset
   359
  [tagged (the (get_index (fn f => SOME (f x) handle General.Match => NONE) fs))];
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   360
26546
ba4cdf92c7c4 further cleanup of XML signature;
wenzelm
parents: 26539
diff changeset
   361
end;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   362
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   363
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   364
structure Decode =
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   365
struct
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   366
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   367
type 'a A = string -> 'a;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   368
type 'a T = 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
   369
type 'a V = string list * body -> 'a;
70828
cb70d84a9f5e more compact XML representation;
wenzelm
parents: 69806
diff changeset
   370
type 'a P = string list -> 'a;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   371
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   372
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   373
(* atomic values *)
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   374
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   375
fun int_atom s =
63806
c54a53ef1873 clarified modules;
wenzelm
parents: 62819
diff changeset
   376
  Value.parse_int s
43797
fad7758421bf more precise integer Markup.properties/XML.attributes: disallow ML-style ~ minus;
wenzelm
parents: 43791
diff changeset
   377
    handle Fail _ => raise XML_ATOM s;
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   378
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   379
fun bool_atom "0" = false
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   380
  | bool_atom "1" = true
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   381
  | bool_atom s = raise XML_ATOM s;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   382
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   383
fun unit_atom "" = ()
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   384
  | unit_atom s = raise XML_ATOM s;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   385
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   386
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   387
(* structural nodes *)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   388
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   389
fun node (Elem ((":", []), ts)) = ts
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   390
  | node t = raise XML_BODY [t];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   391
43783
ef45eaf2775f made SML/NJ happy;
wenzelm
parents: 43781
diff changeset
   392
fun vector atts =
46839
f7232c078fa5 simplified -- plain map_index is sufficient (pointed out by Enrico Tassi);
wenzelm
parents: 46837
diff changeset
   393
  map_index (fn (i, (a, x)) => if int_atom a = i then x else raise XML_ATOM a) 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
   394
43844
wenzelm
parents: 43797
diff changeset
   395
fun tagged (Elem ((name, atts), ts)) = (int_atom name, (vector atts, ts))
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   396
  | tagged t = raise XML_BODY [t];
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   397
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   398
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   399
(* representation of standard types *)
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   400
80461
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
   401
fun self (x: body) = x;
38d020af64aa tuned signature: more operations;
wenzelm
parents: 74789
diff changeset
   402
65333
289561ca4fa3 more operations;
wenzelm
parents: 63806
diff changeset
   403
fun tree [t] = t
289561ca4fa3 more operations;
wenzelm
parents: 63806
diff changeset
   404
  | tree ts = raise XML_BODY ts;
289561ca4fa3 more operations;
wenzelm
parents: 63806
diff changeset
   405
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   406
fun properties [Elem ((":", props), [])] = props
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   407
  | properties ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   408
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   409
fun string [] = ""
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   410
  | string [Text s] = s
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   411
  | string ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   412
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   413
val int = int_atom o string;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   414
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   415
val bool = bool_atom o string;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   416
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   417
val unit = unit_atom o string;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   418
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   419
fun pair f g [t1, t2] = (f (node t1), g (node t2))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   420
  | pair _ _ ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   421
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   422
fun triple f g h [t1, t2, t3] = (f (node t1), g (node t2), h (node t3))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   423
  | triple _ _ _ ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   424
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   425
fun list f ts = map (f o node) ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   426
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   427
fun option _ [] = NONE
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   428
  | option f [t] = SOME (f (node t))
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   429
  | option _ ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   430
43768
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   431
fun variant fs [t] =
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   432
      let
43778
ce9189450447 more compact representation of XML data (notably sort/typ/term), using properties as vector of atomic values;
wenzelm
parents: 43768
diff changeset
   433
        val (tag, (xs, ts)) = tagged t;
43768
d52ab827d62b more precise exceptions;
wenzelm
parents: 43767
diff changeset
   434
        val f = nth fs tag handle General.Subscript => raise XML_BODY [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
   435
      in f (xs, ts) end
43767
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   436
  | variant _ ts = raise XML_BODY ts;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   437
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   438
end;
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   439
e0219ef7f84c tuned XML modules;
wenzelm
parents: 40627
diff changeset
   440
end;