4b7cb152b070ae945526cd3014b0c95a8de72501
[nit.git] / lib / json / serialization.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Handles serialization and deserialization of objects to/from JSON
18 #
19 # ## Nity JSON
20 #
21 # `JsonSerializer` write Nit objects that subclass `Serializable` to JSON,
22 # and `JsonDeserializer` can read them. They both use meta-data added to the
23 # generated JSON to recreate the Nit instances with the exact original type.
24 #
25 # For more information on Nit serialization, see: ../serialization/README.md
26 #
27 # ## Plain JSON
28 #
29 # The attribute `JsonSerializer::plain_json` triggers generating plain and
30 # clean JSON. This format is easier to read for an human and a non-Nit program,
31 # but it cannot be fully deserialized. It can still be read by services from
32 # `json::static` and `json::dynamic`.
33 #
34 # A shortcut to this service is provided by `Serializable::to_plain_json`.
35 #
36 # ### Usage Example
37 #
38 # ~~~nitish
39 # import json::serialization
40 #
41 # class Person
42 # auto_serializable
43 #
44 # var name: String
45 # var year_of_birth: Int
46 # var next_of_kin: nullable Person
47 # end
48 #
49 # var bob = new Person("Bob", 1986)
50 # var alice = new Person("Alice", 1978, bob)
51 #
52 # assert bob.to_plain_json == """
53 # {"name": "Bob", "year_of_birth": 1986, "next_of_kin": null}"""
54 #
55 # assert alice.to_plain_json == """
56 # {"name": "Alice", "year_of_birth": 1978, "next_of_kin": {"name": "Bob", "year_of_birth": 1986, "next_of_kin": null}}"""
57 # ~~~
58 module serialization
59
60 import ::serialization::caching
61 private import ::serialization::engine_tools
62 private import static
63
64 # Serializer of Nit objects to Json string.
65 class JsonSerializer
66 super CachingSerializer
67
68 # Target writing stream
69 var stream: Writer
70
71 # Write plain JSON? easier to read but does not support Nit deserialization
72 #
73 # If `false`, the default, serialize to support deserialization:
74 #
75 # * Write meta-data, including the types of the serialized objects so they can
76 # be deserialized to their original form using `JsonDeserializer`.
77 # * Use references when an object has already been serialized so to not duplicate it.
78 # * Support cycles in references.
79 # * Preserve the Nit `Char` type as an object because it does not exist in JSON.
80 # * The generated JSON is standard and can be read by non-Nit programs.
81 # However, some Nit types are not represented by the simplest possible JSON representation.
82 # With the added meta-data, it can be complex to read.
83 #
84 # If `true`, serialize for other programs:
85 #
86 # * Nit objects are serialized to pure and standard JSON so they can
87 # be easily read by non-Nit programs and humans.
88 # * Nit objects are serialized for every references, so they can be duplicated.
89 # It is easier to read but it creates a larger output.
90 # * Does not support cycles, will replace the problematic references by `null`.
91 # * Does not serialize the meta-data needed to deserialize the objects
92 # back to regular Nit objects.
93 # * Keys of Nit `HashMap` are converted to their string reprensentation using `to_s`.
94 var plain_json = false is writable
95
96 # List of the current open objects, the first is the main target of the serialization
97 #
98 # Used only when `plain_json == true` to detect cycles in serialization.
99 private var open_objects = new Array[Object]
100
101 # Has the first attribute of the current object already been serialized?
102 #
103 # Used only when `plain_json == true`.
104 private var first_attribute = false
105
106 redef fun serialize(object)
107 do
108 if object == null then
109 stream.write "null"
110 else
111 if plain_json then
112 for o in open_objects do
113 if object.is_same_serialized(o) then
114 # Cycle detected
115 stream.write "null"
116 return
117 end
118 end
119
120 open_objects.add object
121 end
122
123 first_attribute = true
124 object.serialize_to_json self
125 first_attribute = false
126
127 if plain_json then open_objects.pop
128 end
129 end
130
131 redef fun serialize_attribute(name, value)
132 do
133 if not plain_json or not first_attribute then
134 stream.write ", "
135 first_attribute = false
136 end
137
138 stream.write "\""
139 stream.write name
140 stream.write "\": "
141 super
142 end
143
144 redef fun serialize_reference(object)
145 do
146 if not plain_json and cache.has_object(object) then
147 # if already serialized, add local reference
148 var id = cache.id_for(object)
149 stream.write "\{\"__kind\": \"ref\", \"__id\": "
150 stream.write id.to_s
151 stream.write "\}"
152 else
153 # serialize here
154 serialize object
155 end
156 end
157 end
158
159 # Deserializer from a Json string.
160 class JsonDeserializer
161 super CachingDeserializer
162
163 # Json text to deserialize from.
164 private var text: Text
165
166 # Root json object parsed from input text.
167 private var root: nullable Jsonable is noinit
168
169 # Depth-first path in the serialized object tree.
170 private var path = new Array[JsonObject]
171
172 # Last encountered object reference id.
173 #
174 # See `id_to_object`.
175 var just_opened_id: nullable Int = null
176
177 init do
178 var root = text.parse_json
179 if root isa JsonObject then path.add(root)
180 self.root = root
181 end
182
183 redef fun deserialize_attribute(name)
184 do
185 assert not path.is_empty
186 var current = path.last
187
188 assert current.keys.has(name)
189 var value = current[name]
190
191 return convert_object(value)
192 end
193
194 # This may be called multiple times by the same object from constructors
195 # in different nclassdef
196 redef fun notify_of_creation(new_object)
197 do
198 var id = just_opened_id
199 if id == null then return # Register `new_object` only once
200 cache[id] = new_object
201 end
202
203 # Convert from simple Json object to Nit object
204 private fun convert_object(object: nullable Object): nullable Object
205 do
206 if object isa JsonObject then
207 assert object.keys.has("__kind")
208 var kind = object["__kind"]
209
210 # ref?
211 if kind == "ref" then
212 assert object.keys.has("__id")
213 var id = object["__id"]
214 assert id isa Int
215
216 assert cache.has_id(id)
217 return cache.object_for(id)
218 end
219
220 # obj?
221 if kind == "obj" then
222 assert object.keys.has("__id")
223 var id = object["__id"]
224 assert id isa Int
225
226 assert object.keys.has("__class")
227 var class_name = object["__class"]
228 assert class_name isa String
229
230 assert not cache.has_id(id) else print "Error: Object with id '{id}' of {class_name} is deserialized twice."
231
232 # advance on path
233 path.push object
234
235 just_opened_id = id
236 var value = deserialize_class(class_name)
237 just_opened_id = null
238
239 # revert on path
240 path.pop
241
242 return value
243 end
244
245 # char?
246 if kind == "char" then
247 assert object.keys.has("__val")
248 var val = object["__val"]
249 assert val isa String
250
251 if val.length != 1 then print "Error: expected a single char when deserializing '{val}'."
252
253 return val.chars.first
254 end
255
256 print "Malformed Json string: unexpected Json Object kind '{kind or else "null"}'"
257 abort
258 end
259
260 if object isa Array[nullable Object] then
261 # special case, isa Array[nullable Serializable]
262 var array = new Array[nullable Serializable]
263 for e in object do array.add e.as(nullable Serializable)
264 return array
265 end
266
267 return object
268 end
269
270 redef fun deserialize do return convert_object(root)
271 end
272
273 redef class Serializable
274 private fun serialize_to_json(v: JsonSerializer)
275 do
276 var id = v.cache.new_id_for(self)
277 v.stream.write "\{"
278 if not v.plain_json then
279 v.stream.write "\"__kind\": \"obj\", \"__id\": "
280 v.stream.write id.to_s
281 v.stream.write ", \"__class\": \""
282 v.stream.write class_name
283 v.stream.write "\""
284 end
285 core_serialize_to(v)
286 v.stream.write "\}"
287 end
288
289 # Serialize this object to plain JSON
290 #
291 # This is a shortcut using `JsonSerializer::plain_json`,
292 # see its documentation for more information.
293 fun to_plain_json: String
294 do
295 var stream = new StringWriter
296 var serializer = new JsonSerializer(stream)
297 serializer.plain_json = true
298 serializer.serialize self
299 stream.close
300 return stream.to_s
301 end
302 end
303
304 redef class Int
305 redef fun serialize_to_json(v) do v.stream.write(to_s)
306 end
307
308 redef class Float
309 redef fun serialize_to_json(v) do v.stream.write(to_s)
310 end
311
312 redef class Bool
313 redef fun serialize_to_json(v) do v.stream.write(to_s)
314 end
315
316 redef class Char
317 redef fun serialize_to_json(v)
318 do
319 if v.plain_json then
320 v.stream.write to_s.to_json
321 else
322 v.stream.write "\{\"__kind\": \"char\", \"__val\": "
323 v.stream.write to_s.to_json
324 v.stream.write "\}"
325 end
326 end
327 end
328
329 redef class String
330 redef fun serialize_to_json(v) do v.stream.write(to_json)
331 end
332
333 redef class NativeString
334 redef fun serialize_to_json(v) do to_s.serialize_to_json(v)
335 end
336
337 redef class Collection[E]
338 # Utility to serialize a normal Json array
339 private fun serialize_to_pure_json(v: JsonSerializer)
340 do
341 v.stream.write "["
342 var is_first = true
343 for e in self do
344 if is_first then
345 is_first = false
346 else v.stream.write ", "
347
348 if not v.try_to_serialize(e) then
349 v.warn("element of type {e.class_name} is not serializable.")
350 end
351 end
352 v.stream.write "]"
353 end
354 end
355
356 redef class SimpleCollection[E]
357 redef fun serialize_to_json(v)
358 do
359 # Register as pseudo object
360 if not v.plain_json then
361 var id = v.cache.new_id_for(self)
362 v.stream.write """{"__kind": "obj", "__id": """
363 v.stream.write id.to_s
364 v.stream.write """, "__class": """"
365 v.stream.write class_name
366 v.stream.write """", "__length": """
367 v.stream.write length.to_s
368 v.stream.write """, "__items": """
369 end
370
371 serialize_to_pure_json v
372
373 if not v.plain_json then
374 v.stream.write "\}"
375 end
376 end
377
378 redef init from_deserializer(v: Deserializer)
379 do
380 super
381 if v isa JsonDeserializer then
382 v.notify_of_creation self
383 init
384
385 var length = v.deserialize_attribute("__length").as(Int)
386 var arr = v.path.last["__items"].as(SequenceRead[nullable Object])
387 for i in length.times do
388 var obj = v.convert_object(arr[i])
389 self.add obj
390 end
391 end
392 end
393 end
394
395 redef class Array[E]
396 redef fun serialize_to_json(v)
397 do
398 if v.plain_json or class_name == "Array[nullable Serializable]" then
399 # Using class_name to get the exact type,
400 # we do not want Array[Int] or anything else here.
401
402 serialize_to_pure_json v
403 else super
404 end
405 end
406
407 redef class Map[K, V]
408 redef fun serialize_to_json(v)
409 do
410 # Register as pseudo object
411 var id = v.cache.new_id_for(self)
412
413 if v.plain_json then
414 v.stream.write "\{"
415 var first = true
416 for key, val in self do
417 if not first then
418 v.stream.write ", "
419 else first = false
420
421 if key == null then key = "null"
422
423 v.stream.write key.to_s.to_json
424 v.stream.write ": "
425 if not v.try_to_serialize(val) then
426 v.warn("element of type {val.class_name} is not serializable.")
427 v.stream.write "null"
428 end
429 end
430 v.stream.write "\}"
431 else
432 v.stream.write """{"__kind": "obj", "__id": """
433 v.stream.write id.to_s
434 v.stream.write """, "__class": """"
435 v.stream.write class_name
436 v.stream.write """", "__length": """
437 v.stream.write length.to_s
438
439 v.stream.write """, "__keys": """
440 keys.serialize_to_pure_json v
441
442 v.stream.write """, "__values": """
443 values.serialize_to_pure_json v
444
445 v.stream.write "\}"
446 end
447 end
448
449 # Instantiate a new `Array` from its serialized representation.
450 redef init from_deserializer(v: Deserializer)
451 do
452 super
453
454 if v isa JsonDeserializer then
455 v.notify_of_creation self
456 init
457
458 var length = v.deserialize_attribute("__length").as(Int)
459 var keys = v.path.last["__keys"].as(SequenceRead[nullable Object])
460 var values = v.path.last["__values"].as(SequenceRead[nullable Object])
461 for i in length.times do
462 var key = v.convert_object(keys[i])
463 var value = v.convert_object(values[i])
464 self[key] = value
465 end
466 end
467 end
468 end