frontend/serialization: pass the static type to the deserialization engine
[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 = new Array[AStdClassdef]
171 for nclassdef in nmodule.n_classdefs do
172 if nclassdef isa AStdClassdef and nclassdef.how_serialize != null then
173 auto_serializable_nclassdefs.add nclassdef
174 end
175 end
176
177 if not auto_serializable_nclassdefs.is_empty then
178 generate_deserialization_method(nmodule, auto_serializable_nclassdefs)
179 end
180 end
181
182 fun generate_serialization_method(nclassdef: AClassdef, per_attribute: Bool)
183 do
184 var npropdefs = nclassdef.n_propdefs
185
186 var code = new Array[String]
187 code.add "redef fun core_serialize_to(v)"
188 code.add "do"
189 code.add " super"
190
191 for attribute in npropdefs do if attribute isa AAttrPropdef then
192
193 # Is `attribute` to be skipped?
194 if (per_attribute and not attribute.is_serialize) or
195 attribute.is_noserialize then continue
196
197 code.add " v.serialize_attribute(\"{attribute.serialize_name}\", {attribute.name})"
198 end
199
200 code.add "end"
201
202 # Create method Node and add it to the AST
203 npropdefs.push(toolcontext.parse_propdef(code.join("\n")))
204 end
205
206 # Add an empty constructor to the automated nclassdef
207 #
208 # Will be filled by `SerializationPhasePostModel`.
209 fun generate_deserialization_init(nclassdef: AClassdef)
210 do
211 var npropdefs = nclassdef.n_propdefs
212
213 # Do not insert a `from_deserializer` if it already exists
214 for npropdef in npropdefs do
215 if npropdef isa AMethPropdef then
216 var methid = npropdef.n_methid
217 if methid != null and methid.collect_text == "from_deserializer" then
218 return
219 end
220 end
221 end
222
223 var code = """
224 redef init from_deserializer(v: Deserializer) do abort"""
225
226 var npropdef = toolcontext.parse_propdef(code).as(AMethPropdef)
227 npropdefs.add npropdef
228 nclassdef.parent.as(AModule).inits_to_retype.add npropdef
229 end
230
231 # Added to the abstract serialization service
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)"
249 code.add " do"
250 else
251 toolcontext.error(deserializer_npropdef.location, "Error: `Deserializer::deserialize_class_intern` is generated and must not be defined, use `deserialize_class` instead.")
252 return
253 end
254
255 for nclassdef in nclassdefs do
256 var n_qid = nclassdef.n_qid
257 if n_qid == null then continue
258 var name = n_qid.n_id.text
259 if nclassdef.n_formaldefs.is_empty and
260 nclassdef.n_classkind isa AConcreteClasskind then
261
262 code.add " if name == \"{name}\" then return new {name}.from_deserializer(self)"
263 end
264 end
265
266 code.add " return super"
267 code.add " end"
268
269 if deserializer_nclassdef == null then
270 code.add "end"
271 nmodule.n_classdefs.add toolcontext.parse_classdef(code.join("\n"))
272 else
273 deserializer_nclassdef.n_propdefs.add(toolcontext.parse_propdef(code.join("\n")))
274 end
275 end
276 end
277
278 private class SerializationPhasePostModel
279 super Phase
280
281 redef fun process_nmodule(nmodule)
282 do
283 for npropdef in nmodule.inits_to_retype do
284 var nclassdef = npropdef.parent
285 assert nclassdef isa AStdClassdef
286
287 var serialize_by_default = nclassdef.how_serialize
288 assert serialize_by_default != null
289
290 var per_attribute = not serialize_by_default
291 fill_deserialization_init(nclassdef, npropdef, per_attribute)
292 end
293 end
294
295 # Fill the constructor to the generated `init_npropdef` of `nclassdef`
296 fun fill_deserialization_init(nclassdef: AClassdef, init_npropdef: AMethPropdef, per_attribute: Bool)
297 do
298 var code = new Array[String]
299 code.add """
300 redef init from_deserializer(v: Deserializer)
301 do
302 super
303 v.notify_of_creation self
304 """
305
306 for attribute in nclassdef.n_propdefs do
307 if not attribute isa AAttrPropdef then continue
308
309 # Is `attribute` to be skipped?
310 if (per_attribute and not attribute.is_serialize) or
311 attribute.is_noserialize then continue
312
313 var mtype = attribute.mtype
314 if mtype == null then continue
315 var type_name = mtype.to_s
316 var name = attribute.name
317
318 if type_name == "nullable Object" then
319 # Don't type check
320 code.add """
321 var {{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
322 """
323 else code.add """
324 var {{{name}}} = v.deserialize_attribute("{{{attribute.serialize_name}}}", "{{{type_name}}}")
325 if not {{{name}}} isa {{{type_name}}} then
326 # Check if it was a subjectent error
327 v.errors.add new AttributeTypeError(self, "{{{attribute.serialize_name}}}", {{{name}}}, "{{{type_name}}}")
328
329 # Clear subjacent error
330 if v.keep_going == false then return
331 else
332 self.{{{name}}} = {{{name}}}
333 end
334 """
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 end
348
349 redef class AAttrPropdef
350 private fun name: String do return n_id2.text
351
352 # Name of this attribute in the serialized format
353 private var serialize_name: String = name is lazy
354 end
355
356 redef class AType
357 private fun type_name: String
358 do
359 var name = n_qid.n_id.text
360
361 if n_kwnullable != null then name = "nullable {name}"
362
363 var types = n_types
364 if not types.is_empty then
365 var params = new Array[String]
366 for t in types do params.add(t.type_name)
367 return "{name}[{params.join(", ")}]"
368 else return name
369 end
370 end
371
372 redef class AModule
373 private fun deserializer_nclassdef: nullable AStdClassdef
374 do
375 for nclassdef in n_classdefs do
376 if not nclassdef isa AStdClassdef then continue
377 var n_qid = nclassdef.n_qid
378 if n_qid != null and n_qid.n_id.text == "Deserializer" then return nclassdef
379 end
380
381 return null
382 end
383
384 private var inits_to_retype = new Array[AMethPropdef]
385
386 redef fun is_serialize
387 do
388 var n_moduledecl = n_moduledecl
389 return n_moduledecl != null and n_moduledecl.is_serialize
390 end
391 end
392
393 redef class AStdClassdef
394 private fun deserializer_npropdef: nullable AMethPropdef
395 do
396 for npropdef in n_propdefs do if npropdef isa AMethPropdef then
397 var id = npropdef.n_methid
398 if id isa AIdMethid and id.n_id.text == "deserialize_class_intern" then
399 return npropdef
400 end
401 end
402
403 return null
404 end
405
406 # Is this classed marked `serialize`? in part or fully?
407 #
408 # This method returns 3 possible values:
409 # * `null`, this class is not to be serialized.
410 # * `true`, the attributes of this class are to be serialized by default.
411 # * `false`, the attributes of this class are to be serialized on demand only.
412 fun how_serialize: nullable Bool
413 do
414 # Is there a declaration on the classdef or the module?
415 var serialize = is_serialize
416
417 if not serialize and not is_noserialize then
418 # Is the module marked serialize?
419 serialize = parent.as(AModule).is_serialize
420 end
421
422 if serialize then return true
423
424 if not serialize then
425 # Is there an attribute marked serialize?
426 for npropdef in n_propdefs do
427 if npropdef.is_serialize then
428 return false
429 end
430 end
431 end
432
433 return null
434 end
435 end