modelize: move `autoinit` management on method into AMethPropdef
[nit.git] / src / modelize / modelize_property.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
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 # Analysis and verification of property definitions to instantiate model element
18 module modelize_property
19
20 intrude import modelize_class
21 private import annotation
22
23 redef class ToolContext
24 # Run `AClassdef::build_property` on the classdefs of each module
25 var modelize_property_phase: Phase = new ModelizePropertyPhase(self, [modelize_class_phase])
26 end
27
28 private class ModelizePropertyPhase
29 super Phase
30 redef fun process_nmodule(nmodule)
31 do
32 for nclassdef in nmodule.n_classdefs do
33 if nclassdef.all_defs == null then continue # skip non principal classdef
34 toolcontext.modelbuilder.build_properties(nclassdef)
35 end
36 end
37 end
38
39 redef class ModelBuilder
40 # Registration of the npropdef associated to each mpropdef.
41 #
42 # Public clients need to use `mpropdef2node` to access stuff.
43 private var mpropdef2npropdef = new HashMap[MPropDef, APropdef]
44
45 # Retrieve the associated AST node of a mpropertydef.
46 # This method is used to associate model entity with syntactic entities.
47 #
48 # If the property definition is not associated with a node, returns `null`.
49 fun mpropdef2node(mpropdef: MPropDef): nullable ANode
50 do
51 var res
52 res = mpropdef2npropdef.get_or_null(mpropdef)
53 if res != null then
54 # Run the phases on it
55 toolcontext.run_phases_on_npropdef(res)
56 return res
57 end
58 if mpropdef isa MMethodDef and mpropdef.mproperty.is_root_init then
59 res = mclassdef2nclassdef.get_or_null(mpropdef.mclassdef)
60 if res != null then return res
61 end
62 return null
63 end
64
65 # Retrieve all the attributes nodes localy definied
66 # FIXME think more about this method and how the separations separate/global and ast/model should be done.
67 fun collect_attr_propdef(mclassdef: MClassDef): Array[AAttrPropdef]
68 do
69 var res = new Array[AAttrPropdef]
70 var n = mclassdef2nclassdef.get_or_null(mclassdef)
71 if n == null then return res
72 for npropdef in n.n_propdefs do
73 if npropdef isa AAttrPropdef then
74 # Run the phases on it
75 toolcontext.run_phases_on_npropdef(npropdef)
76 res.add(npropdef)
77 end
78 end
79 return res
80 end
81
82 # Build the properties of `nclassdef`.
83 # REQUIRE: all superclasses are built.
84 private fun build_properties(nclassdef: AClassdef)
85 do
86 # Force building recursively
87 if nclassdef.build_properties_is_done then return
88 nclassdef.build_properties_is_done = true
89 var mclassdef = nclassdef.mclassdef
90 if mclassdef == null then return # skip error
91 if mclassdef.in_hierarchy == null then return # Skip error
92 for superclassdef in mclassdef.in_hierarchy.direct_greaters do
93 if not mclassdef2nclassdef.has_key(superclassdef) then continue
94 build_properties(mclassdef2nclassdef[superclassdef])
95 end
96
97 mclassdef.build_self_type(self, nclassdef)
98 for nclassdef2 in nclassdef.all_defs do
99 for npropdef in nclassdef2.n_propdefs do
100 npropdef.build_property(self, mclassdef)
101 end
102 for npropdef in nclassdef2.n_propdefs do
103 npropdef.build_signature(self)
104 end
105 for npropdef in nclassdef2.n_propdefs do
106 if not npropdef isa ATypePropdef then continue
107 # Check circularity
108 var mpropdef = npropdef.mpropdef
109 if mpropdef == null then continue
110 if mpropdef.bound == null then continue
111 if not check_virtual_types_circularity(npropdef, mpropdef.mproperty, mclassdef.bound_mtype, mclassdef.mmodule) then
112 # Invalidate the bound
113 mpropdef.bound = mclassdef.mmodule.model.null_type
114 end
115 end
116 for npropdef in nclassdef2.n_propdefs do
117 # Check ATypePropdef first since they may be required for the other properties
118 if not npropdef isa ATypePropdef then continue
119 npropdef.check_signature(self)
120 end
121
122 for npropdef in nclassdef2.n_propdefs do
123 if npropdef isa ATypePropdef then continue
124 npropdef.check_signature(self)
125 end
126 end
127 process_default_constructors(nclassdef)
128 end
129
130 # the root init of the Object class
131 # Is usually implicitly defined
132 # Then explicit or implicit definitions of root-init are attached to it
133 var the_root_init_mmethod: nullable MMethod
134
135 # Introduce or inherit default constructor
136 # This is the last part of `build_properties`.
137 private fun process_default_constructors(nclassdef: AClassdef)
138 do
139 var mclassdef = nclassdef.mclassdef.as(not null)
140
141 # Are we a refinement
142 if not mclassdef.is_intro then return
143
144 # Look for the init in Object, or create it
145 if mclassdef.mclass.name == "Object" and the_root_init_mmethod == null then
146 # Create the implicit root-init method
147 var mprop = new MMethod(mclassdef, "init", mclassdef.mclass.visibility)
148 mprop.is_root_init = true
149 var mpropdef = new MMethodDef(mclassdef, mprop, nclassdef.location)
150 var mparameters = new Array[MParameter]
151 var msignature = new MSignature(mparameters, null)
152 mpropdef.msignature = msignature
153 mpropdef.new_msignature = msignature
154 mprop.is_init = true
155 nclassdef.mfree_init = mpropdef
156 self.toolcontext.info("{mclassdef} gets a free empty constructor {mpropdef}{msignature}", 3)
157 the_root_init_mmethod = mprop
158 return
159 end
160
161 # Is the class forbid constructors?
162 if not mclassdef.mclass.kind.need_init then return
163
164 # Is there already a constructor defined?
165 var defined_init: nullable MMethodDef = null
166 for mpropdef in mclassdef.mpropdefs do
167 if not mpropdef isa MMethodDef then continue
168 if not mpropdef.mproperty.is_init then continue
169 if mpropdef.mproperty.is_root_init then
170 assert defined_init == null
171 defined_init = mpropdef
172 else if mpropdef.mproperty.name == "init" then
173 # An explicit old-style init named "init", so return
174 return
175 end
176 end
177
178 if not nclassdef isa AStdClassdef then return
179
180 # Collect undefined attributes
181 var mparameters = new Array[MParameter]
182 var initializers = new Array[MProperty]
183 for npropdef in nclassdef.n_propdefs do
184 if npropdef isa AMethPropdef then
185 if not npropdef.is_autoinit then continue # Skip non tagged autoinit
186 if npropdef.mpropdef == null then return # Skip broken method
187 var sig = npropdef.mpropdef.msignature
188 if sig == null then continue # Skip broken method
189
190 for param in sig.mparameters do
191 var ret_type = param.mtype
192 var mparameter = new MParameter(param.name, ret_type, false, ret_type isa MNullableType)
193 mparameters.add(mparameter)
194 end
195 initializers.add(npropdef.mpropdef.mproperty)
196 npropdef.mpropdef.mproperty.is_autoinit = true
197 end
198 if npropdef isa AAttrPropdef then
199 var mreadpropdef = npropdef.mreadpropdef
200 if mreadpropdef == null or mreadpropdef.msignature == null then return # Skip broken attribute
201 if npropdef.noinit then continue # Skip noinit attribute
202 var atlateinit = npropdef.get_single_annotation("lateinit", self)
203 if atlateinit != null then
204 # For lateinit attributes, call the reader to force
205 # the lazy initialization of the attribute.
206 initializers.add(mreadpropdef.mproperty)
207 mreadpropdef.mproperty.is_autoinit = true
208 continue
209 end
210 if npropdef.has_value then continue
211 var paramname = mreadpropdef.mproperty.name
212 var ret_type = mreadpropdef.msignature.return_mtype
213 if ret_type == null then return
214 var mparameter = new MParameter(paramname, ret_type, false, ret_type isa MNullableType)
215 mparameters.add(mparameter)
216 var msetter = npropdef.mwritepropdef
217 if msetter == null then
218 # No setter, it is a readonly attribute, so just add it
219 initializers.add(npropdef.mpropdef.mproperty)
220 npropdef.mpropdef.mproperty.is_autoinit = true
221 else
222 # Add the setter to the list
223 initializers.add(msetter.mproperty)
224 msetter.mproperty.is_autoinit = true
225 end
226 end
227 end
228
229 if the_root_init_mmethod == null then return
230
231 # Look for most-specific new-stype init definitions
232 var spropdefs = the_root_init_mmethod.lookup_super_definitions(mclassdef.mmodule, mclassdef.bound_mtype)
233 if spropdefs.is_empty then
234 toolcontext.error(nclassdef.location, "Error: `{mclassdef}` does not specialize `{the_root_init_mmethod.intro_mclassdef}`. Possible duplication of the root class `Object`?")
235 return
236 end
237
238 # Look at the autoinit class-annotation
239 var autoinit = nclassdef.get_single_annotation("autoinit", self)
240 var noautoinit = nclassdef.get_single_annotation("noautoinit", self)
241 if autoinit != null then
242 # Just throws the collected initializers
243 mparameters.clear
244 initializers.clear
245
246 if noautoinit != null then
247 error(autoinit, "Error: `autoinit` and `noautoinit` are incompatible.")
248 end
249
250 if autoinit.n_args.is_empty then
251 error(autoinit, "Syntax Error: `autoinit` expects method identifiers, use `noautoinit` to clear all autoinits.")
252 end
253
254 # Get and check each argument
255 for narg in autoinit.n_args do
256 var id = narg.as_id
257 if id == null then
258 error(narg, "Syntax Error: `autoinit` expects method identifiers.")
259 return
260 end
261
262 # Search the property.
263 # To avoid bad surprises, try to get the setter first.
264 var p = try_get_mproperty_by_name(narg, mclassdef, id + "=")
265 if p == null then
266 p = try_get_mproperty_by_name(narg, mclassdef, id)
267 end
268 if p == null then
269 error(narg, "Error: unknown method `{id}`")
270 return
271 end
272 if not p.is_autoinit then
273 error(narg, "Error: `{p}` is not an autoinit method")
274 return
275 end
276
277 # Register the initializer and the parameters
278 initializers.add(p)
279 var pd = p.intro
280 if pd isa MMethodDef then
281 # Get the signature resolved for the current receiver
282 var sig = pd.msignature.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mclassdef.mmodule, false)
283 # Because the last parameter of setters is never default, try to default them for the autoinit.
284 for param in sig.mparameters do
285 if not param.is_default and param.mtype isa MNullableType then
286 param = new MParameter(param.name, param.mtype, param.is_vararg, true)
287 end
288 mparameters.add(param)
289 end
290 else
291 # TODO attributes?
292 abort
293 end
294 end
295 else
296 # Search the longest-one and checks for conflict
297 var longest = spropdefs.first
298 if spropdefs.length > 1 then
299 # part 1. find the longest list
300 for spd in spropdefs do
301 if spd.initializers.length > longest.initializers.length then longest = spd
302 end
303 # part 2. compare
304 # Check for conflict in the order of initializers
305 # Each initializer list must me a prefix of the longest list
306 # If `noautoinit` is set, just ignore conflicts
307 if noautoinit == null then for spd in spropdefs do
308 var i = 0
309 for p in spd.initializers do
310 if p != longest.initializers[i] then
311 self.error(nclassdef, "Error: conflict for inherited inits {spd}({spd.initializers.join(", ")}) and {longest}({longest.initializers.join(", ")})")
312 # TODO: invalidate the initializer to avoid more errors
313 return
314 end
315 i += 1
316 end
317 end
318 end
319
320 if noautoinit != null then
321 # If there is local or inherited initializers, then complain.
322 if initializers.is_empty and longest.initializers.is_empty then
323 warning(noautoinit, "useless-noautoinit", "Warning: the list of autoinit is already empty.")
324 end
325 # Just clear initializers
326 mparameters.clear
327 initializers.clear
328 else
329 # Can we just inherit?
330 if spropdefs.length == 1 and mparameters.is_empty and defined_init == null then
331 self.toolcontext.info("{mclassdef} inherits the basic constructor {longest}", 3)
332 mclassdef.mclass.root_init = longest
333 return
334 end
335
336 # Combine the inherited list to what is collected
337 if longest.initializers.length > 0 then
338 mparameters.prepend longest.new_msignature.mparameters
339 initializers.prepend longest.initializers
340 end
341 end
342 end
343
344 # If we already have a basic init definition, then setup its initializers
345 if defined_init != null then
346 defined_init.initializers.add_all(initializers)
347 var msignature = new MSignature(mparameters, null)
348 defined_init.new_msignature = msignature
349 self.toolcontext.info("{mclassdef} extends its basic constructor signature to {defined_init}{msignature}", 3)
350 mclassdef.mclass.root_init = defined_init
351 return
352 end
353
354 # Else create the local implicit basic init definition
355 var mprop = the_root_init_mmethod.as(not null)
356 var mpropdef = new MMethodDef(mclassdef, mprop, nclassdef.location)
357 mpropdef.has_supercall = true
358 mpropdef.initializers.add_all(initializers)
359 var msignature = new MSignature(mparameters, null)
360 mpropdef.new_msignature = msignature
361 mpropdef.msignature = new MSignature(new Array[MParameter], null) # always an empty real signature
362 nclassdef.mfree_init = mpropdef
363 self.toolcontext.info("{mclassdef} gets a free constructor for attributes {mpropdef}{msignature}", 3)
364 mclassdef.mclass.root_init = mpropdef
365 end
366
367 # Check the visibility of `mtype` as an element of the signature of `mpropdef`.
368 fun check_visibility(node: ANode, mtype: MType, mpropdef: MPropDef)
369 do
370 var mmodule = mpropdef.mclassdef.mmodule
371 var mproperty = mpropdef.mproperty
372
373 # Extract visibility information of the main part of `mtype`
374 # It is a case-by case
375 var vis_type: nullable MVisibility = null # The own visibility of the type
376 var mmodule_type: nullable MModule = null # The original module of the type
377 mtype = mtype.undecorate
378 if mtype isa MClassType then
379 vis_type = mtype.mclass.visibility
380 mmodule_type = mtype.mclass.intro.mmodule
381 else if mtype isa MVirtualType then
382 vis_type = mtype.mproperty.visibility
383 mmodule_type = mtype.mproperty.intro_mclassdef.mmodule
384 else if mtype isa MParameterType then
385 # nothing, always visible
386 else if mtype isa MNullType then
387 # nothing to do.
388 else
389 node.debug "Unexpected type {mtype}"
390 abort
391 end
392
393 if vis_type != null then
394 assert mmodule_type != null
395 var vis_module_type = mmodule.visibility_for(mmodule_type) # the visibility of the original module
396 if mproperty.visibility > vis_type then
397 error(node, "Error: the {mproperty.visibility} property `{mproperty}` cannot contain the {vis_type} type `{mtype}`.")
398 return
399 else if mproperty.visibility > vis_module_type then
400 error(node, "Error: the {mproperty.visibility} property `{mproperty}` cannot contain the type `{mtype}` from the {vis_module_type} module `{mmodule_type}`.")
401 return
402 end
403 end
404
405 # No error, try to go deeper in generic types
406 if node isa AType then
407 for a in node.n_types do
408 var t = a.mtype
409 if t == null then continue # Error, thus skipped
410 check_visibility(a, t, mpropdef)
411 end
412 else if mtype isa MGenericType then
413 for t in mtype.arguments do check_visibility(node, t, mpropdef)
414 end
415 end
416
417 # Detect circularity errors for virtual types.
418 fun check_virtual_types_circularity(node: ANode, mproperty: MVirtualTypeProp, recv: MType, mmodule: MModule): Bool
419 do
420 # Check circularity
421 # Slow case: progress on each resolution until we visit all without getting a loop
422
423 # The graph used to detect loops
424 var mtype = mproperty.mvirtualtype
425 var poset = new POSet[MType]
426
427 # The work-list of types to resolve
428 var todo = new List[MType]
429 todo.add mtype
430
431 while not todo.is_empty do
432 # The visited type
433 var t = todo.pop
434
435 if not t.need_anchor then continue
436
437 # Get the types derived of `t` (subtypes and bounds)
438 var nexts
439 if t isa MNullableType then
440 nexts = [t.mtype]
441 else if t isa MGenericType then
442 nexts = t.arguments
443 else if t isa MVirtualType then
444 var vt = t.mproperty
445 # Because `vt` is possibly unchecked, we have to do the bound-lookup manually
446 var defs = vt.lookup_definitions(mmodule, recv)
447 # TODO something to manage correctly bound conflicts
448 assert not defs.is_empty
449 nexts = new Array[MType]
450 for d in defs do
451 var next = defs.first.bound
452 if next == null then return false
453 nexts.add next
454 end
455 else if t isa MClassType then
456 # Basic type, nothing to to
457 continue
458 else if t isa MParameterType then
459 # Parameter types cannot depend on virtual types, so nothing to do
460 continue
461 else
462 abort
463 end
464
465 # For each one
466 for next in nexts do
467 if poset.has_edge(next, t) then
468 if mtype == next then
469 error(node, "Error: circularity of virtual type definition: {next} <-> {t}.")
470 else
471 error(node, "Error: circularity of virtual type definition: {mtype} -> {next} <-> {t}.")
472 end
473 return false
474 else
475 poset.add_edge(t, next)
476 todo.add next
477 end
478 end
479 end
480 return true
481 end
482 end
483
484 redef class MPropDef
485 # Does the MPropDef contains a call to super or a call of a super-constructor?
486 # Subsequent phases of the frontend (esp. typing) set it if required
487 var has_supercall: Bool = false is writable
488 end
489
490 redef class AClassdef
491 # Marker used in `ModelBuilder::build_properties`
492 private var build_properties_is_done = false
493
494 # The free init (implicitely constructed by the class if required)
495 var mfree_init: nullable MMethodDef = null
496 end
497
498 redef class MClass
499 # The base init of the class.
500 # Used to get the common new_msignature and initializers
501 #
502 # TODO: Where to put this information is not clear because unlike other
503 # informations, the initialisers are stable in a same class.
504 var root_init: nullable MMethodDef = null
505 end
506
507 redef class MClassDef
508 # What is the `APropdef` associated to a `MProperty`?
509 # Used to check multiple definition of a property.
510 var mprop2npropdef: Map[MProperty, APropdef] = new HashMap[MProperty, APropdef]
511
512 # Build the virtual type `SELF` only for introduction `MClassDef`
513 fun build_self_type(modelbuilder: ModelBuilder, nclassdef: AClassdef)
514 do
515 if not is_intro then return
516
517 var name = "SELF"
518 var mprop = modelbuilder.try_get_mproperty_by_name(nclassdef, self, name)
519
520 # If SELF type is declared nowherer?
521 if mprop == null then return
522
523 # SELF is not a virtual type? it is weird but we ignore it
524 if not mprop isa MVirtualTypeProp then return
525
526 # Is this the intro of SELF in the library?
527 var intro = mprop.intro
528 var intro_mclassdef = intro.mclassdef
529 if intro_mclassdef == self then
530 var nintro = modelbuilder.mpropdef2npropdef[intro]
531
532 # SELF must be declared in Object, otherwise this will create conflicts
533 if intro_mclassdef.mclass.name != "Object" then
534 modelbuilder.error(nintro, "Error: the virtual type `SELF` must be declared in `Object`.")
535 end
536
537 # SELF must be public
538 if mprop.visibility != public_visibility then
539 modelbuilder.error(nintro, "Error: the virtual type `SELF` must be public.")
540 end
541
542 # SELF must not be fixed
543 if intro.is_fixed then
544 modelbuilder.error(nintro, "Error: the virtual type `SELF` cannot be fixed.")
545 end
546
547 return
548 end
549
550 # This class introduction inherits a SELF
551 # We insert an artificial property to update it
552 var mpropdef = new MVirtualTypeDef(self, mprop, self.location)
553 mpropdef.bound = mclass.mclass_type
554 end
555 end
556
557 redef class APropdef
558 # The associated main model entity
559 type MPROPDEF: MPropDef
560
561 # The associated propdef once build by a `ModelBuilder`
562 var mpropdef: nullable MPROPDEF is writable
563
564 private fun build_property(modelbuilder: ModelBuilder, mclassdef: MClassDef) do end
565 private fun build_signature(modelbuilder: ModelBuilder) do end
566 private fun check_signature(modelbuilder: ModelBuilder) do end
567 private fun new_property_visibility(modelbuilder: ModelBuilder, mclassdef: MClassDef, nvisibility: nullable AVisibility): MVisibility
568 do
569 var mvisibility = public_visibility
570 if nvisibility != null then
571 mvisibility = nvisibility.mvisibility
572 if mvisibility == intrude_visibility then
573 modelbuilder.error(nvisibility, "Error: `intrude` is not a legal visibility for properties.")
574 mvisibility = public_visibility
575 end
576 end
577 if mclassdef.mclass.visibility == private_visibility then
578 if mvisibility == protected_visibility then
579 assert nvisibility != null
580 modelbuilder.error(nvisibility, "Error: `private` is the only legal visibility for properties in a private class.")
581 else if mvisibility == private_visibility then
582 assert nvisibility != null
583 modelbuilder.advice(nvisibility, "useless-visibility", "Warning: `private` is superfluous since the only legal visibility for properties in a private class is private.")
584 end
585 mvisibility = private_visibility
586 end
587 return mvisibility
588 end
589
590 private fun set_doc(mpropdef: MPropDef, modelbuilder: ModelBuilder)
591 do
592 var ndoc = self.n_doc
593 if ndoc != null then
594 var mdoc = ndoc.to_mdoc
595 mpropdef.mdoc = mdoc
596 mdoc.original_mentity = mpropdef
597 else if mpropdef.is_intro and mpropdef.mproperty.visibility >= protected_visibility then
598 modelbuilder.advice(self, "missing-doc", "Documentation warning: Undocumented property `{mpropdef.mproperty}`")
599 end
600
601 var at_deprecated = get_single_annotation("deprecated", modelbuilder)
602 if at_deprecated != null then
603 if not mpropdef.is_intro then
604 modelbuilder.error(self, "Error: method redefinition cannot be deprecated.")
605 else
606 var info = new MDeprecationInfo
607 ndoc = at_deprecated.n_doc
608 if ndoc != null then info.mdoc = ndoc.to_mdoc
609 mpropdef.mproperty.deprecation = info
610 end
611 end
612 end
613
614 private fun check_redef_property_visibility(modelbuilder: ModelBuilder, nvisibility: nullable AVisibility, mprop: MProperty)
615 do
616 if nvisibility == null then return
617 var mvisibility = nvisibility.mvisibility
618 if mvisibility != mprop.visibility and mvisibility != public_visibility then
619 modelbuilder.error(nvisibility, "Error: redefinition changed the visibility from `{mprop.visibility}` to `{mvisibility}`.")
620 end
621 end
622
623 private fun check_redef_keyword(modelbuilder: ModelBuilder, mclassdef: MClassDef, kwredef: nullable Token, need_redef: Bool, mprop: MProperty): Bool
624 do
625 if mclassdef.mprop2npropdef.has_key(mprop) then
626 modelbuilder.error(self, "Error: a property `{mprop}` is already defined in class `{mclassdef.mclass}` at line {mclassdef.mprop2npropdef[mprop].location.line_start}.")
627 return false
628 end
629 if mprop isa MMethod and mprop.is_root_init then return true
630 if kwredef == null then
631 if need_redef then
632 modelbuilder.error(self, "Redef Error: `{mclassdef.mclass}::{mprop.name}` is an inherited property. To redefine it, add the `redef` keyword.")
633 return false
634 end
635
636 # Check for full-name conflicts in the project.
637 # A public property should have a unique qualified name `project::class::prop`.
638 if mprop.intro_mclassdef.mmodule.mgroup != null and mprop.visibility >= protected_visibility then
639 var others = modelbuilder.model.get_mproperties_by_name(mprop.name)
640 if others != null then for other in others do
641 if other != mprop and other.intro_mclassdef.mmodule.mgroup != null and other.intro_mclassdef.mmodule.mgroup.mproject == mprop.intro_mclassdef.mmodule.mgroup.mproject and other.intro_mclassdef.mclass.name == mprop.intro_mclassdef.mclass.name and other.visibility >= protected_visibility then
642 modelbuilder.advice(self, "full-name-conflict", "Warning: A property named `{other.full_name}` is already defined in module `{other.intro_mclassdef.mmodule}` for the class `{other.intro_mclassdef.mclass.name}`.")
643 break
644 end
645 end
646 end
647 else
648 if not need_redef then
649 modelbuilder.error(self, "Error: no property `{mclassdef.mclass}::{mprop.name}` is inherited. Remove the `redef` keyword to define a new property.")
650 return false
651 end
652 end
653 return true
654 end
655
656 # Checks for useless type in redef signatures.
657 private fun check_repeated_types(modelbuilder: ModelBuilder) do end
658 end
659
660 redef class ASignature
661 # Is the model builder has correctly visited the signature
662 var is_visited = false
663 # Names of parameters from the AST
664 # REQUIRE: is_visited
665 var param_names = new Array[String]
666 # Types of parameters from the AST
667 # REQUIRE: is_visited
668 var param_types = new Array[MType]
669 # Rank of the vararg (of -1 if none)
670 # REQUIRE: is_visited
671 var vararg_rank: Int = -1
672 # Return type
673 var ret_type: nullable MType = null
674
675 # Visit and fill information about a signature
676 private fun visit_signature(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
677 do
678 var mmodule = mclassdef.mmodule
679 var param_names = self.param_names
680 var param_types = self.param_types
681 for np in self.n_params do
682 param_names.add(np.n_id.text)
683 var ntype = np.n_type
684 if ntype != null then
685 var mtype = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
686 if mtype == null then return false # Skip error
687 for i in [0..param_names.length-param_types.length[ do
688 param_types.add(mtype)
689 end
690 if np.n_dotdotdot != null then
691 if self.vararg_rank != -1 then
692 modelbuilder.error(np, "Error: `{param_names[self.vararg_rank]}` is already a vararg")
693 return false
694 else
695 self.vararg_rank = param_names.length - 1
696 end
697 end
698 end
699 end
700 var ntype = self.n_type
701 if ntype != null then
702 self.ret_type = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
703 if self.ret_type == null then return false # Skip error
704 end
705
706 self.is_visited = true
707 return true
708 end
709
710 private fun check_signature(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
711 do
712 var res = true
713 for np in self.n_params do
714 var ntype = np.n_type
715 if ntype != null then
716 if modelbuilder.resolve_mtype(mclassdef.mmodule, mclassdef, ntype) == null then
717 res = false
718 end
719 end
720 end
721 var ntype = self.n_type
722 if ntype != null then
723 if modelbuilder.resolve_mtype(mclassdef.mmodule, mclassdef, ntype) == null then
724 res = false
725 end
726 end
727 return res
728 end
729 end
730
731 redef class AParam
732 # The associated mparameter if any
733 var mparameter: nullable MParameter = null
734 end
735
736 redef class AMethPropdef
737 redef type MPROPDEF: MMethodDef
738
739 # Is the method annotated `autoinit`?
740 var is_autoinit = false
741
742 # Can self be used as a root init?
743 private fun look_like_a_root_init(modelbuilder: ModelBuilder, mclassdef: MClassDef): Bool
744 do
745 # Need the `init` keyword
746 if n_kwinit == null then return false
747 # Need to by anonymous
748 if self.n_methid != null then return false
749 # No annotation on itself
750 if get_single_annotation("old_style_init", modelbuilder) != null then return false
751 # Nor on its module
752 var amod = self.parent.parent.as(AModule)
753 var amoddecl = amod.n_moduledecl
754 if amoddecl != null then
755 var old = amoddecl.get_single_annotation("old_style_init", modelbuilder)
756 if old != null then return false
757 end
758 # No parameters
759 if self.n_signature.n_params.length > 0 then
760 modelbuilder.advice(self, "old-init", "Warning: init with signature in {mclassdef}")
761 return false
762 end
763 # Cannot be private or something
764 if not self.n_visibility isa APublicVisibility then
765 modelbuilder.advice(self, "old-init", "Warning: non-public init in {mclassdef}")
766 return false
767 end
768
769 return true
770 end
771
772 redef fun build_property(modelbuilder, mclassdef)
773 do
774 var n_kwinit = n_kwinit
775 var n_kwnew = n_kwnew
776 var is_init = n_kwinit != null or n_kwnew != null
777 var name: String
778 var amethodid = self.n_methid
779 var name_node: ANode
780 if amethodid == null then
781 if not is_init then
782 name = "main"
783 name_node = self
784 else if n_kwinit != null then
785 name = "init"
786 name_node = n_kwinit
787 else if n_kwnew != null then
788 name = "new"
789 name_node = n_kwnew
790 else
791 abort
792 end
793 else if amethodid isa AIdMethid then
794 name = amethodid.n_id.text
795 name_node = amethodid
796 else
797 # operator, bracket or assign
798 name = amethodid.collect_text
799 name_node = amethodid
800
801 var arity = self.n_signature.n_params.length
802 if name == "+" and arity == 0 then
803 name = "unary +"
804 else if name == "-" and arity == 0 then
805 name = "unary -"
806 else if name == "~" and arity == 0 then
807 name = "unary ~"
808 else
809 if amethodid.is_binary and arity != 1 then
810 modelbuilder.error(self.n_signature, "Syntax Error: binary operator `{name}` requires exactly one parameter; got {arity}.")
811 else if amethodid.min_arity > arity then
812 modelbuilder.error(self.n_signature, "Syntax Error: `{name}` requires at least {amethodid.min_arity} parameter(s); got {arity}.")
813 end
814 end
815 end
816
817 var look_like_a_root_init = look_like_a_root_init(modelbuilder, mclassdef)
818 var mprop: nullable MMethod = null
819 if not is_init or n_kwredef != null then mprop = modelbuilder.try_get_mproperty_by_name(name_node, mclassdef, name).as(nullable MMethod)
820 if mprop == null and look_like_a_root_init then
821 mprop = modelbuilder.the_root_init_mmethod
822 var nb = n_block
823 if nb isa ABlockExpr and nb.n_expr.is_empty and n_doc == null then
824 modelbuilder.advice(self, "useless-init", "Warning: useless empty init in {mclassdef}")
825 end
826 end
827 if mprop == null then
828 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
829 mprop = new MMethod(mclassdef, name, mvisibility)
830 if look_like_a_root_init and modelbuilder.the_root_init_mmethod == null then
831 modelbuilder.the_root_init_mmethod = mprop
832 mprop.is_root_init = true
833 end
834 mprop.is_init = is_init
835 mprop.is_new = n_kwnew != null
836 if mprop.is_new then mclassdef.mclass.has_new_factory = true
837 if name == "sys" then mprop.is_toplevel = true # special case for sys allowed in `new` factories
838 self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mprop)
839 else
840 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, not self isa AMainMethPropdef, mprop) then return
841 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
842 end
843
844 # Check name conflicts in the local class for constructors.
845 if is_init then
846 for p, n in mclassdef.mprop2npropdef do
847 if p != mprop and p isa MMethod and p.name == name then
848 check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, p)
849 break
850 end
851 end
852 end
853
854 mclassdef.mprop2npropdef[mprop] = self
855
856 var mpropdef = new MMethodDef(mclassdef, mprop, self.location)
857
858 set_doc(mpropdef, modelbuilder)
859
860 self.mpropdef = mpropdef
861 modelbuilder.mpropdef2npropdef[mpropdef] = self
862 if mpropdef.is_intro then
863 modelbuilder.toolcontext.info("{mpropdef} introduces new method {mprop.full_name}", 4)
864 else
865 modelbuilder.toolcontext.info("{mpropdef} redefines method {mprop.full_name}", 4)
866 end
867 end
868
869 redef fun build_signature(modelbuilder)
870 do
871 var mpropdef = self.mpropdef
872 if mpropdef == null then return # Error thus skiped
873 var mclassdef = mpropdef.mclassdef
874 var mmodule = mclassdef.mmodule
875 var nsig = self.n_signature
876
877 if mpropdef.mproperty.is_root_init and not mclassdef.is_intro then
878 var root_init = mclassdef.mclass.root_init
879 if root_init != null then
880 # Inherit the initializers by refinement
881 mpropdef.new_msignature = root_init.new_msignature
882 assert mpropdef.initializers.is_empty
883 mpropdef.initializers.add_all root_init.initializers
884 end
885 end
886
887 var accept_special_last_parameter = self.n_methid == null or self.n_methid.accept_special_last_parameter
888 var return_is_mandatory = self.n_methid != null and self.n_methid.return_is_mandatory
889
890 # Retrieve info from the signature AST
891 var param_names = new Array[String] # Names of parameters from the AST
892 var param_types = new Array[MType] # Types of parameters from the AST
893 var vararg_rank = -1
894 var ret_type: nullable MType = null # Return type from the AST
895 if nsig != null then
896 if not nsig.visit_signature(modelbuilder, mclassdef) then return
897 param_names = nsig.param_names
898 param_types = nsig.param_types
899 vararg_rank = nsig.vararg_rank
900 ret_type = nsig.ret_type
901 end
902
903 # Look for some signature to inherit
904 # FIXME: do not inherit from the intro, but from the most specific
905 var msignature: nullable MSignature = null
906 if not mpropdef.is_intro then
907 msignature = mpropdef.mproperty.intro.msignature
908 if msignature == null then return # Skip error
909
910 # The local signature is adapted to use the local formal types, if any.
911 msignature = msignature.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
912
913 # Check inherited signature arity
914 if param_names.length != msignature.arity then
915 var node: ANode
916 if nsig != null then node = nsig else node = self
917 modelbuilder.error(node, "Redef Error: expected {msignature.arity} parameter(s) for `{mpropdef.mproperty.name}{msignature}`; got {param_names.length}. See introduction at `{mpropdef.mproperty.full_name}`.")
918 return
919 end
920 else if mpropdef.mproperty.is_init and not mpropdef.mproperty.is_new then
921 # FIXME UGLY: inherit signature from a super-constructor
922 for msupertype in mclassdef.supertypes do
923 msupertype = msupertype.anchor_to(mmodule, mclassdef.bound_mtype)
924 var candidate = modelbuilder.try_get_mproperty_by_name2(self, mmodule, msupertype, mpropdef.mproperty.name)
925 if candidate != null then
926 if msignature == null then
927 msignature = candidate.intro.as(MMethodDef).msignature
928 end
929 end
930 end
931 end
932
933
934 # Inherit the signature
935 if msignature != null and param_names.length != param_types.length and param_names.length == msignature.arity and param_types.length == 0 then
936 # Parameters are untyped, thus inherit them
937 param_types = new Array[MType]
938 for mparameter in msignature.mparameters do
939 param_types.add(mparameter.mtype)
940 end
941 vararg_rank = msignature.vararg_rank
942 end
943 if msignature != null and ret_type == null then
944 ret_type = msignature.return_mtype
945 end
946
947 if param_names.length != param_types.length then
948 # Some parameters are typed, other parameters are not typed.
949 modelbuilder.error(nsig.n_params[param_types.length], "Error: untyped parameter `{param_names[param_types.length]}'.")
950 return
951 end
952
953 var mparameters = new Array[MParameter]
954 for i in [0..param_names.length[ do
955 var is_default = false
956 if vararg_rank == -1 and param_types[i] isa MNullableType then
957 if i < param_names.length-1 or accept_special_last_parameter then
958 is_default = true
959 end
960 end
961 var mparameter = new MParameter(param_names[i], param_types[i], i == vararg_rank, is_default)
962 if nsig != null then nsig.n_params[i].mparameter = mparameter
963 mparameters.add(mparameter)
964 end
965
966 # In `new`-factories, the return type is by default the classtype.
967 if ret_type == null and mpropdef.mproperty.is_new then ret_type = mclassdef.mclass.mclass_type
968
969 # Special checks for operator methods
970 if not accept_special_last_parameter and mparameters.not_empty and mparameters.last.is_vararg then
971 modelbuilder.error(self.n_signature.n_params.last, "Error: illegal variadic parameter `{mparameters.last}` for `{mpropdef.mproperty.name}`.")
972 end
973 if ret_type == null and return_is_mandatory then
974 modelbuilder.error(self.n_methid, "Error: mandatory return type for `{mpropdef.mproperty.name}`.")
975 end
976
977 msignature = new MSignature(mparameters, ret_type)
978 mpropdef.msignature = msignature
979 mpropdef.is_abstract = self.get_single_annotation("abstract", modelbuilder) != null
980 mpropdef.is_intern = self.get_single_annotation("intern", modelbuilder) != null
981 mpropdef.is_extern = self.n_extern_code_block != null or self.get_single_annotation("extern", modelbuilder) != null
982
983 # Check annotations
984 var at = self.get_single_annotation("lazy", modelbuilder)
985 if at != null then modelbuilder.error(at, "Syntax Error: `lazy` must be used on attributes.")
986
987 var atautoinit = self.get_single_annotation("autoinit", modelbuilder)
988 if atautoinit != null then
989 if not mpropdef.is_intro then
990 modelbuilder.error(atautoinit, "Error: `autoinit` cannot be set on redefinitions.")
991 else
992 self.is_autoinit = true
993 end
994 end
995 end
996
997 redef fun check_signature(modelbuilder)
998 do
999 var mpropdef = self.mpropdef
1000 if mpropdef == null then return # Error thus skiped
1001 var mclassdef = mpropdef.mclassdef
1002 var mmodule = mclassdef.mmodule
1003 var nsig = self.n_signature
1004 var mysignature = self.mpropdef.msignature
1005 if mysignature == null then return # Error thus skiped
1006
1007 # Check
1008 if nsig != null then
1009 if not nsig.check_signature(modelbuilder, mclassdef) then
1010 self.mpropdef.msignature = null # invalidate
1011 return # Forward error
1012 end
1013 end
1014
1015 # Lookup for signature in the precursor
1016 # FIXME all precursors should be considered
1017 if not mpropdef.is_intro then
1018 var msignature = mpropdef.mproperty.intro.msignature
1019 if msignature == null then return
1020
1021 var precursor_ret_type = msignature.return_mtype
1022 var ret_type = mysignature.return_mtype
1023 if ret_type != null and precursor_ret_type == null then
1024 modelbuilder.error(nsig.n_type.as(not null), "Redef Error: `{mpropdef.mproperty}` is a procedure, not a function.")
1025 self.mpropdef.msignature = null
1026 return
1027 end
1028
1029 if mysignature.arity > 0 then
1030 # Check parameters types
1031 for i in [0..mysignature.arity[ do
1032 var myt = mysignature.mparameters[i].mtype
1033 var prt = msignature.mparameters[i].mtype
1034 var node = nsig.n_params[i]
1035 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
1036 modelbuilder.error(node, "Redef Error: expected `{prt}` for parameter `{mysignature.mparameters[i].name}'; got `{myt}`.")
1037 self.mpropdef.msignature = null
1038 end
1039 end
1040 end
1041 if precursor_ret_type != null then
1042 var node: nullable ANode = null
1043 if nsig != null then node = nsig.n_type
1044 if node == null then node = self
1045 if ret_type == null then
1046 # Inherit the return type
1047 ret_type = precursor_ret_type
1048 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
1049 modelbuilder.error(node, "Redef Error: expected `{precursor_ret_type}` for return type; got `{ret_type}`.")
1050 self.mpropdef.msignature = null
1051 end
1052 end
1053 end
1054
1055 if mysignature.arity > 0 then
1056 # Check parameters visibility
1057 for i in [0..mysignature.arity[ do
1058 var nt = nsig.n_params[i].n_type
1059 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
1060 end
1061 var nt = nsig.n_type
1062 if nt != null then modelbuilder.check_visibility(nt, nt.mtype.as(not null), mpropdef)
1063 end
1064 check_repeated_types(modelbuilder)
1065 end
1066
1067 # For parameters, type is always useless in a redef.
1068 # For return type, type is useless if not covariant with introduction.
1069 redef fun check_repeated_types(modelbuilder) do
1070 if mpropdef.is_intro or n_signature == null then return
1071 # check params
1072 for param in n_signature.n_params do
1073 if param.n_type != null then
1074 modelbuilder.advice(param.n_type, "useless-signature", "Warning: useless type repetition on parameter `{param.n_id.text}` for redefined method `{mpropdef.name}`")
1075 end
1076 end
1077 # get intro
1078 var intro = mpropdef.mproperty.intro
1079 var n_intro = modelbuilder.mpropdef2npropdef.get_or_null(intro)
1080 if n_intro == null or not n_intro isa AMethPropdef then return
1081 # check return type
1082 var ret_type = n_signature.ret_type
1083 if ret_type != null and ret_type == n_intro.n_signature.ret_type then
1084 modelbuilder.advice(n_signature.n_type, "useless-signature", "Warning: useless return type repetition for redefined method `{mpropdef.name}`")
1085 end
1086 end
1087 end
1088
1089 redef class AMethid
1090 # Is a return required?
1091 #
1092 # * True for operators and brackets.
1093 # * False for id and assignment.
1094 fun return_is_mandatory: Bool do return true
1095
1096 # Can the last parameter be special like a vararg?
1097 #
1098 # * False for operators: the last one is in fact the only one.
1099 # * False for assignments: it is the right part of the assignment.
1100 # * True for ids and brackets.
1101 fun accept_special_last_parameter: Bool do return false
1102
1103 # The minimum required number of parameters.
1104 #
1105 # * 1 for binary operators
1106 # * 1 for brackets
1107 # * 1 for assignments
1108 # * 2 for bracket assignments
1109 # * 0 for ids
1110 fun min_arity: Int do return 1
1111
1112 # Is the `self` a binary operator?
1113 fun is_binary: Bool do return true
1114 end
1115
1116 redef class AIdMethid
1117 redef fun return_is_mandatory do return false
1118 redef fun accept_special_last_parameter do return true
1119 redef fun min_arity do return 0
1120 redef fun is_binary do return false
1121 end
1122
1123 redef class ABraMethid
1124 redef fun accept_special_last_parameter do return true
1125 redef fun is_binary do return false
1126 end
1127
1128 redef class ABraassignMethid
1129 redef fun return_is_mandatory do return false
1130 redef fun min_arity do return 2
1131 redef fun is_binary do return false
1132 end
1133
1134 redef class AAssignMethid
1135 redef fun return_is_mandatory do return false
1136 redef fun is_binary do return false
1137 end
1138
1139 redef class AAttrPropdef
1140 redef type MPROPDEF: MAttributeDef
1141
1142 # The static type of the property (declared, inferred or inherited)
1143 # This attribute is also used to check if the property was analyzed and is valid.
1144 var mtype: nullable MType
1145
1146 # Is the node tagged `noinit`?
1147 var noinit = false
1148
1149 # Is the node tagged lazy?
1150 var is_lazy = false
1151
1152 # Has the node a default value?
1153 # Could be through `n_expr` or `n_block`
1154 var has_value = false
1155
1156 # The guard associated to a lazy attribute.
1157 # Because some engines does not have a working `isset`,
1158 # this additional attribute is used to guard the lazy initialization.
1159 # TODO: to remove once isset is correctly implemented
1160 var mlazypropdef: nullable MAttributeDef
1161
1162 # The associated getter (read accessor) if any
1163 var mreadpropdef: nullable MMethodDef is writable
1164 # The associated setter (write accessor) if any
1165 var mwritepropdef: nullable MMethodDef is writable
1166
1167 redef fun build_property(modelbuilder, mclassdef)
1168 do
1169 var mclass = mclassdef.mclass
1170 var nid2 = n_id2
1171 var name = nid2.text
1172
1173 var atabstract = self.get_single_annotation("abstract", modelbuilder)
1174 if atabstract == null then
1175 if not mclass.kind.need_init then
1176 modelbuilder.error(self, "Error: attempt to define attribute `{name}` in the {mclass.kind} `{mclass}`.")
1177 end
1178
1179 var mprop = new MAttribute(mclassdef, "_" + name, private_visibility)
1180 var mpropdef = new MAttributeDef(mclassdef, mprop, self.location)
1181 self.mpropdef = mpropdef
1182 modelbuilder.mpropdef2npropdef[mpropdef] = self
1183 end
1184
1185 var readname = name
1186 var mreadprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, readname).as(nullable MMethod)
1187 if mreadprop == null then
1188 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
1189 mreadprop = new MMethod(mclassdef, readname, mvisibility)
1190 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, false, mreadprop) then return
1191 else
1192 if not self.check_redef_keyword(modelbuilder, mclassdef, n_kwredef, true, mreadprop) then return
1193 check_redef_property_visibility(modelbuilder, self.n_visibility, mreadprop)
1194 end
1195 mclassdef.mprop2npropdef[mreadprop] = self
1196
1197 var mreadpropdef = new MMethodDef(mclassdef, mreadprop, self.location)
1198 self.mreadpropdef = mreadpropdef
1199 modelbuilder.mpropdef2npropdef[mreadpropdef] = self
1200 set_doc(mreadpropdef, modelbuilder)
1201 if mpropdef != null then mpropdef.mdoc = mreadpropdef.mdoc
1202 if atabstract != null then mreadpropdef.is_abstract = true
1203
1204 has_value = n_expr != null or n_block != null
1205
1206 if atabstract != null and has_value then
1207 modelbuilder.error(atabstract, "Error: `abstract` attributes cannot have an initial value.")
1208 return
1209 end
1210
1211 var atnoinit = self.get_single_annotation("noinit", modelbuilder)
1212 if atnoinit == null then atnoinit = self.get_single_annotation("noautoinit", modelbuilder)
1213 if atnoinit != null then
1214 noinit = true
1215 if has_value then
1216 modelbuilder.error(atnoinit, "Error: `noautoinit` attributes cannot have an initial value.")
1217 return
1218 end
1219 if atabstract != null then
1220 modelbuilder.error(atnoinit, "Error: `noautoinit` attributes cannot be abstract.")
1221 return
1222 end
1223 end
1224
1225 var atlazy = self.get_single_annotation("lazy", modelbuilder)
1226 var atlateinit = self.get_single_annotation("lateinit", modelbuilder)
1227 if atlazy != null or atlateinit != null then
1228 if atlazy != null and atlateinit != null then
1229 modelbuilder.error(atlazy, "Error: `lazy` incompatible with `lateinit`.")
1230 return
1231 end
1232 if not has_value then
1233 if atlazy != null then
1234 modelbuilder.error(atlazy, "Error: `lazy` attributes need a value.")
1235 else if atlateinit != null then
1236 modelbuilder.error(atlateinit, "Error: `lateinit` attributes need a value.")
1237 end
1238 has_value = true
1239 return
1240 end
1241 is_lazy = true
1242 var mlazyprop = new MAttribute(mclassdef, "lazy _" + name, none_visibility)
1243 var mlazypropdef = new MAttributeDef(mclassdef, mlazyprop, self.location)
1244 self.mlazypropdef = mlazypropdef
1245 end
1246
1247 var atreadonly = self.get_single_annotation("readonly", modelbuilder)
1248 if atreadonly != null then
1249 if not has_value then
1250 modelbuilder.error(atreadonly, "Error: `readonly` attributes need a value.")
1251 end
1252 # No setter, so just leave
1253 return
1254 end
1255
1256 if not mclassdef.is_intro and not has_value and not noinit then
1257 modelbuilder.advice(self, "attr-in-refinement", "Warning: attributes in refinement need a value or `noautoinit`.")
1258 end
1259
1260 var writename = name + "="
1261 var atwritable = self.get_single_annotation("writable", modelbuilder)
1262 if atwritable != null then
1263 if not atwritable.n_args.is_empty then
1264 writename = atwritable.arg_as_id(modelbuilder) or else writename
1265 end
1266 end
1267 var mwriteprop = modelbuilder.try_get_mproperty_by_name(nid2, mclassdef, writename).as(nullable MMethod)
1268 var nwkwredef: nullable Token = null
1269 if atwritable != null then nwkwredef = atwritable.n_kwredef
1270 if mwriteprop == null then
1271 var mvisibility
1272 if atwritable != null then
1273 mvisibility = new_property_visibility(modelbuilder, mclassdef, atwritable.n_visibility)
1274 else
1275 mvisibility = private_visibility
1276 end
1277 mwriteprop = new MMethod(mclassdef, writename, mvisibility)
1278 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef, false, mwriteprop) then return
1279 mwriteprop.deprecation = mreadprop.deprecation
1280 else
1281 if not self.check_redef_keyword(modelbuilder, mclassdef, nwkwredef or else n_kwredef, true, mwriteprop) then return
1282 if atwritable != null then
1283 check_redef_property_visibility(modelbuilder, atwritable.n_visibility, mwriteprop)
1284 end
1285 end
1286 mclassdef.mprop2npropdef[mwriteprop] = self
1287
1288 var mwritepropdef = new MMethodDef(mclassdef, mwriteprop, self.location)
1289 self.mwritepropdef = mwritepropdef
1290 modelbuilder.mpropdef2npropdef[mwritepropdef] = self
1291 mwritepropdef.mdoc = mreadpropdef.mdoc
1292 if atabstract != null then mwritepropdef.is_abstract = true
1293 end
1294
1295 redef fun build_signature(modelbuilder)
1296 do
1297 var mreadpropdef = self.mreadpropdef
1298 var mpropdef = self.mpropdef
1299 if mreadpropdef == null then return # Error thus skipped
1300 var mclassdef = mreadpropdef.mclassdef
1301 var mmodule = mclassdef.mmodule
1302 var mtype: nullable MType = null
1303
1304
1305 var ntype = self.n_type
1306 if ntype != null then
1307 mtype = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
1308 if mtype == null then return
1309 end
1310
1311 var inherited_type: nullable MType = null
1312 # Inherit the type from the getter (usually an abstract getter)
1313 if not mreadpropdef.is_intro then
1314 var msignature = mreadpropdef.mproperty.intro.msignature
1315 if msignature == null then return # Error, thus skipped
1316 inherited_type = msignature.return_mtype
1317 if inherited_type != null then
1318 # The inherited type is adapted to use the local formal types, if any.
1319 inherited_type = inherited_type.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
1320 if mtype == null then mtype = inherited_type
1321 end
1322 end
1323
1324 var nexpr = self.n_expr
1325 if mtype == null then
1326 if nexpr != null then
1327 if nexpr isa ANewExpr then
1328 mtype = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, nexpr.n_type, true)
1329 else if nexpr isa AIntExpr then
1330 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Int")
1331 if cla != null then mtype = cla.mclass_type
1332 else if nexpr isa AByteExpr then
1333 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Byte")
1334 if cla != null then mtype = cla.mclass_type
1335 else if nexpr isa AFloatExpr then
1336 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Float")
1337 if cla != null then mtype = cla.mclass_type
1338 else if nexpr isa ACharExpr then
1339 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Char")
1340 if cla != null then mtype = cla.mclass_type
1341 else if nexpr isa ABoolExpr then
1342 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "Bool")
1343 if cla != null then mtype = cla.mclass_type
1344 else if nexpr isa ASuperstringExpr then
1345 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1346 if cla != null then mtype = cla.mclass_type
1347 else if nexpr isa AStringFormExpr then
1348 var cla = modelbuilder.try_get_mclass_by_name(nexpr, mmodule, "String")
1349 if cla != null then mtype = cla.mclass_type
1350 else
1351 modelbuilder.error(self, "Error: untyped attribute `{mreadpropdef}`. Implicit typing allowed only for literals and new.")
1352 end
1353
1354 if mtype == null then return
1355 end
1356 else if ntype != null and inherited_type == mtype then
1357 if nexpr isa ANewExpr then
1358 var xmtype = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, nexpr.n_type, true)
1359 if xmtype == mtype then
1360 modelbuilder.advice(ntype, "useless-type", "Warning: useless type definition")
1361 end
1362 end
1363 end
1364
1365 if mtype == null then
1366 modelbuilder.error(self, "Error: untyped attribute `{mreadpropdef}`.")
1367 return
1368 end
1369
1370 self.mtype = mtype
1371
1372 if mpropdef != null then
1373 mpropdef.static_mtype = mtype
1374 end
1375
1376 do
1377 var msignature = new MSignature(new Array[MParameter], mtype)
1378 mreadpropdef.msignature = msignature
1379 end
1380
1381 var mwritepropdef = self.mwritepropdef
1382 if mwritepropdef != null then
1383 var name: String
1384 name = n_id2.text
1385 var mparameter = new MParameter(name, mtype, false, false)
1386 var msignature = new MSignature([mparameter], null)
1387 mwritepropdef.msignature = msignature
1388 end
1389
1390 var mlazypropdef = self.mlazypropdef
1391 if mlazypropdef != null then
1392 mlazypropdef.static_mtype = modelbuilder.model.get_mclasses_by_name("Bool").first.mclass_type
1393 end
1394 check_repeated_types(modelbuilder)
1395 end
1396
1397 redef fun check_signature(modelbuilder)
1398 do
1399 var mpropdef = self.mpropdef
1400 if mpropdef == null then return # Error thus skipped
1401 var ntype = self.n_type
1402 var mtype = self.mtype
1403 if mtype == null then return # Error thus skipped
1404
1405 var mclassdef = mpropdef.mclassdef
1406 var mmodule = mclassdef.mmodule
1407
1408 # Check types
1409 if ntype != null then
1410 if modelbuilder.resolve_mtype(mmodule, mclassdef, ntype) == null then return
1411 end
1412 var nexpr = n_expr
1413 if nexpr isa ANewExpr then
1414 if modelbuilder.resolve_mtype(mmodule, mclassdef, nexpr.n_type) == null then return
1415 end
1416
1417 # Lookup for signature in the precursor
1418 # FIXME all precursors should be considered
1419 if not mpropdef.is_intro then
1420 var precursor_type = mpropdef.mproperty.intro.static_mtype
1421 if precursor_type == null then return
1422
1423 if mtype != precursor_type then
1424 modelbuilder.error(ntype.as(not null), "Redef Error: expected `{precursor_type}` type as a bound; got `{mtype}`.")
1425 return
1426 end
1427 end
1428
1429 # Check getter and setter
1430 var meth = self.mreadpropdef
1431 if meth != null then
1432 self.check_method_signature(modelbuilder, meth)
1433 var node: nullable ANode = ntype
1434 if node == null then node = self
1435 modelbuilder.check_visibility(node, mtype, meth)
1436 end
1437 meth = self.mwritepropdef
1438 if meth != null then
1439 self.check_method_signature(modelbuilder, meth)
1440 var node: nullable ANode = ntype
1441 if node == null then node = self
1442 modelbuilder.check_visibility(node, mtype, meth)
1443 end
1444 end
1445
1446 private fun check_method_signature(modelbuilder: ModelBuilder, mpropdef: MMethodDef)
1447 do
1448 var mclassdef = mpropdef.mclassdef
1449 var mmodule = mclassdef.mmodule
1450 var nsig = self.n_type
1451 var mysignature = mpropdef.msignature
1452 if mysignature == null then return # Error thus skiped
1453
1454 # Lookup for signature in the precursor
1455 # FIXME all precursors should be considered
1456 if not mpropdef.is_intro then
1457 var msignature = mpropdef.mproperty.intro.msignature
1458 if msignature == null then return
1459
1460 if mysignature.arity != msignature.arity then
1461 var node: ANode
1462 if nsig != null then node = nsig else node = self
1463 modelbuilder.error(node, "Redef Error: expected {msignature.arity} parameter(s) for `{mpropdef.mproperty.name}{msignature}`; got {mysignature.arity}. See introduction at `{mpropdef.mproperty.full_name}`.")
1464 return
1465 end
1466 var precursor_ret_type = msignature.return_mtype
1467 var ret_type = mysignature.return_mtype
1468 if ret_type != null and precursor_ret_type == null then
1469 var node: ANode
1470 if nsig != null then node = nsig else node = self
1471 modelbuilder.error(node, "Redef Error: `{mpropdef.mproperty}` is a procedure, not a function.")
1472 return
1473 end
1474
1475 if mysignature.arity > 0 then
1476 # Check parameters types
1477 for i in [0..mysignature.arity[ do
1478 var myt = mysignature.mparameters[i].mtype
1479 var prt = msignature.mparameters[i].mtype
1480 var node: ANode
1481 if nsig != null then node = nsig else node = self
1482 if not modelbuilder.check_sametype(node, mmodule, mclassdef.bound_mtype, myt, prt) then
1483 modelbuilder.error(node, "Redef Error: expected `{prt}` type for parameter `{mysignature.mparameters[i].name}'; got `{myt}`.")
1484 end
1485 end
1486 end
1487 if precursor_ret_type != null then
1488 var node: ANode
1489 if nsig != null then node = nsig else node = self
1490 if ret_type == null then
1491 # Inherit the return type
1492 ret_type = precursor_ret_type
1493 else if not modelbuilder.check_subtype(node, mmodule, mclassdef.bound_mtype, ret_type, precursor_ret_type) then
1494 modelbuilder.error(node, "Redef Error: expected `{precursor_ret_type}` return type; got `{ret_type}`.")
1495 end
1496 end
1497 end
1498 end
1499
1500 # Type is useless if the attribute type is the same thant the intro.
1501 redef fun check_repeated_types(modelbuilder) do
1502 if mreadpropdef.is_intro or n_type == null then return
1503 # get intro
1504 var intro = mreadpropdef.mproperty.intro
1505 var n_intro = modelbuilder.mpropdef2npropdef.get_or_null(intro)
1506 if n_intro == null then return
1507 # get intro type
1508 var ntype = null
1509 if n_intro isa AMethPropdef then
1510 ntype = n_intro.n_signature.ret_type
1511 else if n_intro isa AAttrPropdef and n_intro.n_type != null then
1512 ntype = n_intro.n_type.mtype
1513 end
1514 # check
1515 if ntype ==null or ntype != n_type.mtype then return
1516 modelbuilder.advice(n_type, "useless-signature", "Warning: useless type repetition on redefined attribute `{mpropdef.name}`")
1517 end
1518 end
1519
1520 redef class ATypePropdef
1521 redef type MPROPDEF: MVirtualTypeDef
1522
1523 redef fun build_property(modelbuilder, mclassdef)
1524 do
1525 var name = self.n_id.text
1526 var mprop = modelbuilder.try_get_mproperty_by_name(self.n_id, mclassdef, name)
1527 if mprop == null then
1528 var mvisibility = new_property_visibility(modelbuilder, mclassdef, self.n_visibility)
1529 mprop = new MVirtualTypeProp(mclassdef, name, mvisibility)
1530 for c in name.chars do if c >= 'a' and c<= 'z' then
1531 modelbuilder.warning(n_id, "bad-type-name", "Warning: lowercase in the virtual type `{name}`.")
1532 break
1533 end
1534 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, false, mprop) then return
1535 else
1536 if not self.check_redef_keyword(modelbuilder, mclassdef, self.n_kwredef, true, mprop) then return
1537 assert mprop isa MVirtualTypeProp
1538 check_redef_property_visibility(modelbuilder, self.n_visibility, mprop)
1539 end
1540 mclassdef.mprop2npropdef[mprop] = self
1541
1542 var mpropdef = new MVirtualTypeDef(mclassdef, mprop, self.location)
1543 self.mpropdef = mpropdef
1544 modelbuilder.mpropdef2npropdef[mpropdef] = self
1545 if mpropdef.is_intro then
1546 modelbuilder.toolcontext.info("{mpropdef} introduces new type {mprop.full_name}", 4)
1547 else
1548 modelbuilder.toolcontext.info("{mpropdef} redefines type {mprop.full_name}", 4)
1549 end
1550 set_doc(mpropdef, modelbuilder)
1551
1552 var atfixed = get_single_annotation("fixed", modelbuilder)
1553 if atfixed != null then
1554 mpropdef.is_fixed = true
1555 end
1556 end
1557
1558 redef fun build_signature(modelbuilder)
1559 do
1560 var mpropdef = self.mpropdef
1561 if mpropdef == null then return # Error thus skipped
1562 var mclassdef = mpropdef.mclassdef
1563 var mmodule = mclassdef.mmodule
1564 var mtype: nullable MType = null
1565
1566 var ntype = self.n_type
1567 mtype = modelbuilder.resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
1568 if mtype == null then return
1569
1570 mpropdef.bound = mtype
1571 # print "{mpropdef}: {mtype}"
1572 end
1573
1574 redef fun check_signature(modelbuilder)
1575 do
1576 var mpropdef = self.mpropdef
1577 if mpropdef == null then return # Error thus skipped
1578
1579 var bound = mpropdef.bound
1580 if bound == null then return # Error thus skipped
1581
1582 modelbuilder.check_visibility(n_type, bound, mpropdef)
1583
1584 var mclassdef = mpropdef.mclassdef
1585 var mmodule = mclassdef.mmodule
1586 var anchor = mclassdef.bound_mtype
1587
1588 var ntype = self.n_type
1589 if modelbuilder.resolve_mtype(mmodule, mclassdef, ntype) == null then
1590 mpropdef.bound = null
1591 return
1592 end
1593
1594 # Check redefinitions
1595 for p in mpropdef.mproperty.lookup_super_definitions(mmodule, anchor) do
1596 var supbound = p.bound
1597 if supbound == null then break # broken super bound, skip error
1598 if p.is_fixed then
1599 modelbuilder.error(self, "Redef Error: virtual type `{mpropdef.mproperty}` is fixed in super-class `{p.mclassdef.mclass}`.")
1600 break
1601 end
1602 if p.mclassdef.mclass == mclassdef.mclass then
1603 # Still a warning to pass existing bad code
1604 modelbuilder.warning(n_type, "refine-type", "Redef Error: a virtual type cannot be refined.")
1605 break
1606 end
1607 if not modelbuilder.check_subtype(n_type, mmodule, anchor, bound, supbound) then
1608 modelbuilder.error(n_type, "Redef Error: expected `{supbound}` bound type; got `{bound}`.")
1609 break
1610 end
1611 end
1612 end
1613 end