serialization: don't throw missing attribute error if there is a default value
[nit.git] / src / frontend / serialization_phase.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2013 Jean-Philippe Caissy <jpcaissy@piji.ca>
4 # Copyright 2013 Guillaume Auger <jeho@resist.ca>
5 # Copyright 2014 Alexis Laferrière <alexis.laf@xymus.net>
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18
19 # Phase generating methods to serialize Nit objects to different formats
20 module serialization_phase
21
22 private import parser_util
23 import modelize
24 private import annotation
25 intrude import literal
26
27 redef class ToolContext
28
29 # Apply the annotation `serialize_as`
30 var serialization_phase_rename: Phase = new SerializationPhaseRename(self, null)
31
32 # Generate serialization and deserialization methods on `auto_serializable` annotated classes.
33 var serialization_phase_pre_model: Phase = new SerializationPhasePreModel(self,
34 [serialization_phase_rename])
35
36 # The second phase of the serialization
37 var serialization_phase_post_model: Phase = new SerializationPhasePostModel(self,
38 [modelize_property_phase, serialization_phase_pre_model])
39 end
40
41 redef class ANode
42 # Is this node annotated to be made serializable?
43 private fun is_serialize: Bool do return false
44
45 # Is this node annotated to not be made serializable?
46 private fun is_noserialize: Bool do return false
47 end
48
49 redef class ADefinition
50
51 redef fun is_serialize do
52 return get_annotations("serialize").not_empty or
53 get_annotations("auto_serializable").not_empty
54 end
55
56 redef fun is_noserialize do
57 return get_annotations("noserialize").not_empty
58 end
59 end
60
61 private class SerializationPhaseRename
62 super Phase
63
64 redef fun process_annotated_node(node, nat)
65 do
66 var text = nat.n_atid.n_id.text
67 if text != "serialize_as" then return
68
69 if not node isa AAttrPropdef then
70 toolcontext.error(node.location,
71 "Syntax Error: annotation `{text}` applies only to attributes.")
72 return
73 end
74
75 # Can't use `arg_as_string` because it needs the literal phase
76 var args = nat.n_args
77 if args.length != 1 or not args.first isa AStringFormExpr then
78 toolcontext.error(node.location,
79 "Syntax Error: annotation `{text}` expects a single string literal as argument.")
80 return
81 end
82
83 var t = args.first.collect_text
84 var val = t.substring(1, t.length-2)
85 node.serialize_name = val
86 end
87 end
88
89 private class SerializationPhasePreModel
90 super Phase
91
92 redef fun process_annotated_node(node, nat)
93 do
94 # Skip if we are not interested
95 var text = nat.n_atid.n_id.text
96 var serialize = text == "auto_serializable" or text == "serialize"
97 var noserialize = text == "noserialize"
98 if not (serialize or noserialize) then return
99
100 # Check legality of annotation
101 if node isa AModuledecl then
102 if noserialize then toolcontext.error(node.location, "Syntax Error: superfluous use of `{text}`, by default a module is `{text}`")
103 return
104 else if not (node isa AStdClassdef or node isa AAttrPropdef) then
105 toolcontext.error(node.location,
106 "Syntax Error: only a class, a module or an attribute can be annotated with `{text}`.")
107 return
108 else if serialize and node.is_noserialize then
109 toolcontext.error(node.location,
110 "Syntax Error: an entity cannot be both `{text}` and `noserialize`.")
111 return
112 else if node.as(Prod).get_annotations(text).length > 1 then
113 toolcontext.warning(node.location, "useless-{text}",
114 "Warning: duplicated annotation `{text}`.")
115 end
116
117 # Check the `serialize` state of the parent
118 if not node isa AModuledecl then
119 var up_serialize = false
120 var up: nullable ANode = node
121 while up != null do
122 up = up.parent
123 if up == null then
124 break
125 else if up.is_serialize then
126 up_serialize = true
127 break
128 else if up.is_noserialize then
129 break
130 end
131 end
132
133 # Check for useless double declarations
134 if serialize and up_serialize then
135 toolcontext.warning(node.location, "useless-serialize",
136 "Warning: superfluous use of `{text}`.")
137 else if noserialize and not up_serialize then
138 toolcontext.warning(node.location, "useless-noserialize",
139 "Warning: superfluous use of `{text}`.")
140 end
141 end
142 end
143
144 redef fun process_nclassdef(nclassdef)
145 do
146 if not nclassdef isa AStdClassdef then return
147
148 var serialize_by_default = nclassdef.how_serialize
149
150 if serialize_by_default != null then
151
152 # Add `super Serializable`
153 var sc = toolcontext.parse_superclass("Serializable")
154 sc.location = nclassdef.location
155 nclassdef.n_propdefs.add sc
156
157 # Add services
158 var per_attribute = not serialize_by_default
159 generate_serialization_method(nclassdef, per_attribute)
160 generate_deserialization_init(nclassdef)
161 end
162 end
163
164 redef fun process_nmodule(nmodule)
165 do
166 # Clear the cache of constructors to review before adding to it
167 nmodule.inits_to_retype.clear
168
169 # collect all classes
170 var auto_serializable_nclassdefs = nmodule.auto_serializable_nclassdefs
171 if not auto_serializable_nclassdefs.is_empty then
172 generate_deserialization_method(nmodule, auto_serializable_nclassdefs)
173 end
174 end
175
176 # Implement `core_serialize_to` on `nclassdef`
177 #
178 # Are attributes serialized on demand `per_attribute` with `serialize`?
179 # Otherwise they are serialized by default, and we check instead for `noserialize`.
180 fun generate_serialization_method(nclassdef: AClassdef, per_attribute: Bool)
181 do
182 var npropdefs = nclassdef.n_propdefs
183
184 var code = new Array[String]
185 code.add "redef fun core_serialize_to(v)"
186 code.add "do"
187 code.add " super"
188
189 for attribute in npropdefs do if attribute isa AAttrPropdef then
190
191 # Is `attribute` to be skipped?
192 if (per_attribute and not attribute.is_serialize) or
193 attribute.is_noserialize then continue
194
195 code.add " v.serialize_attribute(\"{attribute.serialize_name}\", {attribute.name})"
196 end
197
198 code.add "end"
199
200 # Create method Node and add it to the AST
201 npropdefs.push(toolcontext.parse_propdef(code.join("\n")))
202 end
203
204 # Add an empty constructor to the automated nclassdef
205 #
206 # Will be filled by `SerializationPhasePostModel`.
207 fun generate_deserialization_init(nclassdef: AClassdef)
208 do
209 var npropdefs = nclassdef.n_propdefs
210
211 # Do not insert a `from_deserializer` if it already exists
212 for npropdef in npropdefs do
213 if npropdef isa AMethPropdef then
214 var methid = npropdef.n_methid
215 if methid != null and methid.collect_text == "from_deserializer" then
216 return
217 end
218 end
219 end
220
221 var code = """
222 redef init from_deserializer(v: Deserializer) do abort"""
223
224 var npropdef = toolcontext.parse_propdef(code).as(AMethPropdef)
225 npropdefs.add npropdef
226 nclassdef.parent.as(AModule).inits_to_retype.add npropdef
227 end
228
229 # Add an empty `Deserializer::deserialize_class_intern`
230 #
231 # Will be filled by `SerializationPhasePostModel`.
232 fun generate_deserialization_method(nmodule: AModule, nclassdefs: Array[AStdClassdef])
233 do
234 var code = new Array[String]
235
236 var deserializer_nclassdef = nmodule.deserializer_nclassdef
237 var deserializer_npropdef
238 if deserializer_nclassdef == null then
239 # create the class
240 code.add "redef class Deserializer"
241 deserializer_npropdef = null
242 else
243 deserializer_npropdef = deserializer_nclassdef.deserializer_npropdef
244 end
245
246 if deserializer_npropdef == null then
247 # create the property
248 code.add " redef fun deserialize_class_intern(name) do abort"
249 else
250 toolcontext.error(deserializer_npropdef.location, "Error: `Deserializer::deserialize_class_intern` is generated and must not be defined, use `deserialize_class` instead.")
251 return
252 end
253
254 if deserializer_nclassdef == null then
255 code.add "end"
256 nmodule.n_classdefs.add toolcontext.parse_classdef(code.join("\n"))
257 else
258 deserializer_nclassdef.n_propdefs.add(toolcontext.parse_propdef(code.join("\n")))
259 end
260 end
261 end
262
263 private class SerializationPhasePostModel
264 super Phase
265
266 # Fill the deserialization init `from_deserializer` and `Deserializer.deserialize_class_intern`
267 redef fun process_nmodule(nmodule)
268 do
269 for npropdef in nmodule.inits_to_retype do
270 var nclassdef = npropdef.parent
271 assert nclassdef isa AStdClassdef
272
273 var serialize_by_default = nclassdef.how_serialize
274 assert serialize_by_default != null
275
276 var per_attribute = not serialize_by_default
277 fill_deserialization_init(nclassdef, npropdef, per_attribute)
278 end
279
280 # collect all classes
281 var auto_serializable_nclassdefs = nmodule.auto_serializable_nclassdefs
282 if not auto_serializable_nclassdefs.is_empty then
283 fill_deserialization_method(nmodule, auto_serializable_nclassdefs)
284 end
285 end
286
287 # Fill the constructor to the generated `init_npropdef` of `nclassdef`
288 fun fill_deserialization_init(nclassdef: AClassdef, init_npropdef: AMethPropdef, per_attribute: Bool)
289 do
290 var code = new Array[String]
291 code.add """
292 redef init from_deserializer(v: Deserializer)
293 do
294 super
295 v.notify_of_creation self
296 """
297
298 for attribute in nclassdef.n_propdefs do
299 if not attribute isa AAttrPropdef then continue
300
301 # Is `attribute` to be skipped?
302 if (per_attribute and not attribute.is_serialize) or
303 attribute.is_noserialize then continue
304
305 var mtype = attribute.mtype
306 if mtype == null then continue
307 var type_name = mtype.to_s
308 var name = attribute.name
309
310 if type_name == "nullable Object" then
311 # Don't type check
312 code.add """
313 self.{{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
314 """
315 else
316 code.add """
317 var {{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
318 if v.deserialize_attribute_missing then
319 """
320 # What to do when an attribute is missing?
321 if attribute.has_value then
322 # Leave it to the default value
323 else code.add """
324 v.errors.add new Error("Deserialization Error: attribute `{class_name}::{{{name}}}` missing from JSON object")"""
325
326 code.add """
327 else if not {{{name}}} isa {{{type_name}}} then
328 v.errors.add new AttributeTypeError(self, "{{{attribute.serialize_name}}}", {{{name}}}, "{{{type_name}}}")
329 if v.keep_going == false then return
330 else
331 self.{{{name}}} = {{{name}}}
332 end
333 """
334 end
335 end
336
337 code.add "end"
338
339 # Replace the body of the constructor
340 var npropdef = toolcontext.parse_propdef(code.join("\n")).as(AMethPropdef)
341 init_npropdef.n_block = npropdef.n_block
342
343 # Run the literal phase on the generated code
344 var v = new LiteralVisitor(toolcontext)
345 v.enter_visit(npropdef.n_block)
346 end
347
348 # Fill the abstract serialization service
349 fun fill_deserialization_method(nmodule: AModule, nclassdefs: Array[AStdClassdef])
350 do
351 var deserializer_nclassdef = nmodule.deserializer_nclassdef
352 if deserializer_nclassdef == null then return
353 var deserializer_npropdef = deserializer_nclassdef.deserializer_npropdef
354 if deserializer_npropdef == null then return
355
356 # Collect local types expected to be deserialized
357 var types_to_deserialize = new Set[String]
358
359 ## Local serializable standard class without parameters
360 for nclassdef in nclassdefs do
361 var mclass = nclassdef.mclass
362 if mclass == null then continue
363
364 if mclass.arity == 0 and mclass.kind == concrete_kind then
365 types_to_deserialize.add mclass.name
366 end
367 end
368
369 ## Static parametized types on serializable attributes
370 for nclassdef in nmodule.n_classdefs do
371 if not nclassdef isa AStdClassdef then continue
372
373 for attribute in nclassdef.n_propdefs do
374 if not attribute isa AAttrPropdef then continue
375
376 var serialize_by_default = nclassdef.how_serialize
377 if serialize_by_default == null then continue
378 var per_attribute = not serialize_by_default
379
380 # Is `attribute` to be skipped?
381 if (per_attribute and not attribute.is_serialize) or
382 attribute.is_noserialize then continue
383
384 var mtype = attribute.mtype
385 if mtype == null then continue
386 if mtype isa MNullableType then mtype = mtype.mtype
387
388 if mtype isa MClassType and mtype.mclass.arity > 0 and
389 mtype.mclass.kind == concrete_kind and not mtype.need_anchor then
390
391 # Check is a `Serializable`
392 var mmodule = nmodule.mmodule
393 if mmodule == null then continue
394
395 var greaters = mtype.mclass.in_hierarchy(mmodule).greaters
396 var is_serializable = false
397 for sup in greaters do if sup.name == "Serializable" then
398 is_serializable = true
399 break
400 end
401
402 if is_serializable then types_to_deserialize.add mtype.to_s
403 end
404 end
405 end
406
407 # Build implementation code
408 var code = new Array[String]
409 code.add "redef fun deserialize_class_intern(name)"
410 code.add "do"
411
412 for name in types_to_deserialize do
413 code.add " if name == \"{name}\" then return new {name}.from_deserializer(self)"
414 end
415
416 code.add " return super"
417 code.add "end"
418
419 # Replace the body of the constructor
420 var npropdef = toolcontext.parse_propdef(code.join("\n")).as(AMethPropdef)
421 deserializer_npropdef.n_block = npropdef.n_block
422
423 # Run the literal phase on the generated code
424 var v = new LiteralVisitor(toolcontext)
425 v.enter_visit(npropdef.n_block)
426 end
427 end
428
429 redef class AAttrPropdef
430 private fun name: String do return n_id2.text
431
432 # Name of this attribute in the serialized format
433 private var serialize_name: String = name is lazy
434 end
435
436 redef class AType
437 private fun type_name: String
438 do
439 var name = n_qid.n_id.text
440
441 if n_kwnullable != null then name = "nullable {name}"
442
443 var types = n_types
444 if not types.is_empty then
445 var params = new Array[String]
446 for t in types do params.add(t.type_name)
447 return "{name}[{params.join(", ")}]"
448 else return name
449 end
450 end
451
452 redef class AModule
453 private fun deserializer_nclassdef: nullable AStdClassdef
454 do
455 for nclassdef in n_classdefs do
456 if not nclassdef isa AStdClassdef then continue
457 var n_qid = nclassdef.n_qid
458 if n_qid != null and n_qid.n_id.text == "Deserializer" then return nclassdef
459 end
460
461 return null
462 end
463
464 private var inits_to_retype = new Array[AMethPropdef]
465
466 redef fun is_serialize
467 do
468 var n_moduledecl = n_moduledecl
469 return n_moduledecl != null and n_moduledecl.is_serialize
470 end
471
472 # `AStdClassdef` marked as serializable, itself or one of theur attribute
473 private var auto_serializable_nclassdefs: Array[AStdClassdef] is lazy do
474 var array = new Array[AStdClassdef]
475 for nclassdef in n_classdefs do
476 if nclassdef isa AStdClassdef and nclassdef.how_serialize != null then
477 array.add nclassdef
478 end
479 end
480 return array
481 end
482 end
483
484 redef class AStdClassdef
485 private fun deserializer_npropdef: nullable AMethPropdef
486 do
487 for npropdef in n_propdefs do if npropdef isa AMethPropdef then
488 var id = npropdef.n_methid
489 if id isa AIdMethid and id.n_id.text == "deserialize_class_intern" then
490 return npropdef
491 end
492 end
493
494 return null
495 end
496
497 # Is this classed marked `serialize`? in part or fully?
498 #
499 # This method returns 3 possible values:
500 # * `null`, this class is not to be serialized.
501 # * `true`, the attributes of this class are to be serialized by default.
502 # * `false`, the attributes of this class are to be serialized on demand only.
503 fun how_serialize: nullable Bool
504 do
505 # Is there a declaration on the classdef or the module?
506 var serialize = is_serialize
507
508 if not serialize and not is_noserialize then
509 # Is the module marked serialize?
510 serialize = parent.as(AModule).is_serialize
511 end
512
513 if serialize then return true
514
515 if not serialize then
516 # Is there an attribute marked serialize?
517 for npropdef in n_propdefs do
518 if npropdef.is_serialize then
519 return false
520 end
521 end
522 end
523
524 return null
525 end
526 end