9eb01a4181a6599a4856c8ff25ef81a17fd96474
[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 if mtype isa MNullableType then
324 code.add """
325 self.{{{name}}} = null"""
326 else code.add """
327 v.errors.add new Error("Deserialization Error: attribute `{class_name}::{{{name}}}` missing from JSON object")"""
328
329 code.add """
330 else if not {{{name}}} isa {{{type_name}}} then
331 v.errors.add new AttributeTypeError(self, "{{{attribute.serialize_name}}}", {{{name}}}, "{{{type_name}}}")
332 if v.keep_going == false then return
333 else
334 self.{{{name}}} = {{{name}}}
335 end
336 """
337 end
338 end
339
340 code.add "end"
341
342 # Replace the body of the constructor
343 var npropdef = toolcontext.parse_propdef(code.join("\n")).as(AMethPropdef)
344 init_npropdef.n_block = npropdef.n_block
345
346 # Run the literal phase on the generated code
347 var v = new LiteralVisitor(toolcontext)
348 v.enter_visit(npropdef.n_block)
349 end
350
351 # Fill the abstract serialization service
352 fun fill_deserialization_method(nmodule: AModule, nclassdefs: Array[AStdClassdef])
353 do
354 var deserializer_nclassdef = nmodule.deserializer_nclassdef
355 if deserializer_nclassdef == null then return
356 var deserializer_npropdef = deserializer_nclassdef.deserializer_npropdef
357 if deserializer_npropdef == null then return
358
359 # Collect local types expected to be deserialized
360 var types_to_deserialize = new Set[String]
361
362 ## Local serializable standard class without parameters
363 for nclassdef in nclassdefs do
364 var mclass = nclassdef.mclass
365 if mclass == null then continue
366
367 if mclass.arity == 0 and mclass.kind == concrete_kind then
368 types_to_deserialize.add mclass.name
369 end
370 end
371
372 ## Static parametized types on serializable attributes
373 for nclassdef in nmodule.n_classdefs do
374 if not nclassdef isa AStdClassdef then continue
375
376 for attribute in nclassdef.n_propdefs do
377 if not attribute isa AAttrPropdef then continue
378
379 var serialize_by_default = nclassdef.how_serialize
380 if serialize_by_default == null then continue
381 var per_attribute = not serialize_by_default
382
383 # Is `attribute` to be skipped?
384 if (per_attribute and not attribute.is_serialize) or
385 attribute.is_noserialize then continue
386
387 var mtype = attribute.mtype
388 if mtype == null then continue
389 if mtype isa MNullableType then mtype = mtype.mtype
390
391 if mtype isa MClassType and mtype.mclass.arity > 0 and
392 mtype.mclass.kind == concrete_kind and not mtype.need_anchor then
393
394 # Check is a `Serializable`
395 var mmodule = nmodule.mmodule
396 if mmodule == null then continue
397
398 var greaters = mtype.mclass.in_hierarchy(mmodule).greaters
399 var is_serializable = false
400 for sup in greaters do if sup.name == "Serializable" then
401 is_serializable = true
402 break
403 end
404
405 if is_serializable then types_to_deserialize.add mtype.to_s
406 end
407 end
408 end
409
410 # Build implementation code
411 var code = new Array[String]
412 code.add "redef fun deserialize_class_intern(name)"
413 code.add "do"
414
415 for name in types_to_deserialize do
416 code.add " if name == \"{name}\" then return new {name}.from_deserializer(self)"
417 end
418
419 code.add " return super"
420 code.add "end"
421
422 # Replace the body of the constructor
423 var npropdef = toolcontext.parse_propdef(code.join("\n")).as(AMethPropdef)
424 deserializer_npropdef.n_block = npropdef.n_block
425
426 # Run the literal phase on the generated code
427 var v = new LiteralVisitor(toolcontext)
428 v.enter_visit(npropdef.n_block)
429 end
430 end
431
432 redef class AAttrPropdef
433 private fun name: String do return n_id2.text
434
435 # Name of this attribute in the serialized format
436 private var serialize_name: String = name is lazy
437 end
438
439 redef class AType
440 private fun type_name: String
441 do
442 var name = n_qid.n_id.text
443
444 if n_kwnullable != null then name = "nullable {name}"
445
446 var types = n_types
447 if not types.is_empty then
448 var params = new Array[String]
449 for t in types do params.add(t.type_name)
450 return "{name}[{params.join(", ")}]"
451 else return name
452 end
453 end
454
455 redef class AModule
456 private fun deserializer_nclassdef: nullable AStdClassdef
457 do
458 for nclassdef in n_classdefs do
459 if not nclassdef isa AStdClassdef then continue
460 var n_qid = nclassdef.n_qid
461 if n_qid != null and n_qid.n_id.text == "Deserializer" then return nclassdef
462 end
463
464 return null
465 end
466
467 private var inits_to_retype = new Array[AMethPropdef]
468
469 redef fun is_serialize
470 do
471 var n_moduledecl = n_moduledecl
472 return n_moduledecl != null and n_moduledecl.is_serialize
473 end
474
475 # `AStdClassdef` marked as serializable, itself or one of theur attribute
476 private var auto_serializable_nclassdefs: Array[AStdClassdef] is lazy do
477 var array = new Array[AStdClassdef]
478 for nclassdef in n_classdefs do
479 if nclassdef isa AStdClassdef and nclassdef.how_serialize != null then
480 array.add nclassdef
481 end
482 end
483 return array
484 end
485 end
486
487 redef class AStdClassdef
488 private fun deserializer_npropdef: nullable AMethPropdef
489 do
490 for npropdef in n_propdefs do if npropdef isa AMethPropdef then
491 var id = npropdef.n_methid
492 if id isa AIdMethid and id.n_id.text == "deserialize_class_intern" then
493 return npropdef
494 end
495 end
496
497 return null
498 end
499
500 # Is this classed marked `serialize`? in part or fully?
501 #
502 # This method returns 3 possible values:
503 # * `null`, this class is not to be serialized.
504 # * `true`, the attributes of this class are to be serialized by default.
505 # * `false`, the attributes of this class are to be serialized on demand only.
506 fun how_serialize: nullable Bool
507 do
508 # Is there a declaration on the classdef or the module?
509 var serialize = is_serialize
510
511 if not serialize and not is_noserialize then
512 # Is the module marked serialize?
513 serialize = parent.as(AModule).is_serialize
514 end
515
516 if serialize then return true
517
518 if not serialize then
519 # Is there an attribute marked serialize?
520 for npropdef in n_propdefs do
521 if npropdef.is_serialize then
522 return false
523 end
524 end
525 end
526
527 return null
528 end
529 end