package piqilib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file piqobj_to_xml.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
(*
   Copyright 2009, 2010, 2011, 2012, 2013, 2014, 2017 Anton Lavrik

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*)


module C = Piqi_common
open C

open Piqobj_common


type xml = Piqi_xml_type.xml
type xml_elem = Piqi_xml_type.xml_elem


let uint64_to_string x =
  Printf.sprintf "%Lu" x


let xml_string_of_float x =
  (* Using JavaScript notation for NaN and Infinity *)
  match Pervasives.classify_float x with
    | FP_nan -> "NaN"
    | FP_infinite -> if x > 0. then "Infinity" else "-Infinity"
    | _ -> Piq_gen.string_of_float x


let escape_xml_text x =
  (* TODO, XXX: escape control characters, '\r', leading and trailing whitespace
   *
   * NOTE: Xmlm library escapes only '<', '>', '&' characters *)
  x


let gen_scalar to_string_f x =
  let s = to_string_f x in
  [`Data s]


let make_element name contents =
  `Elem (name, contents)


let rec gen_obj (x:Piqobj.obj) :xml list =
  match x with
    (* built-in types *)
    | `int x -> gen_scalar Int64.to_string x
    | `uint x -> gen_scalar uint64_to_string x
    | `float x -> gen_scalar xml_string_of_float x
    | `bool x -> gen_scalar Pervasives.string_of_bool x (* "true" | "false" *)
    | `binary x -> gen_scalar Piqi_base64.encode x
    | `string x -> gen_scalar escape_xml_text x
    | `any x -> gen_any x
    (* custom types *)
    | `record x -> gen_record x
    | `variant x -> gen_variant x
    | `enum x -> gen_enum x
    | `list x -> gen_list x
    | `alias x -> gen_alias x


and gen_any x =
  let open Any in
  if not !Piqi_config.gen_extended_piqi_any
  then
    match Piqobj.xml_of_any x with
      | None -> [] (* no element members *)
      | Some xml_list -> xml_list
  else (* non-sybolic piqi-any representation *)
    let make_xml_field name value f =
      match value with
        | None -> []
        | Some x ->
            [`Elem (name, f x)]
    in
    let typename = make_xml_field "type" x.typename (fun name -> [`Data name])
    in
    let protobuf = make_xml_field "protobuf" (Piqobj.pb_of_any x) (fun pb ->
      [`Data (Piqi_base64.encode pb)])
    in
    let xml = make_xml_field "xml" (Piqobj.xml_of_any x) (fun xml_list ->
      xml_list)
    in
    let piq = make_xml_field "piq" (Piqobj.piq_of_any x) (fun piq_ast ->
      [`Data (!Piqobj.string_of_piq piq_ast)])
    in
    (* this field indicates that this is an extended piqi-any representation
     * (it is necessary for detecting which variant of piqi-any represenation
     * is used and to make either representation automatically reversible) *)
    `Elem ("piqi-type", [`Data "piqi-any"]) ::
    (* actual content *)
    (typename @ protobuf @ xml @ piq)


and gen_record x =
  let open R in
  let field_types = x.t.T.Record.field in
  (* generate fields and order them according to the order of fields in the
   * original Piqi record specification *)
  U.flatmap (gen_field x.field) field_types


and gen_field fields t =
  let open F in
  let name = C.name_of_field t in
  (* find all fields of the given type *)
  let fields = List.find_all (fun f -> f.t == t) fields in
  (* generate fields *)
  List.map (fun f -> gen_field_obj_element name f.obj) fields


and gen_field_obj_element name = function
  | None -> assert false  (* flag must be resolved to true or false by now *)
  | Some obj -> make_element name (gen_obj obj)


and gen_variant x =
  let open V in
  let o = gen_option x.option in
  [o]


and gen_option x =
  let open O in
  let name = C.name_of_option x.t in
  gen_option_obj_element name x.obj


and gen_option_obj_element name = function
  | None -> make_element name [] (* empty element *)
  | Some obj -> make_element name (gen_obj obj)


and gen_enum x =
  let open E in
  gen_scalar gen_enum_option x.option


and gen_enum_option x =
  let open O in
  let name = C.name_of_option x.t in
  name


and gen_list x = 
  let open L in
  List.map (fun x -> make_element "item" (gen_obj x)) x.obj


and gen_alias x =
  let open A in
  match x.obj with
    | `alias x -> gen_alias x
    | x -> gen_obj x


let gen_obj obj = gen_obj obj


let _ =
  Piqobj.to_xml := gen_obj


(* gen top-level XML element *)
let gen_toplevel_obj (obj: Piqobj.obj) :xml =
  (* always using <value> as a top-level element; we don't really care what this
   * names is, but it is better to pick one name and stick to it *)
  make_element "value" (gen_obj obj)

OCaml

Innovation. Community. Security.