core: move more servies to Text (receiver and args only)
[nit.git] / src / model / model.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 # Classes, types and properties
18 #
19 # All three concepts are defined in this same module because these are strongly connected:
20 # * types are based on classes
21 # * classes contains properties
22 # * some properties are types (virtual types)
23 #
24 # TODO: liearization, extern stuff
25 # FIXME: better handling of the types
26 module model
27
28 import mmodule
29 import mdoc
30 import ordered_tree
31 private import more_collections
32
33 redef class MEntity
34 # The visibility of the MEntity.
35 #
36 # MPackages, MGroups and MModules are always public.
37 # The visibility of `MClass` and `MProperty` is defined by the keyword used.
38 # `MClassDef` and `MPropDef` return the visibility of `MClass` and `MProperty`.
39 fun visibility: MVisibility do return public_visibility
40 end
41
42 redef class Model
43 # All known classes
44 var mclasses = new Array[MClass]
45
46 # All known properties
47 var mproperties = new Array[MProperty]
48
49 # Hierarchy of class definition.
50 #
51 # Each classdef is associated with its super-classdefs in regard to
52 # its module of definition.
53 var mclassdef_hierarchy = new POSet[MClassDef]
54
55 # Class-type hierarchy restricted to the introduction.
56 #
57 # The idea is that what is true on introduction is always true whatever
58 # the module considered.
59 # Therefore, this hierarchy is used for a fast positive subtype check.
60 #
61 # This poset will evolve in a monotonous way:
62 # * Two non connected nodes will remain unconnected
63 # * New nodes can appear with new edges
64 private var intro_mtype_specialization_hierarchy = new POSet[MClassType]
65
66 # Global overlapped class-type hierarchy.
67 # The hierarchy when all modules are combined.
68 # Therefore, this hierarchy is used for a fast negative subtype check.
69 #
70 # This poset will evolve in an anarchic way. Loops can even be created.
71 #
72 # FIXME decide what to do on loops
73 private var full_mtype_specialization_hierarchy = new POSet[MClassType]
74
75 # Collections of classes grouped by their short name
76 private var mclasses_by_name = new MultiHashMap[String, MClass]
77
78 # Return all classes named `name`.
79 #
80 # If such a class does not exist, null is returned
81 # (instead of an empty array)
82 #
83 # Visibility or modules are not considered
84 fun get_mclasses_by_name(name: String): nullable Array[MClass]
85 do
86 return mclasses_by_name.get_or_null(name)
87 end
88
89 # Collections of properties grouped by their short name
90 private var mproperties_by_name = new MultiHashMap[String, MProperty]
91
92 # Return all properties named `name`.
93 #
94 # If such a property does not exist, null is returned
95 # (instead of an empty array)
96 #
97 # Visibility or modules are not considered
98 fun get_mproperties_by_name(name: String): nullable Array[MProperty]
99 do
100 return mproperties_by_name.get_or_null(name)
101 end
102
103 # The only null type
104 var null_type = new MNullType(self)
105
106 # The only bottom type
107 var bottom_type: MBottomType = null_type.as_notnull
108
109 # Build an ordered tree with from `concerns`
110 fun concerns_tree(mconcerns: Collection[MConcern]): ConcernsTree do
111 var seen = new HashSet[MConcern]
112 var res = new ConcernsTree
113
114 var todo = new Array[MConcern]
115 todo.add_all mconcerns
116
117 while not todo.is_empty do
118 var c = todo.pop
119 if seen.has(c) then continue
120 var pc = c.parent_concern
121 if pc == null then
122 res.add(null, c)
123 else
124 res.add(pc, c)
125 todo.add(pc)
126 end
127 seen.add(c)
128 end
129
130 return res
131 end
132 end
133
134 # An OrderedTree bound to MEntity.
135 #
136 # We introduce a new class so it can be easily refined by tools working
137 # with a Model.
138 class MEntityTree
139 super OrderedTree[MEntity]
140 end
141
142 # A MEntityTree borned to MConcern.
143 #
144 # TODO remove when nitdoc is fully merged with model_collect
145 class ConcernsTree
146 super OrderedTree[MConcern]
147 end
148
149 redef class MModule
150 # All the classes introduced in the module
151 var intro_mclasses = new Array[MClass]
152
153 # All the class definitions of the module
154 # (introduction and refinement)
155 var mclassdefs = new Array[MClassDef]
156
157 private var mclassdef_sorter: MClassDefSorter is lazy do
158 return new MClassDefSorter(self)
159 end
160
161 private var mpropdef_sorter: MPropDefSorter is lazy do
162 return new MPropDefSorter(self)
163 end
164
165 # Does the current module has a given class `mclass`?
166 # Return true if the mmodule introduces, refines or imports a class.
167 # Visibility is not considered.
168 fun has_mclass(mclass: MClass): Bool
169 do
170 return self.in_importation <= mclass.intro_mmodule
171 end
172
173 # Full hierarchy of introduced and imported classes.
174 #
175 # Create a new hierarchy got by flattening the classes for the module
176 # and its imported modules.
177 # Visibility is not considered.
178 #
179 # Note: this function is expensive and is usually used for the main
180 # module of a program only. Do not use it to do your own subtype
181 # functions.
182 fun flatten_mclass_hierarchy: POSet[MClass]
183 do
184 var res = self.flatten_mclass_hierarchy_cache
185 if res != null then return res
186 res = new POSet[MClass]
187 for m in self.in_importation.greaters do
188 for cd in m.mclassdefs do
189 var c = cd.mclass
190 res.add_node(c)
191 for s in cd.supertypes do
192 res.add_edge(c, s.mclass)
193 end
194 end
195 end
196 self.flatten_mclass_hierarchy_cache = res
197 return res
198 end
199
200 # Sort a given array of classes using the linearization order of the module
201 # The most general is first, the most specific is last
202 fun linearize_mclasses(mclasses: Array[MClass])
203 do
204 self.flatten_mclass_hierarchy.sort(mclasses)
205 end
206
207 # Sort a given array of class definitions using the linearization order of the module
208 # the refinement link is stronger than the specialisation link
209 # The most general is first, the most specific is last
210 fun linearize_mclassdefs(mclassdefs: Array[MClassDef])
211 do
212 mclassdef_sorter.sort(mclassdefs)
213 end
214
215 # Sort a given array of property definitions using the linearization order of the module
216 # the refinement link is stronger than the specialisation link
217 # The most general is first, the most specific is last
218 fun linearize_mpropdefs(mpropdefs: Array[MPropDef])
219 do
220 mpropdef_sorter.sort(mpropdefs)
221 end
222
223 private var flatten_mclass_hierarchy_cache: nullable POSet[MClass] = null
224
225 # The primitive type `Object`, the root of the class hierarchy
226 var object_type: MClassType = self.get_primitive_class("Object").mclass_type is lazy
227
228 # The type `Pointer`, super class to all extern classes
229 var pointer_type: MClassType = self.get_primitive_class("Pointer").mclass_type is lazy
230
231 # The primitive type `Bool`
232 var bool_type: MClassType = self.get_primitive_class("Bool").mclass_type is lazy
233
234 # The primitive type `Int`
235 var int_type: MClassType = self.get_primitive_class("Int").mclass_type is lazy
236
237 # The primitive type `Byte`
238 var byte_type: MClassType = self.get_primitive_class("Byte").mclass_type is lazy
239
240 # The primitive type `Int8`
241 var int8_type: MClassType = self.get_primitive_class("Int8").mclass_type is lazy
242
243 # The primitive type `Int16`
244 var int16_type: MClassType = self.get_primitive_class("Int16").mclass_type is lazy
245
246 # The primitive type `UInt16`
247 var uint16_type: MClassType = self.get_primitive_class("UInt16").mclass_type is lazy
248
249 # The primitive type `Int32`
250 var int32_type: MClassType = self.get_primitive_class("Int32").mclass_type is lazy
251
252 # The primitive type `UInt32`
253 var uint32_type: MClassType = self.get_primitive_class("UInt32").mclass_type is lazy
254
255 # The primitive type `Char`
256 var char_type: MClassType = self.get_primitive_class("Char").mclass_type is lazy
257
258 # The primitive type `Float`
259 var float_type: MClassType = self.get_primitive_class("Float").mclass_type is lazy
260
261 # The primitive type `String`
262 var string_type: MClassType = self.get_primitive_class("String").mclass_type is lazy
263
264 # The primitive type `CString`
265 var c_string_type: MClassType = self.get_primitive_class("CString").mclass_type is lazy
266
267 # A primitive type of `Array`
268 fun array_type(elt_type: MType): MClassType do return array_class.get_mtype([elt_type])
269
270 # The primitive class `Array`
271 var array_class: MClass = self.get_primitive_class("Array") is lazy
272
273 # A primitive type of `NativeArray`
274 fun native_array_type(elt_type: MType): MClassType do return native_array_class.get_mtype([elt_type])
275
276 # The primitive class `NativeArray`
277 var native_array_class: MClass = self.get_primitive_class("NativeArray") is lazy
278
279 # The primitive type `Sys`, the main type of the program, if any
280 fun sys_type: nullable MClassType
281 do
282 var clas = self.model.get_mclasses_by_name("Sys")
283 if clas == null then return null
284 return get_primitive_class("Sys").mclass_type
285 end
286
287 # The primitive type `Finalizable`
288 # Used to tag classes that need to be finalized.
289 fun finalizable_type: nullable MClassType
290 do
291 var clas = self.model.get_mclasses_by_name("Finalizable")
292 if clas == null then return null
293 return get_primitive_class("Finalizable").mclass_type
294 end
295
296 # Force to get the primitive class named `name` or abort
297 fun get_primitive_class(name: String): MClass
298 do
299 var cla = self.model.get_mclasses_by_name(name)
300 # Filter classes by introducing module
301 if cla != null then cla = [for c in cla do if self.in_importation <= c.intro_mmodule then c]
302 if cla == null or cla.is_empty then
303 if name == "Bool" and self.model.get_mclasses_by_name("Object") != null then
304 # Bool is injected because it is needed by engine to code the result
305 # of the implicit casts.
306 var loc = model.no_location
307 var c = new MClass(self, name, loc, null, enum_kind, public_visibility)
308 var cladef = new MClassDef(self, c.mclass_type, loc)
309 cladef.set_supertypes([object_type])
310 cladef.add_in_hierarchy
311 return c
312 end
313 print_error("Fatal Error: no primitive class {name} in {self}")
314 exit(1)
315 abort
316 end
317 if cla.length != 1 then
318 var msg = "Fatal Error: more than one primitive class {name} in {self}:"
319 for c in cla do msg += " {c.full_name}"
320 print_error msg
321 #exit(1)
322 end
323 return cla.first
324 end
325
326 # Try to get the primitive method named `name` on the type `recv`
327 fun try_get_primitive_method(name: String, recv: MClass): nullable MMethod
328 do
329 var props = self.model.get_mproperties_by_name(name)
330 if props == null then return null
331 var res: nullable MMethod = null
332 var recvtype = recv.intro.bound_mtype
333 for mprop in props do
334 assert mprop isa MMethod
335 if not recvtype.has_mproperty(self, mprop) then continue
336 if res == null then
337 res = mprop
338 else if res != mprop then
339 print_error("Fatal Error: ambigous property name '{name}'; conflict between {mprop.full_name} and {res.full_name}")
340 abort
341 end
342 end
343 return res
344 end
345 end
346
347 private class MClassDefSorter
348 super Comparator
349 redef type COMPARED: MClassDef
350 var mmodule: MModule
351 redef fun compare(a, b)
352 do
353 var ca = a.mclass
354 var cb = b.mclass
355 if ca != cb then return mmodule.flatten_mclass_hierarchy.compare(ca, cb)
356 return mmodule.model.mclassdef_hierarchy.compare(a, b)
357 end
358 end
359
360 private class MPropDefSorter
361 super Comparator
362 redef type COMPARED: MPropDef
363 var mmodule: MModule
364
365 redef fun compare(pa, pb)
366 do
367 var a = pa.mclassdef
368 var b = pb.mclassdef
369 return mmodule.mclassdef_sorter.compare(a, b)
370 end
371 end
372
373 # A named class
374 #
375 # `MClass`es are global to the model; it means that a `MClass` is not bound
376 # to a specific `MModule`.
377 #
378 # This characteristic helps the reasoning about classes in a program since a
379 # single `MClass` object always denote the same class.
380 #
381 # The drawback is that classes (`MClass`) contain almost nothing by themselves.
382 # These do not really have properties nor belong to a hierarchy since the property and the
383 # hierarchy of a class depends of the refinement in the modules.
384 #
385 # Most services on classes require the precision of a module, and no one can asks what are
386 # the super-classes of a class nor what are properties of a class without precising what is
387 # the module considered.
388 #
389 # For instance, during the typing of a source-file, the module considered is the module of the file.
390 # eg. the question *is the method `foo` exists in the class `Bar`?* must be reformulated into
391 # *is the method `foo` exists in the class `Bar` in the current module?*
392 #
393 # During some global analysis, the module considered may be the main module of the program.
394 class MClass
395 super MEntity
396
397 # The module that introduce the class
398 #
399 # While classes are not bound to a specific module,
400 # the introducing module is used for naming and visibility.
401 var intro_mmodule: MModule
402
403 # The short name of the class
404 # In Nit, the name of a class cannot evolve in refinements
405 redef var name
406
407 redef var location
408
409 # The canonical name of the class
410 #
411 # It is the name of the class prefixed by the full_name of the `intro_mmodule`
412 # Example: `"owner::module::MyClass"`
413 redef var full_name is lazy do
414 return "{self.intro_mmodule.namespace_for(visibility)}::{name}"
415 end
416
417 redef var c_name is lazy do
418 return "{intro_mmodule.c_namespace_for(visibility)}__{name.to_cmangle}"
419 end
420
421 # The number of generic formal parameters
422 # 0 if the class is not generic
423 var arity: Int is noinit
424
425 # Each generic formal parameters in order.
426 # is empty if the class is not generic
427 var mparameters = new Array[MParameterType]
428
429 # A string version of the signature a generic class.
430 #
431 # eg. `Map[K: nullable Object, V: nullable Object]`
432 #
433 # If the class in non generic the name is just given.
434 #
435 # eg. `Object`
436 fun signature_to_s: String
437 do
438 if arity == 0 then return name
439 var res = new FlatBuffer
440 res.append name
441 res.append "["
442 for i in [0..arity[ do
443 if i > 0 then res.append ", "
444 res.append mparameters[i].name
445 res.append ": "
446 res.append intro.bound_mtype.arguments[i].to_s
447 end
448 res.append "]"
449 return res.to_s
450 end
451
452 # Initialize `mparameters` from their names.
453 protected fun setup_parameter_names(parameter_names: nullable Array[String]) is
454 autoinit
455 do
456 if parameter_names == null then
457 self.arity = 0
458 else
459 self.arity = parameter_names.length
460 end
461
462 # Create the formal parameter types
463 if arity > 0 then
464 assert parameter_names != null
465 var mparametertypes = new Array[MParameterType]
466 for i in [0..arity[ do
467 var mparametertype = new MParameterType(self, i, parameter_names[i])
468 mparametertypes.add(mparametertype)
469 end
470 self.mparameters = mparametertypes
471 var mclass_type = new MGenericType(self, mparametertypes)
472 self.mclass_type = mclass_type
473 self.get_mtype_cache[mparametertypes] = mclass_type
474 else
475 self.mclass_type = new MClassType(self)
476 end
477 end
478
479 # The kind of the class (interface, abstract class, etc.)
480 #
481 # In Nit, the kind of a class cannot evolve in refinements.
482 var kind: MClassKind
483
484 # The visibility of the class
485 #
486 # In Nit, the visibility of a class cannot evolve in refinements.
487 redef var visibility
488
489 init
490 do
491 intro_mmodule.intro_mclasses.add(self)
492 var model = intro_mmodule.model
493 model.mclasses_by_name.add_one(name, self)
494 model.mclasses.add(self)
495 end
496
497 redef fun model do return intro_mmodule.model
498
499 # All class definitions (introduction and refinements)
500 var mclassdefs = new Array[MClassDef]
501
502 # Alias for `name`
503 redef fun to_s do return self.name
504
505 # The definition that introduces the class.
506 #
507 # Warning: such a definition may not exist in the early life of the object.
508 # In this case, the method will abort.
509 #
510 # Use `try_intro` instead.
511 var intro: MClassDef is noinit
512
513 # The definition that introduces the class or `null` if not yet known.
514 #
515 # SEE: `intro`
516 fun try_intro: nullable MClassDef do
517 if isset _intro then return _intro else return null
518 end
519
520 # Return the class `self` in the class hierarchy of the module `mmodule`.
521 #
522 # SEE: `MModule::flatten_mclass_hierarchy`
523 # REQUIRE: `mmodule.has_mclass(self)`
524 fun in_hierarchy(mmodule: MModule): POSetElement[MClass]
525 do
526 return mmodule.flatten_mclass_hierarchy[self]
527 end
528
529 # The principal static type of the class.
530 #
531 # For non-generic class, `mclass_type` is the only `MClassType` based
532 # on self.
533 #
534 # For a generic class, the arguments are the formal parameters.
535 # i.e.: for the class `Array[E:Object]`, the `mclass_type` is `Array[E]`.
536 # If you want `Array[Object]`, see `MClassDef::bound_mtype`.
537 #
538 # For generic classes, the mclass_type is also the way to get a formal
539 # generic parameter type.
540 #
541 # To get other types based on a generic class, see `get_mtype`.
542 #
543 # ENSURE: `mclass_type.mclass == self`
544 var mclass_type: MClassType is noinit
545
546 # Return a generic type based on the class
547 # Is the class is not generic, then the result is `mclass_type`
548 #
549 # REQUIRE: `mtype_arguments.length == self.arity`
550 fun get_mtype(mtype_arguments: Array[MType]): MClassType
551 do
552 assert mtype_arguments.length == self.arity
553 if self.arity == 0 then return self.mclass_type
554 var res = get_mtype_cache.get_or_null(mtype_arguments)
555 if res != null then return res
556 res = new MGenericType(self, mtype_arguments)
557 self.get_mtype_cache[mtype_arguments.to_a] = res
558 return res
559 end
560
561 private var get_mtype_cache = new HashMap[Array[MType], MGenericType]
562
563 # Is there a `new` factory to allow the pseudo instantiation?
564 var has_new_factory = false is writable
565
566 # Is `self` a standard or abstract class kind?
567 var is_class: Bool is lazy do return kind == concrete_kind or kind == abstract_kind
568
569 # Is `self` an interface kind?
570 var is_interface: Bool is lazy do return kind == interface_kind
571
572 # Is `self` an enum kind?
573 var is_enum: Bool is lazy do return kind == enum_kind
574
575 # Is `self` and abstract class?
576 var is_abstract: Bool is lazy do return kind == abstract_kind
577
578 redef fun mdoc_or_fallback
579 do
580 # Don’t use `intro.mdoc_or_fallback` because it would create an infinite
581 # recursion.
582 return intro.mdoc
583 end
584 end
585
586
587 # A definition (an introduction or a refinement) of a class in a module
588 #
589 # A `MClassDef` is associated with an explicit (or almost) definition of a
590 # class. Unlike `MClass`, a `MClassDef` is a local definition that belong to
591 # a specific class and a specific module, and contains declarations like super-classes
592 # or properties.
593 #
594 # It is the class definitions that are the backbone of most things in the model:
595 # ClassDefs are defined with regard with other classdefs.
596 # Refinement and specialization are combined to produce a big poset called the `Model::mclassdef_hierarchy`.
597 #
598 # Moreover, the extension and the intention of types is defined by looking at the MClassDefs.
599 class MClassDef
600 super MEntity
601
602 # The module where the definition is
603 var mmodule: MModule
604
605 # The associated `MClass`
606 var mclass: MClass is noinit
607
608 # The bounded type associated to the mclassdef
609 #
610 # For a non-generic class, `bound_mtype` and `mclass.mclass_type`
611 # are the same type.
612 #
613 # Example:
614 # For the classdef Array[E: Object], the bound_mtype is Array[Object].
615 # If you want Array[E], then see `mclass.mclass_type`
616 #
617 # ENSURE: `bound_mtype.mclass == self.mclass`
618 var bound_mtype: MClassType
619
620 redef var location
621
622 redef fun visibility do return mclass.visibility
623
624 # Internal name combining the module and the class
625 # Example: "mymodule$MyClass"
626 redef var to_s is noinit
627
628 init
629 do
630 self.mclass = bound_mtype.mclass
631 mmodule.mclassdefs.add(self)
632 mclass.mclassdefs.add(self)
633 if mclass.intro_mmodule == mmodule then
634 assert not isset mclass._intro
635 mclass.intro = self
636 end
637 self.to_s = "{mmodule}${mclass}"
638 end
639
640 # Actually the name of the `mclass`
641 redef fun name do return mclass.name
642
643 # The module and class name separated by a '$'.
644 #
645 # The short-name of the class is used for introduction.
646 # Example: "my_module$MyClass"
647 #
648 # The full-name of the class is used for refinement.
649 # Example: "my_module$intro_module::MyClass"
650 redef var full_name is lazy do
651 if is_intro then
652 # public gives 'p$A'
653 # private gives 'p::m$A'
654 return "{mmodule.namespace_for(mclass.visibility)}${mclass.name}"
655 else if mclass.intro_mmodule.mpackage != mmodule.mpackage then
656 # public gives 'q::n$p::A'
657 # private gives 'q::n$p::m::A'
658 return "{mmodule.full_name}${mclass.full_name}"
659 else if mclass.visibility > private_visibility then
660 # public gives 'p::n$A'
661 return "{mmodule.full_name}${mclass.name}"
662 else
663 # private gives 'p::n$::m::A' (redundant p is omitted)
664 return "{mmodule.full_name}$::{mclass.intro_mmodule.name}::{mclass.name}"
665 end
666 end
667
668 redef var c_name is lazy do
669 if is_intro then
670 return "{mmodule.c_namespace_for(mclass.visibility)}___{mclass.c_name}"
671 else if mclass.intro_mmodule.mpackage == mmodule.mpackage and mclass.visibility > private_visibility then
672 return "{mmodule.c_name}___{mclass.name.to_cmangle}"
673 else
674 return "{mmodule.c_name}___{mclass.c_name}"
675 end
676 end
677
678 redef fun model do return mmodule.model
679
680 # All declared super-types
681 # FIXME: quite ugly but not better idea yet
682 var supertypes = new Array[MClassType]
683
684 # Register some super-types for the class (ie "super SomeType")
685 #
686 # The hierarchy must not already be set
687 # REQUIRE: `self.in_hierarchy == null`
688 fun set_supertypes(supertypes: Array[MClassType])
689 do
690 assert unique_invocation: self.in_hierarchy == null
691 var mmodule = self.mmodule
692 var model = mmodule.model
693 var mtype = self.bound_mtype
694
695 for supertype in supertypes do
696 self.supertypes.add(supertype)
697
698 # Register in full_type_specialization_hierarchy
699 model.full_mtype_specialization_hierarchy.add_edge(mtype, supertype)
700 # Register in intro_type_specialization_hierarchy
701 if mclass.intro_mmodule == mmodule and supertype.mclass.intro_mmodule == mmodule then
702 model.intro_mtype_specialization_hierarchy.add_edge(mtype, supertype)
703 end
704 end
705
706 end
707
708 # Collect the super-types (set by set_supertypes) to build the hierarchy
709 #
710 # This function can only invoked once by class
711 # REQUIRE: `self.in_hierarchy == null`
712 # ENSURE: `self.in_hierarchy != null`
713 fun add_in_hierarchy
714 do
715 assert unique_invocation: self.in_hierarchy == null
716 var model = mmodule.model
717 var res = model.mclassdef_hierarchy.add_node(self)
718 self.in_hierarchy = res
719 var mtype = self.bound_mtype
720
721 # Here we need to connect the mclassdef to its pairs in the mclassdef_hierarchy
722 # The simpliest way is to attach it to collect_mclassdefs
723 for mclassdef in mtype.collect_mclassdefs(mmodule) do
724 res.poset.add_edge(self, mclassdef)
725 end
726 end
727
728 # The view of the class definition in `mclassdef_hierarchy`
729 var in_hierarchy: nullable POSetElement[MClassDef] = null
730
731 # Is the definition the one that introduced `mclass`?
732 fun is_intro: Bool do return isset mclass._intro and mclass.intro == self
733
734 # All properties introduced by the classdef
735 var intro_mproperties = new Array[MProperty]
736
737 # All property introductions and redefinitions in `self` (not inheritance).
738 var mpropdefs = new Array[MPropDef]
739
740 # All property introductions and redefinitions (not inheritance) in `self` by its associated property.
741 var mpropdefs_by_property = new HashMap[MProperty, MPropDef]
742
743 redef fun mdoc_or_fallback do return mdoc or else mclass.mdoc_or_fallback
744 end
745
746 # A global static type
747 #
748 # MType are global to the model; it means that a `MType` is not bound to a
749 # specific `MModule`.
750 # This characteristic helps the reasoning about static types in a program
751 # since a single `MType` object always denote the same type.
752 #
753 # However, because a `MType` is global, it does not really have properties
754 # nor have subtypes to a hierarchy since the property and the class hierarchy
755 # depends of a module.
756 # Moreover, virtual types an formal generic parameter types also depends on
757 # a receiver to have sense.
758 #
759 # Therefore, most method of the types require a module and an anchor.
760 # The module is used to know what are the classes and the specialization
761 # links.
762 # The anchor is used to know what is the bound of the virtual types and formal
763 # generic parameter types.
764 #
765 # MType are not directly usable to get properties. See the `anchor_to` method
766 # and the `MClassType` class.
767 #
768 # FIXME: the order of the parameters is not the best. We mus pick on from:
769 # * foo(mmodule, anchor, othertype)
770 # * foo(othertype, anchor, mmodule)
771 # * foo(anchor, mmodule, othertype)
772 # * foo(othertype, mmodule, anchor)
773 abstract class MType
774 super MEntity
775
776 redef fun name do return to_s
777
778 # Return true if `self` is an subtype of `sup`.
779 # The typing is done using the standard typing policy of Nit.
780 #
781 # REQUIRE: `anchor == null implies not self.need_anchor and not sup.need_anchor`
782 # REQUIRE: `anchor != null implies self.can_resolve_for(anchor, null, mmodule) and sup.can_resolve_for(anchor, null, mmodule)`
783 fun is_subtype(mmodule: MModule, anchor: nullable MClassType, sup: MType): Bool
784 do
785 var sub = self
786 if sub == sup then return true
787
788 #print "1.is {sub} a {sup}? ===="
789
790 if anchor == null then
791 assert not sub.need_anchor
792 assert not sup.need_anchor
793 else
794 # First, resolve the formal types to the simplest equivalent forms in the receiver
795 assert sub.can_resolve_for(anchor, null, mmodule)
796 sub = sub.lookup_fixed(mmodule, anchor)
797 assert sup.can_resolve_for(anchor, null, mmodule)
798 sup = sup.lookup_fixed(mmodule, anchor)
799 end
800
801 # Does `sup` accept null or not?
802 # Discard the nullable marker if it exists
803 var sup_accept_null = false
804 if sup isa MNullableType then
805 sup_accept_null = true
806 sup = sup.mtype
807 else if sup isa MNotNullType then
808 sup = sup.mtype
809 else if sup isa MNullType then
810 sup_accept_null = true
811 end
812
813 # Can `sub` provide null or not?
814 # Thus we can match with `sup_accept_null`
815 # Also discard the nullable marker if it exists
816 var sub_reject_null = false
817 if sub isa MNullableType then
818 if not sup_accept_null then return false
819 sub = sub.mtype
820 else if sub isa MNotNullType then
821 sub_reject_null = true
822 sub = sub.mtype
823 else if sub isa MNullType then
824 return sup_accept_null
825 end
826 # Now the case of direct null and nullable is over.
827
828 # If `sub` is a formal type, then it is accepted if its bound is accepted
829 while sub isa MFormalType do
830 #print "3.is {sub} a {sup}?"
831
832 # A unfixed formal type can only accept itself
833 if sub == sup then return true
834
835 assert anchor != null
836 sub = sub.lookup_bound(mmodule, anchor)
837 if sub_reject_null then sub = sub.as_notnull
838
839 #print "3.is {sub} a {sup}?"
840
841 # Manage the second layer of null/nullable
842 if sub isa MNullableType then
843 if not sup_accept_null and not sub_reject_null then return false
844 sub = sub.mtype
845 else if sub isa MNotNullType then
846 sub_reject_null = true
847 sub = sub.mtype
848 else if sub isa MNullType then
849 return sup_accept_null
850 end
851 end
852 #print "4.is {sub} a {sup}? <- no more resolution"
853
854 if sub isa MBottomType or sub isa MErrorType then
855 return true
856 end
857
858 assert sub isa MClassType else print_error "{sub} <? {sup}" # It is the only remaining type
859
860 # Handle sup-type when the sub-type is class-based (other cases must have be identified before).
861 if sup isa MFormalType or sup isa MNullType or sup isa MBottomType or sup isa MErrorType then
862 # These types are not super-types of Class-based types.
863 return false
864 end
865
866 assert sup isa MClassType else print_error "got {sup} {sub.inspect}" # It is the only remaining type
867
868 # Now both are MClassType, we need to dig
869
870 if sub == sup then return true
871
872 if anchor == null then anchor = sub # UGLY: any anchor will work
873 var resolved_sub = sub.anchor_to(mmodule, anchor)
874 var res = resolved_sub.collect_mclasses(mmodule).has(sup.mclass)
875 if res == false then return false
876 if not sup isa MGenericType then return true
877 var sub2 = sub.supertype_to(mmodule, anchor, sup.mclass)
878 assert sub2.mclass == sup.mclass
879 for i in [0..sup.mclass.arity[ do
880 var sub_arg = sub2.arguments[i]
881 var sup_arg = sup.arguments[i]
882 res = sub_arg.is_subtype(mmodule, anchor, sup_arg)
883 if res == false then return false
884 end
885 return true
886 end
887
888 # The base class type on which self is based
889 #
890 # This base type is used to get property (an internally to perform
891 # unsafe type comparison).
892 #
893 # Beware: some types (like null) are not based on a class thus this
894 # method will crash
895 #
896 # Basically, this function transform the virtual types and parameter
897 # types to their bounds.
898 #
899 # Example
900 #
901 # class A end
902 # class B super A end
903 # class X end
904 # class Y super X end
905 # class G[T: A]
906 # type U: X
907 # end
908 # class H
909 # super G[B]
910 # redef type U: Y
911 # end
912 #
913 # Map[T,U] anchor_to H #-> Map[B,Y]
914 #
915 # Explanation of the example:
916 # In H, T is set to B, because "H super G[B]", and U is bound to Y,
917 # because "redef type U: Y". Therefore, Map[T, U] is bound to
918 # Map[B, Y]
919 #
920 # REQUIRE: `self.need_anchor implies anchor != null`
921 # ENSURE: `not self.need_anchor implies result == self`
922 # ENSURE: `not result.need_anchor`
923 fun anchor_to(mmodule: MModule, anchor: nullable MClassType): MType
924 do
925 if not need_anchor then return self
926 assert anchor != null and not anchor.need_anchor
927 # Just resolve to the anchor and clear all the virtual types
928 var res = self.resolve_for(anchor, null, mmodule, true)
929 assert not res.need_anchor
930 return res
931 end
932
933 # Does `self` contain a virtual type or a formal generic parameter type?
934 # In order to remove those types, you usually want to use `anchor_to`.
935 fun need_anchor: Bool do return true
936
937 # Return the supertype when adapted to a class.
938 #
939 # In Nit, for each super-class of a type, there is a equivalent super-type.
940 #
941 # Example:
942 #
943 # ~~~nitish
944 # class G[T, U] end
945 # class H[V] super G[V, Bool] end
946 #
947 # H[Int] supertype_to G #-> G[Int, Bool]
948 # ~~~
949 #
950 # REQUIRE: `super_mclass` is a super-class of `self`
951 # REQUIRE: `self.need_anchor implies anchor != null and self.can_resolve_for(anchor, null, mmodule)`
952 # ENSURE: `result.mclass = super_mclass`
953 fun supertype_to(mmodule: MModule, anchor: nullable MClassType, super_mclass: MClass): MClassType
954 do
955 if super_mclass.arity == 0 then return super_mclass.mclass_type
956 if self isa MClassType and self.mclass == super_mclass then return self
957 var resolved_self
958 if self.need_anchor then
959 assert anchor != null
960 resolved_self = self.anchor_to(mmodule, anchor)
961 else
962 resolved_self = self
963 end
964 var supertypes = resolved_self.collect_mtypes(mmodule)
965 for supertype in supertypes do
966 if supertype.mclass == super_mclass then
967 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
968 return supertype.resolve_for(self, anchor, mmodule, false)
969 end
970 end
971 abort
972 end
973
974 # Replace formals generic types in self with resolved values in `mtype`
975 # If `cleanup_virtual` is true, then virtual types are also replaced
976 # with their bounds.
977 #
978 # This function returns self if `need_anchor` is false.
979 #
980 # ## Example 1
981 #
982 # ~~~
983 # class G[E] end
984 # class H[F] super G[F] end
985 # class X[Z] end
986 # ~~~
987 #
988 # * Array[E].resolve_for(H[Int]) #-> Array[Int]
989 # * Array[E].resolve_for(G[Z], X[Int]) #-> Array[Z]
990 #
991 # Explanation of the example:
992 # * Array[E].need_anchor is true because there is a formal generic parameter type E
993 # * E makes sense for H[Int] because E is a formal parameter of G and H specialize G
994 # * Since "H[F] super G[F]", E is in fact F for H
995 # * More specifically, in H[Int], E is Int
996 # * So, in H[Int], Array[E] is Array[Int]
997 #
998 # This function is mainly used to inherit a signature.
999 # Because, unlike `anchor_to`, we do not want a full resolution of
1000 # a type but only an adapted version of it.
1001 #
1002 # ## Example 2
1003 #
1004 # ~~~
1005 # class A[E]
1006 # fun foo(e:E):E is abstract
1007 # end
1008 # class B super A[Int] end
1009 # ~~~
1010 #
1011 # The signature on foo is (e: E): E
1012 # If we resolve the signature for B, we get (e:Int):Int
1013 #
1014 # ## Example 3
1015 #
1016 # ~~~nitish
1017 # class A[E]
1018 # fun foo(e:E):E is abstract
1019 # end
1020 # class C[F]
1021 # var a: A[Array[F]]
1022 # fun bar do a.foo(x) # <- x is here
1023 # end
1024 # ~~~
1025 #
1026 # The first question is: is foo available on `a`?
1027 #
1028 # The static type of a is `A[Array[F]]`, that is an open type.
1029 # in order to find a method `foo`, whe must look at a resolved type.
1030 #
1031 # A[Array[F]].anchor_to(C[nullable Object]) #-> A[Array[nullable Object]]
1032 #
1033 # the method `foo` exists in `A[Array[nullable Object]]`, therefore `foo` exists for `a`.
1034 #
1035 # The next question is: what is the accepted types for `x`?
1036 #
1037 # the signature of `foo` is `foo(e:E)`, thus we must resolve the type E
1038 #
1039 # E.resolve_for(A[Array[F]],C[nullable Object]) #-> Array[F]
1040 #
1041 # The resolution can be done because `E` make sense for the class A (see `can_resolve_for`)
1042 #
1043 # FIXME: the parameter `cleanup_virtual` is just a bad idea, but having
1044 # two function instead of one seems also to be a bad idea.
1045 #
1046 # REQUIRE: `can_resolve_for(mtype, anchor, mmodule)`
1047 # ENSURE: `not self.need_anchor implies result == self`
1048 fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MType is abstract
1049
1050 # Resolve formal type to its verbatim bound.
1051 # If the type is not formal, just return self
1052 #
1053 # The result is returned exactly as declared in the "type" property (verbatim).
1054 # So it could be another formal type.
1055 #
1056 # In case of conflicts or inconsistencies in the model, the method returns a `MErrorType`.
1057 fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType do return self
1058
1059 # Resolve the formal type to its simplest equivalent form.
1060 #
1061 # Formal types are either free or fixed.
1062 # When it is fixed, it means that it is equivalent with a simpler type.
1063 # When a formal type is free, it means that it is only equivalent with itself.
1064 # This method return the most simple equivalent type of `self`.
1065 #
1066 # This method is mainly used for subtype test in order to sanely compare fixed.
1067 #
1068 # By default, return self.
1069 # See the redefinitions for specific behavior in each kind of type.
1070 #
1071 # In case of conflicts or inconsistencies in the model, the method returns a `MErrorType`.
1072 fun lookup_fixed(mmodule: MModule, resolved_receiver: MType): MType do return self
1073
1074 # Is the type a `MErrorType` or contains an `MErrorType`?
1075 #
1076 # `MErrorType` are used in result with conflict or inconsistencies.
1077 #
1078 # See `is_legal_in` to check conformity with generic bounds.
1079 fun is_ok: Bool do return true
1080
1081 # Is the type legal in a given `mmodule` (with an optional `anchor`)?
1082 #
1083 # A type is valid if:
1084 #
1085 # * it does not contain a `MErrorType` (see `is_ok`).
1086 # * its generic formal arguments are within their bounds.
1087 fun is_legal_in(mmodule: MModule, anchor: nullable MClassType): Bool do return is_ok
1088
1089 # Can the type be resolved?
1090 #
1091 # In order to resolve open types, the formal types must make sence.
1092 #
1093 # ## Example
1094 #
1095 # class A[E]
1096 # end
1097 # class B[F]
1098 # end
1099 #
1100 # ~~~nitish
1101 # E.can_resolve_for(A[Int]) #-> true, E make sense in A
1102 #
1103 # E.can_resolve_for(B[Int]) #-> false, E does not make sense in B
1104 #
1105 # B[E].can_resolve_for(A[F], B[Object]) #-> true,
1106 # # B[E] is a red hearing only the E is important,
1107 # # E make sense in A
1108 # ~~~
1109 #
1110 # REQUIRE: `anchor != null implies not anchor.need_anchor`
1111 # REQUIRE: `mtype.need_anchor implies anchor != null and mtype.can_resolve_for(anchor, null, mmodule)`
1112 # ENSURE: `not self.need_anchor implies result == true`
1113 fun can_resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule): Bool is abstract
1114
1115 # Return the nullable version of the type
1116 # If the type is already nullable then self is returned
1117 fun as_nullable: MType
1118 do
1119 var res = self.as_nullable_cache
1120 if res != null then return res
1121 res = new MNullableType(self)
1122 self.as_nullable_cache = res
1123 return res
1124 end
1125
1126 # Remove the base type of a decorated (proxy) type.
1127 # Is the type is not decorated, then self is returned.
1128 #
1129 # Most of the time it is used to return the not nullable version of a nullable type.
1130 # In this case, this just remove the `nullable` notation, but the result can still contains null.
1131 # For instance if `self isa MNullType` or self is a formal type bounded by a nullable type.
1132 # If you really want to exclude the `null` value, then use `as_notnull`
1133 fun undecorate: MType
1134 do
1135 return self
1136 end
1137
1138 # Returns the not null version of the type.
1139 # That is `self` minus the `null` value.
1140 #
1141 # For most types, this return `self`.
1142 # For formal types, this returns a special `MNotNullType`
1143 fun as_notnull: MType do return self
1144
1145 private var as_nullable_cache: nullable MType = null
1146
1147
1148 # The depth of the type seen as a tree.
1149 #
1150 # * A -> 1
1151 # * G[A] -> 2
1152 # * H[A, B] -> 2
1153 # * H[G[A], B] -> 3
1154 #
1155 # Formal types have a depth of 1.
1156 # Only `MClassType` and `MFormalType` nodes are counted.
1157 fun depth: Int
1158 do
1159 return 1
1160 end
1161
1162 # The length of the type seen as a tree.
1163 #
1164 # * A -> 1
1165 # * G[A] -> 2
1166 # * H[A, B] -> 3
1167 # * H[G[A], B] -> 4
1168 #
1169 # Formal types have a length of 1.
1170 # Only `MClassType` and `MFormalType` nodes are counted.
1171 fun length: Int
1172 do
1173 return 1
1174 end
1175
1176 # Compute all the classdefs inherited/imported.
1177 # The returned set contains:
1178 # * the class definitions from `mmodule` and its imported modules
1179 # * the class definitions of this type and its super-types
1180 #
1181 # This function is used mainly internally.
1182 #
1183 # REQUIRE: `not self.need_anchor`
1184 fun collect_mclassdefs(mmodule: MModule): Set[MClassDef] is abstract
1185
1186 # Compute all the super-classes.
1187 # This function is used mainly internally.
1188 #
1189 # REQUIRE: `not self.need_anchor`
1190 fun collect_mclasses(mmodule: MModule): Set[MClass] is abstract
1191
1192 # Compute all the declared super-types.
1193 # Super-types are returned as declared in the classdefs (verbatim).
1194 # This function is used mainly internally.
1195 #
1196 # REQUIRE: `not self.need_anchor`
1197 fun collect_mtypes(mmodule: MModule): Set[MClassType] is abstract
1198
1199 # Is the property in self for a given module
1200 # This method does not filter visibility or whatever
1201 #
1202 # REQUIRE: `not self.need_anchor`
1203 fun has_mproperty(mmodule: MModule, mproperty: MProperty): Bool
1204 do
1205 assert not self.need_anchor
1206 return self.collect_mclassdefs(mmodule).has(mproperty.intro_mclassdef)
1207 end
1208 end
1209
1210 # A type based on a class.
1211 #
1212 # `MClassType` have properties (see `has_mproperty`).
1213 class MClassType
1214 super MType
1215
1216 # The associated class
1217 var mclass: MClass
1218
1219 redef fun model do return self.mclass.intro_mmodule.model
1220
1221 redef fun location do return mclass.location
1222
1223 # TODO: private init because strongly bounded to its mclass. see `mclass.mclass_type`
1224
1225 # The formal arguments of the type
1226 # ENSURE: `result.length == self.mclass.arity`
1227 var arguments = new Array[MType]
1228
1229 redef fun to_s do return mclass.to_s
1230
1231 redef fun full_name do return mclass.full_name
1232
1233 redef fun c_name do return mclass.c_name
1234
1235 redef fun need_anchor do return false
1236
1237 redef fun anchor_to(mmodule, anchor): MClassType
1238 do
1239 return super.as(MClassType)
1240 end
1241
1242 redef fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MClassType do return self
1243
1244 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1245
1246 redef fun collect_mclassdefs(mmodule)
1247 do
1248 assert not self.need_anchor
1249 var cache = self.collect_mclassdefs_cache
1250 if not cache.has_key(mmodule) then
1251 self.collect_things(mmodule)
1252 end
1253 return cache[mmodule]
1254 end
1255
1256 redef fun collect_mclasses(mmodule)
1257 do
1258 if collect_mclasses_last_module == mmodule then return collect_mclasses_last_module_cache
1259 assert not self.need_anchor
1260 var cache = self.collect_mclasses_cache
1261 if not cache.has_key(mmodule) then
1262 self.collect_things(mmodule)
1263 end
1264 var res = cache[mmodule]
1265 collect_mclasses_last_module = mmodule
1266 collect_mclasses_last_module_cache = res
1267 return res
1268 end
1269
1270 private var collect_mclasses_last_module: nullable MModule = null
1271 private var collect_mclasses_last_module_cache: Set[MClass] is noinit
1272
1273 redef fun collect_mtypes(mmodule)
1274 do
1275 assert not self.need_anchor
1276 var cache = self.collect_mtypes_cache
1277 if not cache.has_key(mmodule) then
1278 self.collect_things(mmodule)
1279 end
1280 return cache[mmodule]
1281 end
1282
1283 # common implementation for `collect_mclassdefs`, `collect_mclasses`, and `collect_mtypes`.
1284 private fun collect_things(mmodule: MModule)
1285 do
1286 var res = new HashSet[MClassDef]
1287 var seen = new HashSet[MClass]
1288 var types = new HashSet[MClassType]
1289 seen.add(self.mclass)
1290 var todo = [self.mclass]
1291 while not todo.is_empty do
1292 var mclass = todo.pop
1293 #print "process {mclass}"
1294 for mclassdef in mclass.mclassdefs do
1295 if not mmodule.in_importation <= mclassdef.mmodule then continue
1296 #print " process {mclassdef}"
1297 res.add(mclassdef)
1298 for supertype in mclassdef.supertypes do
1299 types.add(supertype)
1300 var superclass = supertype.mclass
1301 if seen.has(superclass) then continue
1302 #print " add {superclass}"
1303 seen.add(superclass)
1304 todo.add(superclass)
1305 end
1306 end
1307 end
1308 collect_mclassdefs_cache[mmodule] = res
1309 collect_mclasses_cache[mmodule] = seen
1310 collect_mtypes_cache[mmodule] = types
1311 end
1312
1313 private var collect_mclassdefs_cache = new HashMap[MModule, Set[MClassDef]]
1314 private var collect_mclasses_cache = new HashMap[MModule, Set[MClass]]
1315 private var collect_mtypes_cache = new HashMap[MModule, Set[MClassType]]
1316
1317 redef fun mdoc_or_fallback do return mclass.mdoc_or_fallback
1318 end
1319
1320 # A type based on a generic class.
1321 # A generic type a just a class with additional formal generic arguments.
1322 class MGenericType
1323 super MClassType
1324
1325 redef var arguments
1326
1327 # TODO: private init because strongly bounded to its mclass. see `mclass.get_mtype`
1328
1329 init
1330 do
1331 assert self.mclass.arity == arguments.length
1332
1333 self.need_anchor = false
1334 for t in arguments do
1335 if t.need_anchor then
1336 self.need_anchor = true
1337 break
1338 end
1339 end
1340
1341 self.to_s = "{mclass}[{arguments.join(", ")}]"
1342 end
1343
1344 # The short-name of the class, then the full-name of each type arguments within brackets.
1345 # Example: `"Map[String, List[Int]]"`
1346 redef var to_s is noinit
1347
1348 # The full-name of the class, then the full-name of each type arguments within brackets.
1349 # Example: `"core::Map[core::String, core::List[core::Int]]"`
1350 redef var full_name is lazy do
1351 var args = new Array[String]
1352 for t in arguments do
1353 args.add t.full_name
1354 end
1355 return "{mclass.full_name}[{args.join(", ")}]"
1356 end
1357
1358 redef var c_name is lazy do
1359 var res = mclass.c_name
1360 # Note: because the arity is known, a prefix notation is enough
1361 for t in arguments do
1362 res += "__"
1363 res += t.c_name
1364 end
1365 return res.to_s
1366 end
1367
1368 redef var need_anchor is noinit
1369
1370 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1371 do
1372 if not need_anchor then return self
1373 assert can_resolve_for(mtype, anchor, mmodule)
1374 var types = new Array[MType]
1375 for t in arguments do
1376 types.add(t.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1377 end
1378 return mclass.get_mtype(types)
1379 end
1380
1381 redef fun can_resolve_for(mtype, anchor, mmodule)
1382 do
1383 if not need_anchor then return true
1384 for t in arguments do
1385 if not t.can_resolve_for(mtype, anchor, mmodule) then return false
1386 end
1387 return true
1388 end
1389
1390 redef fun is_ok
1391 do
1392 for t in arguments do if not t.is_ok then return false
1393 return super
1394 end
1395
1396 redef fun is_legal_in(mmodule, anchor)
1397 do
1398 var mtype
1399 if need_anchor then
1400 assert anchor != null
1401 mtype = anchor_to(mmodule, anchor)
1402 else
1403 mtype = self
1404 end
1405 if not mtype.is_ok then return false
1406 return mtype.is_subtype(mmodule, null, mtype.mclass.intro.bound_mtype)
1407 end
1408
1409 redef fun depth
1410 do
1411 var dmax = 0
1412 for a in self.arguments do
1413 var d = a.depth
1414 if d > dmax then dmax = d
1415 end
1416 return dmax + 1
1417 end
1418
1419 redef fun length
1420 do
1421 var res = 1
1422 for a in self.arguments do
1423 res += a.length
1424 end
1425 return res
1426 end
1427 end
1428
1429 # A formal type (either virtual of parametric).
1430 #
1431 # The main issue with formal types is that they offer very little information on their own
1432 # and need a context (anchor and mmodule) to be useful.
1433 abstract class MFormalType
1434 super MType
1435
1436 redef var as_notnull = new MNotNullType(self) is lazy
1437 end
1438
1439 # A virtual formal type.
1440 class MVirtualType
1441 super MFormalType
1442
1443 # The property associated with the type.
1444 # Its the definitions of this property that determine the bound or the virtual type.
1445 var mproperty: MVirtualTypeProp
1446
1447 redef fun location do return mproperty.location
1448
1449 redef fun model do return self.mproperty.intro_mclassdef.mmodule.model
1450
1451 redef fun lookup_bound(mmodule, resolved_receiver)
1452 do
1453 # There is two possible invalid cases: the vt does not exists in resolved_receiver or the bound is broken
1454 if not resolved_receiver.has_mproperty(mmodule, mproperty) then return new MErrorType(model)
1455 return lookup_single_definition(mmodule, resolved_receiver).bound or else new MErrorType(model)
1456 end
1457
1458 private fun lookup_single_definition(mmodule: MModule, resolved_receiver: MType): MVirtualTypeDef
1459 do
1460 assert not resolved_receiver.need_anchor
1461 var props = self.mproperty.lookup_definitions(mmodule, resolved_receiver)
1462 if props.is_empty then
1463 abort
1464 else if props.length == 1 then
1465 return props.first
1466 end
1467 var types = new ArraySet[MType]
1468 var res = props.first
1469 for p in props do
1470 types.add(p.bound.as(not null))
1471 if not res.is_fixed then res = p
1472 end
1473 if types.length == 1 then
1474 return res
1475 end
1476 abort
1477 end
1478
1479 # A VT is fixed when:
1480 # * the VT is (re-)defined with the annotation `is fixed`
1481 # * the receiver is an enum class since there is no subtype that can
1482 # redefine this virtual type
1483 redef fun lookup_fixed(mmodule: MModule, resolved_receiver: MType): MType
1484 do
1485 assert not resolved_receiver.need_anchor
1486 resolved_receiver = resolved_receiver.undecorate
1487 assert resolved_receiver isa MClassType # It is the only remaining type
1488
1489 var prop = lookup_single_definition(mmodule, resolved_receiver)
1490 var res = prop.bound
1491 if res == null then return new MErrorType(model)
1492
1493 # Recursively lookup the fixed result
1494 res = res.lookup_fixed(mmodule, resolved_receiver)
1495
1496 # For a fixed VT, return the resolved bound
1497 if prop.is_fixed then return res
1498
1499 # For a enum receiver return the bound
1500 if resolved_receiver.mclass.kind == enum_kind then return res
1501
1502 return self
1503 end
1504
1505 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1506 do
1507 if not cleanup_virtual then return self
1508 assert can_resolve_for(mtype, anchor, mmodule)
1509
1510 if mproperty.is_selftype then return mtype
1511
1512 # self is a virtual type declared (or inherited) in mtype
1513 # The point of the function it to get the bound of the virtual type that make sense for mtype
1514 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
1515 #print "{class_name}: {self}/{mtype}/{anchor}?"
1516 var resolved_receiver
1517 if mtype.need_anchor then
1518 assert anchor != null
1519 resolved_receiver = mtype.resolve_for(anchor, null, mmodule, true)
1520 else
1521 resolved_receiver = mtype
1522 end
1523 # Now, we can get the bound
1524 var verbatim_bound = lookup_bound(mmodule, resolved_receiver)
1525 # The bound is exactly as declared in the "type" property, so we must resolve it again
1526 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1527
1528 return res
1529 end
1530
1531 redef fun can_resolve_for(mtype, anchor, mmodule)
1532 do
1533 if mtype.need_anchor then
1534 assert anchor != null
1535 mtype = mtype.anchor_to(mmodule, anchor)
1536 end
1537 return mtype.has_mproperty(mmodule, mproperty)
1538 end
1539
1540 redef fun to_s do return self.mproperty.to_s
1541
1542 redef fun full_name do return self.mproperty.full_name
1543
1544 redef fun c_name do return self.mproperty.c_name
1545
1546 redef fun mdoc_or_fallback do return mproperty.mdoc_or_fallback
1547 end
1548
1549 # The type associated to a formal parameter generic type of a class
1550 #
1551 # Each parameter type is associated to a specific class.
1552 # It means that all refinements of a same class "share" the parameter type,
1553 # but that a generic subclass has its own parameter types.
1554 #
1555 # However, in the sense of the meta-model, a parameter type of a class is
1556 # a valid type in a subclass. The "in the sense of the meta-model" is
1557 # important because, in the Nit language, the programmer cannot refers
1558 # directly to the parameter types of the super-classes.
1559 #
1560 # Example:
1561 #
1562 # class A[E]
1563 # fun e: E is abstract
1564 # end
1565 # class B[F]
1566 # super A[Array[F]]
1567 # end
1568 #
1569 # In the class definition B[F], `F` is a valid type but `E` is not.
1570 # However, `self.e` is a valid method call, and the signature of `e` is
1571 # declared `e: E`.
1572 #
1573 # Note that parameter types are shared among class refinements.
1574 # Therefore parameter only have an internal name (see `to_s` for details).
1575 class MParameterType
1576 super MFormalType
1577
1578 # The generic class where the parameter belong
1579 var mclass: MClass
1580
1581 redef fun model do return self.mclass.intro_mmodule.model
1582
1583 redef fun location do return mclass.location
1584
1585 # The position of the parameter (0 for the first parameter)
1586 # FIXME: is `position` a better name?
1587 var rank: Int
1588
1589 redef var name
1590
1591 redef fun to_s do return name
1592
1593 redef var full_name is lazy do return "{mclass.full_name}::{name}"
1594
1595 redef var c_name is lazy do return mclass.c_name + "__" + "#{name}".to_cmangle
1596
1597 redef fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType
1598 do
1599 assert not resolved_receiver.need_anchor
1600 resolved_receiver = resolved_receiver.undecorate
1601 assert resolved_receiver isa MClassType # It is the only remaining type
1602 var goalclass = self.mclass
1603 if resolved_receiver.mclass == goalclass then
1604 return resolved_receiver.arguments[self.rank]
1605 end
1606 var supertypes = resolved_receiver.collect_mtypes(mmodule)
1607 for t in supertypes do
1608 if t.mclass == goalclass then
1609 # Yeah! c specialize goalclass with a "super `t'". So the question is what is the argument of f
1610 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
1611 var res = t.arguments[self.rank]
1612 return res
1613 end
1614 end
1615 # Cannot found `self` in `resolved_receiver`
1616 return new MErrorType(model)
1617 end
1618
1619 # A PT is fixed when:
1620 # * The `resolved_receiver` is a subclass of `self.mclass`,
1621 # so it is necessarily fixed in a `super` clause, either with a normal type
1622 # or with another PT.
1623 # See `resolve_for` for examples about related issues.
1624 redef fun lookup_fixed(mmodule: MModule, resolved_receiver: MType): MType
1625 do
1626 assert not resolved_receiver.need_anchor
1627 resolved_receiver = resolved_receiver.undecorate
1628 assert resolved_receiver isa MClassType # It is the only remaining type
1629 var res = self.resolve_for(resolved_receiver.mclass.mclass_type, resolved_receiver, mmodule, false)
1630 return res
1631 end
1632
1633 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1634 do
1635 assert can_resolve_for(mtype, anchor, mmodule)
1636 #print "{class_name}: {self}/{mtype}/{anchor}?"
1637
1638 if mtype isa MGenericType and mtype.mclass == self.mclass then
1639 return mtype.arguments[self.rank]
1640 end
1641
1642 # self is a parameter type of mtype (or of a super-class of mtype)
1643 # The point of the function it to get the bound of the virtual type that make sense for mtype
1644 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
1645 # FIXME: What happens here is far from clear. Thus this part must be validated and clarified
1646 var resolved_receiver
1647 if mtype.need_anchor then
1648 assert anchor != null
1649 resolved_receiver = mtype.resolve_for(anchor.mclass.mclass_type, anchor, mmodule, true)
1650 else
1651 resolved_receiver = mtype
1652 end
1653 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
1654 if resolved_receiver isa MParameterType then
1655 assert anchor != null
1656 assert resolved_receiver.mclass == anchor.mclass
1657 resolved_receiver = anchor.arguments[resolved_receiver.rank]
1658 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
1659 end
1660 assert resolved_receiver isa MClassType # It is the only remaining type
1661
1662 # Eh! The parameter is in the current class.
1663 # So we return the corresponding argument, no mater what!
1664 if resolved_receiver.mclass == self.mclass then
1665 var res = resolved_receiver.arguments[self.rank]
1666 #print "{class_name}: {self}/{mtype}/{anchor} -> direct {res}"
1667 return res
1668 end
1669
1670 if resolved_receiver.need_anchor then
1671 assert anchor != null
1672 resolved_receiver = resolved_receiver.resolve_for(anchor, null, mmodule, false)
1673 end
1674 # Now, we can get the bound
1675 var verbatim_bound = lookup_bound(mmodule, resolved_receiver)
1676 # The bound is exactly as declared in the "type" property, so we must resolve it again
1677 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1678
1679 #print "{class_name}: {self}/{mtype}/{anchor} -> indirect {res}"
1680
1681 return res
1682 end
1683
1684 redef fun can_resolve_for(mtype, anchor, mmodule)
1685 do
1686 if mtype.need_anchor then
1687 assert anchor != null
1688 mtype = mtype.anchor_to(mmodule, anchor)
1689 end
1690 return mtype.collect_mclassdefs(mmodule).has(mclass.intro)
1691 end
1692 end
1693
1694 # A type that decorates another type.
1695 #
1696 # The point of this class is to provide a common implementation of sevices that just forward to the original type.
1697 # Specific decorator are expected to redefine (or to extend) the default implementation as this suit them.
1698 abstract class MProxyType
1699 super MType
1700 # The base type
1701 var mtype: MType
1702
1703 redef fun location do return mtype.location
1704
1705 redef fun model do return self.mtype.model
1706 redef fun need_anchor do return mtype.need_anchor
1707 redef fun as_nullable do return mtype.as_nullable
1708 redef fun as_notnull do return mtype.as_notnull
1709 redef fun undecorate do return mtype.undecorate
1710 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1711 do
1712 var res = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1713 return res
1714 end
1715
1716 redef fun can_resolve_for(mtype, anchor, mmodule)
1717 do
1718 return self.mtype.can_resolve_for(mtype, anchor, mmodule)
1719 end
1720
1721 redef fun is_ok do return mtype.is_ok
1722
1723 redef fun is_legal_in(mmodule, anchor) do return mtype.is_legal_in(mmodule, anchor)
1724
1725 redef fun lookup_fixed(mmodule, resolved_receiver)
1726 do
1727 var t = mtype.lookup_fixed(mmodule, resolved_receiver)
1728 return t
1729 end
1730
1731 redef fun depth do return self.mtype.depth
1732
1733 redef fun length do return self.mtype.length
1734
1735 redef fun collect_mclassdefs(mmodule)
1736 do
1737 assert not self.need_anchor
1738 return self.mtype.collect_mclassdefs(mmodule)
1739 end
1740
1741 redef fun collect_mclasses(mmodule)
1742 do
1743 assert not self.need_anchor
1744 return self.mtype.collect_mclasses(mmodule)
1745 end
1746
1747 redef fun collect_mtypes(mmodule)
1748 do
1749 assert not self.need_anchor
1750 return self.mtype.collect_mtypes(mmodule)
1751 end
1752 end
1753
1754 # A type prefixed with "nullable"
1755 class MNullableType
1756 super MProxyType
1757
1758 init
1759 do
1760 self.to_s = "nullable {mtype}"
1761 end
1762
1763 redef var to_s is noinit
1764
1765 redef var full_name is lazy do return "nullable {mtype.full_name}"
1766
1767 redef var c_name is lazy do return "nullable__{mtype.c_name}"
1768
1769 redef fun as_nullable do return self
1770 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1771 do
1772 var res = super
1773 return res.as_nullable
1774 end
1775
1776 # Efficiently returns `mtype.lookup_fixed(mmodule, resolved_receiver).as_nullable`
1777 redef fun lookup_fixed(mmodule, resolved_receiver)
1778 do
1779 var t = super
1780 if t == mtype then return self
1781 return t.as_nullable
1782 end
1783 end
1784
1785 # A non-null version of a formal type.
1786 #
1787 # When a formal type in bounded to a nullable type, this is the type of the not null version of it.
1788 class MNotNullType
1789 super MProxyType
1790
1791 redef fun to_s do return "not null {mtype}"
1792 redef var full_name is lazy do return "not null {mtype.full_name}"
1793 redef var c_name is lazy do return "notnull__{mtype.c_name}"
1794
1795 redef fun as_notnull do return self
1796
1797 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1798 do
1799 var res = super
1800 return res.as_notnull
1801 end
1802
1803 # Efficiently returns `mtype.lookup_fixed(mmodule, resolved_receiver).as_notnull`
1804 redef fun lookup_fixed(mmodule, resolved_receiver)
1805 do
1806 var t = super
1807 if t == mtype then return self
1808 return t.as_notnull
1809 end
1810 end
1811
1812 # The type of the only value null
1813 #
1814 # The is only one null type per model, see `MModel::null_type`.
1815 class MNullType
1816 super MType
1817 redef var model
1818 redef fun to_s do return "null"
1819 redef fun full_name do return "null"
1820 redef fun c_name do return "null"
1821 redef fun as_nullable do return self
1822
1823 redef var as_notnull: MBottomType = new MBottomType(model) is lazy
1824 redef fun need_anchor do return false
1825 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual) do return self
1826 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1827
1828 redef fun collect_mclassdefs(mmodule) do return new HashSet[MClassDef]
1829
1830 redef fun collect_mclasses(mmodule) do return new HashSet[MClass]
1831
1832 redef fun collect_mtypes(mmodule) do return new HashSet[MClassType]
1833 end
1834
1835 # The special universal most specific type.
1836 #
1837 # This type is intended to be only used internally for type computation or analysis and should not be exposed to the user.
1838 # The bottom type can de used to denote things that are dead (no instance).
1839 #
1840 # Semantically it is the singleton `null.as_notnull`.
1841 # Is also means that `self.as_nullable == null`.
1842 class MBottomType
1843 super MType
1844 redef var model
1845 redef fun to_s do return "bottom"
1846 redef fun full_name do return "bottom"
1847 redef fun c_name do return "bottom"
1848 redef fun as_nullable do return model.null_type
1849 redef fun as_notnull do return self
1850 redef fun need_anchor do return false
1851 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual) do return self
1852 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1853
1854 redef fun collect_mclassdefs(mmodule) do return new HashSet[MClassDef]
1855
1856 redef fun collect_mclasses(mmodule) do return new HashSet[MClass]
1857
1858 redef fun collect_mtypes(mmodule) do return new HashSet[MClassType]
1859 end
1860
1861 # A special type used as a silent error marker when building types.
1862 #
1863 # This type is intended to be only used internally for type operation and should not be exposed to the user.
1864 # The error type can de used to denote things that are conflicting or inconsistent.
1865 #
1866 # Some methods on types can return a `MErrorType` to denote a broken or a conflicting result.
1867 # Use `is_ok` to check if a type is (or contains) a `MErrorType` .
1868 class MErrorType
1869 super MType
1870 redef var model
1871 redef fun to_s do return "error"
1872 redef fun full_name do return "error"
1873 redef fun c_name do return "error"
1874 redef fun need_anchor do return false
1875 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual) do return self
1876 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1877 redef fun is_ok do return false
1878
1879 redef fun collect_mclassdefs(mmodule) do return new HashSet[MClassDef]
1880
1881 redef fun collect_mclasses(mmodule) do return new HashSet[MClass]
1882
1883 redef fun collect_mtypes(mmodule) do return new HashSet[MClassType]
1884 end
1885
1886 # A signature of a method
1887 class MSignature
1888 super MType
1889
1890 # The each parameter (in order)
1891 var mparameters: Array[MParameter]
1892
1893 # Returns a parameter named `name`, if any.
1894 fun mparameter_by_name(name: String): nullable MParameter
1895 do
1896 for p in mparameters do
1897 if p.name == name then return p
1898 end
1899 return null
1900 end
1901
1902 # The return type (null for a procedure)
1903 var return_mtype: nullable MType
1904
1905 redef fun depth
1906 do
1907 var dmax = 0
1908 var t = self.return_mtype
1909 if t != null then dmax = t.depth
1910 for p in mparameters do
1911 var d = p.mtype.depth
1912 if d > dmax then dmax = d
1913 end
1914 return dmax + 1
1915 end
1916
1917 redef fun length
1918 do
1919 var res = 1
1920 var t = self.return_mtype
1921 if t != null then res += t.length
1922 for p in mparameters do
1923 res += p.mtype.length
1924 end
1925 return res
1926 end
1927
1928 # REQUIRE: 1 <= mparameters.count p -> p.is_vararg
1929 init
1930 do
1931 var vararg_rank = -1
1932 for i in [0..mparameters.length[ do
1933 var parameter = mparameters[i]
1934 if parameter.is_vararg then
1935 if vararg_rank >= 0 then
1936 # If there is more than one vararg,
1937 # consider that additional arguments cannot be mapped.
1938 vararg_rank = -1
1939 break
1940 end
1941 vararg_rank = i
1942 end
1943 end
1944 self.vararg_rank = vararg_rank
1945 end
1946
1947 # The rank of the main ellipsis (`...`) for vararg (starting from 0).
1948 # value is -1 if there is no vararg.
1949 # Example: for "(a: Int, b: Bool..., c: Char)" #-> vararg_rank=1
1950 #
1951 # From a model POV, a signature can contain more than one vararg parameter,
1952 # the `vararg_rank` just indicates the one that will receive the additional arguments.
1953 # However, currently, if there is more that one vararg parameter, no one will be the main one,
1954 # and additional arguments will be refused.
1955 var vararg_rank: Int is noinit
1956
1957 # The number of parameters
1958 fun arity: Int do return mparameters.length
1959
1960 redef fun to_s
1961 do
1962 var b = new FlatBuffer
1963 if not mparameters.is_empty then
1964 b.append("(")
1965 for i in [0..mparameters.length[ do
1966 var mparameter = mparameters[i]
1967 if i > 0 then b.append(", ")
1968 b.append(mparameter.name)
1969 b.append(": ")
1970 b.append(mparameter.mtype.to_s)
1971 if mparameter.is_vararg then
1972 b.append("...")
1973 end
1974 end
1975 b.append(")")
1976 end
1977 var ret = self.return_mtype
1978 if ret != null then
1979 b.append(": ")
1980 b.append(ret.to_s)
1981 end
1982 return b.to_s
1983 end
1984
1985 redef fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MSignature
1986 do
1987 var params = new Array[MParameter]
1988 for p in self.mparameters do
1989 params.add(p.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1990 end
1991 var ret = self.return_mtype
1992 if ret != null then
1993 ret = ret.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1994 end
1995 var res = new MSignature(params, ret)
1996 return res
1997 end
1998 end
1999
2000 # A parameter in a signature
2001 class MParameter
2002 super MEntity
2003
2004 # The name of the parameter
2005 redef var name
2006
2007 # The static type of the parameter
2008 var mtype: MType
2009
2010 # Is the parameter a vararg?
2011 var is_vararg: Bool
2012
2013 redef fun to_s
2014 do
2015 if is_vararg then
2016 return "{name}: {mtype}..."
2017 else
2018 return "{name}: {mtype}"
2019 end
2020 end
2021
2022 # Returns a new parameter with the `mtype` resolved.
2023 # See `MType::resolve_for` for details.
2024 fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MParameter
2025 do
2026 if not self.mtype.need_anchor then return self
2027 var newtype = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
2028 var res = new MParameter(self.name, newtype, self.is_vararg)
2029 return res
2030 end
2031
2032 redef fun model do return mtype.model
2033 end
2034
2035 # A service (global property) that generalize method, attribute, etc.
2036 #
2037 # `MProperty` are global to the model; it means that a `MProperty` is not bound
2038 # to a specific `MModule` nor a specific `MClass`.
2039 #
2040 # A MProperty gather definitions (see `mpropdefs`) ; one for the introduction
2041 # and the other in subclasses and in refinements.
2042 #
2043 # A `MProperty` is used to denotes services in polymorphic way (ie. independent
2044 # of any dynamic type).
2045 # For instance, a call site "x.foo" is associated to a `MProperty`.
2046 abstract class MProperty
2047 super MEntity
2048
2049 # The associated MPropDef subclass.
2050 # The two specialization hierarchy are symmetric.
2051 type MPROPDEF: MPropDef
2052
2053 # The classdef that introduce the property
2054 # While a property is not bound to a specific module, or class,
2055 # the introducing mclassdef is used for naming and visibility
2056 var intro_mclassdef: MClassDef
2057
2058 # The (short) name of the property
2059 redef var name
2060
2061 redef var location
2062
2063 redef fun mdoc_or_fallback
2064 do
2065 # Don’t use `intro.mdoc_or_fallback` because it would create an infinite
2066 # recursion.
2067 return intro.mdoc
2068 end
2069
2070 # The canonical name of the property.
2071 #
2072 # It is currently the short-`name` prefixed by the short-name of the class and the full-name of the module.
2073 # Example: "my_package::my_module::MyClass::my_method"
2074 #
2075 # The full-name of the module is needed because two distinct modules of the same package can
2076 # still refine the same class and introduce homonym properties.
2077 #
2078 # For public properties not introduced by refinement, the module name is not used.
2079 #
2080 # Example: `my_package::MyClass::My_method`
2081 redef var full_name is lazy do
2082 if intro_mclassdef.is_intro then
2083 return "{intro_mclassdef.mmodule.namespace_for(visibility)}::{intro_mclassdef.mclass.name}::{name}"
2084 else
2085 return "{intro_mclassdef.mmodule.full_name}::{intro_mclassdef.mclass.name}::{name}"
2086 end
2087 end
2088
2089 redef var c_name is lazy do
2090 # FIXME use `namespace_for`
2091 return "{intro_mclassdef.mmodule.c_name}__{intro_mclassdef.mclass.name.to_cmangle}__{name.to_cmangle}"
2092 end
2093
2094 # The visibility of the property
2095 redef var visibility
2096
2097 # Is the property usable as an initializer?
2098 var is_autoinit = false is writable
2099
2100 init
2101 do
2102 intro_mclassdef.intro_mproperties.add(self)
2103 var model = intro_mclassdef.mmodule.model
2104 model.mproperties_by_name.add_one(name, self)
2105 model.mproperties.add(self)
2106 end
2107
2108 # All definitions of the property.
2109 # The first is the introduction,
2110 # The other are redefinitions (in refinements and in subclasses)
2111 var mpropdefs = new Array[MPROPDEF]
2112
2113 # The definition that introduces the property.
2114 #
2115 # Warning: such a definition may not exist in the early life of the object.
2116 # In this case, the method will abort.
2117 var intro: MPROPDEF is noinit
2118
2119 redef fun model do return intro.model
2120
2121 # Alias for `name`
2122 redef fun to_s do return name
2123
2124 # Return the most specific property definitions defined or inherited by a type.
2125 # The selection knows that refinement is stronger than specialization;
2126 # however, in case of conflict more than one property are returned.
2127 # If mtype does not know mproperty then an empty array is returned.
2128 #
2129 # If you want the really most specific property, then look at `lookup_first_definition`
2130 #
2131 # REQUIRE: `not mtype.need_anchor` to simplify the API (no `anchor` parameter)
2132 # ENSURE: `not mtype.has_mproperty(mmodule, self) == result.is_empty`
2133 fun lookup_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
2134 do
2135 assert not mtype.need_anchor
2136 mtype = mtype.undecorate
2137
2138 var cache = self.lookup_definitions_cache[mmodule, mtype]
2139 if cache != null then return cache
2140
2141 #print "select prop {mproperty} for {mtype} in {self}"
2142 # First, select all candidates
2143 var candidates = new Array[MPROPDEF]
2144
2145 # Here we have two strategies: iterate propdefs or iterate classdefs.
2146 var mpropdefs = self.mpropdefs
2147 if mpropdefs.length <= 1 or mpropdefs.length < mtype.collect_mclassdefs(mmodule).length then
2148 # Iterate on all definitions of `self`, keep only those inherited by `mtype` in `mmodule`
2149 for mpropdef in mpropdefs do
2150 # If the definition is not imported by the module, then skip
2151 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
2152 # If the definition is not inherited by the type, then skip
2153 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
2154 # Else, we keep it
2155 candidates.add(mpropdef)
2156 end
2157 else
2158 # Iterate on all super-classdefs of `mtype`, keep only the definitions of `self`, if any.
2159 for mclassdef in mtype.collect_mclassdefs(mmodule) do
2160 var p = mclassdef.mpropdefs_by_property.get_or_null(self)
2161 if p != null then candidates.add p
2162 end
2163 end
2164
2165 # Fast track for only one candidate
2166 if candidates.length <= 1 then
2167 self.lookup_definitions_cache[mmodule, mtype] = candidates
2168 return candidates
2169 end
2170
2171 # Second, filter the most specific ones
2172 return select_most_specific(mmodule, candidates)
2173 end
2174
2175 private var lookup_definitions_cache = new HashMap2[MModule, MType, Array[MPROPDEF]]
2176
2177 # Return the most specific property definitions inherited by a type.
2178 # The selection knows that refinement is stronger than specialization;
2179 # however, in case of conflict more than one property are returned.
2180 # If mtype does not know mproperty then an empty array is returned.
2181 #
2182 # If you want the really most specific property, then look at `lookup_next_definition`
2183 #
2184 # REQUIRE: `not mtype.need_anchor` to simplify the API (no `anchor` parameter)
2185 # ENSURE: `not mtype.has_mproperty(mmodule, self) implies result.is_empty`
2186 fun lookup_super_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
2187 do
2188 assert not mtype.need_anchor
2189 mtype = mtype.undecorate
2190
2191 # First, select all candidates
2192 var candidates = new Array[MPROPDEF]
2193 for mpropdef in self.mpropdefs do
2194 # If the definition is not imported by the module, then skip
2195 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
2196 # If the definition is not inherited by the type, then skip
2197 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
2198 # If the definition is defined by the type, then skip (we want the super, so e skip the current)
2199 if mtype == mpropdef.mclassdef.bound_mtype and mmodule == mpropdef.mclassdef.mmodule then continue
2200 # Else, we keep it
2201 candidates.add(mpropdef)
2202 end
2203 # Fast track for only one candidate
2204 if candidates.length <= 1 then return candidates
2205
2206 # Second, filter the most specific ones
2207 return select_most_specific(mmodule, candidates)
2208 end
2209
2210 # Return an array containing olny the most specific property definitions
2211 # This is an helper function for `lookup_definitions` and `lookup_super_definitions`
2212 private fun select_most_specific(mmodule: MModule, candidates: Array[MPROPDEF]): Array[MPROPDEF]
2213 do
2214 var res = new Array[MPROPDEF]
2215 for pd1 in candidates do
2216 var cd1 = pd1.mclassdef
2217 var c1 = cd1.mclass
2218 var keep = true
2219 for pd2 in candidates do
2220 if pd2 == pd1 then continue # do not compare with self!
2221 var cd2 = pd2.mclassdef
2222 var c2 = cd2.mclass
2223 if c2.mclass_type == c1.mclass_type then
2224 if cd2.mmodule.in_importation < cd1.mmodule then
2225 # cd2 refines cd1; therefore we skip pd1
2226 keep = false
2227 break
2228 end
2229 else if cd2.bound_mtype.is_subtype(mmodule, null, cd1.bound_mtype) and cd2.bound_mtype != cd1.bound_mtype then
2230 # cd2 < cd1; therefore we skip pd1
2231 keep = false
2232 break
2233 end
2234 end
2235 if keep then
2236 res.add(pd1)
2237 end
2238 end
2239 if res.is_empty then
2240 print_error "All lost! {candidates.join(", ")}"
2241 # FIXME: should be abort!
2242 end
2243 return res
2244 end
2245
2246 # Return the most specific definition in the linearization of `mtype`.
2247 #
2248 # If you want to know the next properties in the linearization,
2249 # look at `MPropDef::lookup_next_definition`.
2250 #
2251 # FIXME: the linearization is still unspecified
2252 #
2253 # REQUIRE: `not mtype.need_anchor` to simplify the API (no `anchor` parameter)
2254 # REQUIRE: `mtype.has_mproperty(mmodule, self)`
2255 fun lookup_first_definition(mmodule: MModule, mtype: MType): MPROPDEF
2256 do
2257 return lookup_all_definitions(mmodule, mtype).first
2258 end
2259
2260 # Return all definitions in a linearization order
2261 # Most specific first, most general last
2262 #
2263 # REQUIRE: `not mtype.need_anchor` to simplify the API (no `anchor` parameter)
2264 # REQUIRE: `mtype.has_mproperty(mmodule, self)`
2265 fun lookup_all_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
2266 do
2267 mtype = mtype.undecorate
2268
2269 var cache = self.lookup_all_definitions_cache[mmodule, mtype]
2270 if cache != null then return cache
2271
2272 assert not mtype.need_anchor
2273 assert mtype.has_mproperty(mmodule, self)
2274
2275 #print "select prop {mproperty} for {mtype} in {self}"
2276 # First, select all candidates
2277 var candidates = new Array[MPROPDEF]
2278 for mpropdef in self.mpropdefs do
2279 # If the definition is not imported by the module, then skip
2280 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
2281 # If the definition is not inherited by the type, then skip
2282 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
2283 # Else, we keep it
2284 candidates.add(mpropdef)
2285 end
2286 # Fast track for only one candidate
2287 if candidates.length <= 1 then
2288 self.lookup_all_definitions_cache[mmodule, mtype] = candidates
2289 return candidates
2290 end
2291
2292 mmodule.linearize_mpropdefs(candidates)
2293 candidates = candidates.reversed
2294 self.lookup_all_definitions_cache[mmodule, mtype] = candidates
2295 return candidates
2296 end
2297
2298 private var lookup_all_definitions_cache = new HashMap2[MModule, MType, Array[MPROPDEF]]
2299 end
2300
2301 # A global method
2302 class MMethod
2303 super MProperty
2304
2305 redef type MPROPDEF: MMethodDef
2306
2307 # Is the property defined at the top_level of the module?
2308 # Currently such a property are stored in `Object`
2309 var is_toplevel: Bool = false is writable
2310
2311 # Is the property a constructor?
2312 # Warning, this property can be inherited by subclasses with or without being a constructor
2313 # therefore, you should use `is_init_for` the verify if the property is a legal constructor for a given class
2314 var is_init: Bool = false is writable
2315
2316 # The constructor is a (the) root init with empty signature but a set of initializers
2317 var is_root_init: Bool = false is writable
2318
2319 # Is the property a 'new' constructor?
2320 var is_new: Bool = false is writable
2321
2322 # Is the property a legal constructor for a given class?
2323 # As usual, visibility is not considered.
2324 # FIXME not implemented
2325 fun is_init_for(mclass: MClass): Bool
2326 do
2327 return self.is_init
2328 end
2329
2330 # A specific method that is safe to call on null.
2331 # Currently, only `==`, `!=` and `is_same_instance` are safe
2332 fun is_null_safe: Bool do return name == "==" or name == "!=" or name == "is_same_instance"
2333 end
2334
2335 # A global attribute
2336 class MAttribute
2337 super MProperty
2338
2339 redef type MPROPDEF: MAttributeDef
2340
2341 end
2342
2343 # A global virtual type
2344 class MVirtualTypeProp
2345 super MProperty
2346
2347 redef type MPROPDEF: MVirtualTypeDef
2348
2349 # The formal type associated to the virtual type property
2350 var mvirtualtype = new MVirtualType(self)
2351
2352 # Is `self` the special virtual type `SELF`?
2353 var is_selftype: Bool is lazy do return name == "SELF"
2354 end
2355
2356 # A definition of a property (local property)
2357 #
2358 # Unlike `MProperty`, a `MPropDef` is a local definition that belong to a
2359 # specific class definition (which belong to a specific module)
2360 abstract class MPropDef
2361 super MEntity
2362
2363 # The associated `MProperty` subclass.
2364 # the two specialization hierarchy are symmetric
2365 type MPROPERTY: MProperty
2366
2367 # Self class
2368 type MPROPDEF: MPropDef
2369
2370 # The class definition where the property definition is
2371 var mclassdef: MClassDef
2372
2373 # The associated global property
2374 var mproperty: MPROPERTY
2375
2376 redef var location: Location
2377
2378 redef fun visibility do return mproperty.visibility
2379
2380 init
2381 do
2382 mclassdef.mpropdefs.add(self)
2383 mproperty.mpropdefs.add(self)
2384 mclassdef.mpropdefs_by_property[mproperty] = self
2385 if mproperty.intro_mclassdef == mclassdef then
2386 assert not isset mproperty._intro
2387 mproperty.intro = self
2388 end
2389 self.to_s = "{mclassdef}${mproperty}"
2390 end
2391
2392 # Actually the name of the `mproperty`
2393 redef fun name do return mproperty.name
2394
2395 # The full-name of mpropdefs combine the information about the `classdef` and the `mproperty`.
2396 #
2397 # Therefore the combination of identifiers is awful,
2398 # the worst case being
2399 #
2400 # * a property "p::m::A::x"
2401 # * redefined in a refinement of a class "q::n::B"
2402 # * in a module "r::o"
2403 # * so "r::o$q::n::B$p::m::A::x"
2404 #
2405 # Fortunately, the full-name is simplified when entities are repeated.
2406 # For the previous case, the simplest form is "p$A$x".
2407 redef var full_name is lazy do
2408 var res = new FlatBuffer
2409
2410 # The first part is the mclassdef. Worst case is "r::o$q::n::B"
2411 res.append mclassdef.full_name
2412
2413 res.append "$"
2414
2415 if mclassdef.mclass == mproperty.intro_mclassdef.mclass then
2416 # intro are unambiguous in a class
2417 res.append name
2418 else
2419 # Just try to simplify each part
2420 if mclassdef.mmodule.mpackage != mproperty.intro_mclassdef.mmodule.mpackage then
2421 # precise "p::m" only if "p" != "r"
2422 res.append mproperty.intro_mclassdef.mmodule.namespace_for(mproperty.visibility)
2423 res.append "::"
2424 else if mproperty.visibility <= private_visibility then
2425 # Same package ("p"=="q"), but private visibility,
2426 # does the module part ("::m") need to be displayed
2427 if mclassdef.mmodule.namespace_for(mclassdef.mclass.visibility) != mproperty.intro_mclassdef.mmodule.mpackage then
2428 res.append "::"
2429 res.append mproperty.intro_mclassdef.mmodule.name
2430 res.append "::"
2431 end
2432 end
2433 # precise "B" because it is not the same class than "A"
2434 res.append mproperty.intro_mclassdef.name
2435 res.append "::"
2436 # Always use the property name "x"
2437 res.append mproperty.name
2438 end
2439 return res.to_s
2440 end
2441
2442 redef var c_name is lazy do
2443 var res = new FlatBuffer
2444 res.append mclassdef.c_name
2445 res.append "___"
2446 if mclassdef.mclass == mproperty.intro_mclassdef.mclass then
2447 res.append name.to_cmangle
2448 else
2449 if mclassdef.mmodule != mproperty.intro_mclassdef.mmodule then
2450 res.append mproperty.intro_mclassdef.mmodule.c_name
2451 res.append "__"
2452 end
2453 res.append mproperty.intro_mclassdef.name.to_cmangle
2454 res.append "__"
2455 res.append mproperty.name.to_cmangle
2456 end
2457 return res.to_s
2458 end
2459
2460 redef fun model do return mclassdef.model
2461
2462 # Internal name combining the module, the class and the property
2463 # Example: "mymodule$MyClass$mymethod"
2464 redef var to_s is noinit
2465
2466 # Is self the definition that introduce the property?
2467 fun is_intro: Bool do return isset mproperty._intro and mproperty.intro == self
2468
2469 # Return the next definition in linearization of `mtype`.
2470 #
2471 # This method is used to determine what method is called by a super.
2472 #
2473 # REQUIRE: `not mtype.need_anchor`
2474 fun lookup_next_definition(mmodule: MModule, mtype: MType): MPROPDEF
2475 do
2476 assert not mtype.need_anchor
2477
2478 var mpropdefs = self.mproperty.lookup_all_definitions(mmodule, mtype)
2479 var i = mpropdefs.iterator
2480 while i.is_ok and i.item != self do i.next
2481 assert has_property: i.is_ok
2482 i.next
2483 assert has_next_property: i.is_ok
2484 return i.item
2485 end
2486
2487 redef fun mdoc_or_fallback do return mdoc or else mproperty.mdoc_or_fallback
2488 end
2489
2490 # A local definition of a method
2491 class MMethodDef
2492 super MPropDef
2493
2494 redef type MPROPERTY: MMethod
2495 redef type MPROPDEF: MMethodDef
2496
2497 # The signature attached to the property definition
2498 var msignature: nullable MSignature = null is writable
2499
2500 # The signature attached to the `new` call on a root-init
2501 # This is a concatenation of the signatures of the initializers
2502 #
2503 # REQUIRE `mproperty.is_root_init == (new_msignature != null)`
2504 var new_msignature: nullable MSignature = null is writable
2505
2506 # List of initialisers to call in root-inits
2507 #
2508 # They could be setters or attributes
2509 #
2510 # REQUIRE `mproperty.is_root_init == (new_msignature != null)`
2511 var initializers = new Array[MProperty]
2512
2513 # Is the method definition abstract?
2514 var is_abstract: Bool = false is writable
2515
2516 # Is the method definition intern?
2517 var is_intern = false is writable
2518
2519 # Is the method definition extern?
2520 var is_extern = false is writable
2521
2522 # An optional constant value returned in functions.
2523 #
2524 # Only some specific primitife value are accepted by engines.
2525 # Is used when there is no better implementation available.
2526 #
2527 # Currently used only for the implementation of the `--define`
2528 # command-line option.
2529 # SEE: module `mixin`.
2530 var constant_value: nullable Object = null is writable
2531 end
2532
2533 # A local definition of an attribute
2534 class MAttributeDef
2535 super MPropDef
2536
2537 redef type MPROPERTY: MAttribute
2538 redef type MPROPDEF: MAttributeDef
2539
2540 # The static type of the attribute
2541 var static_mtype: nullable MType = null is writable
2542 end
2543
2544 # A local definition of a virtual type
2545 class MVirtualTypeDef
2546 super MPropDef
2547
2548 redef type MPROPERTY: MVirtualTypeProp
2549 redef type MPROPDEF: MVirtualTypeDef
2550
2551 # The bound of the virtual type
2552 var bound: nullable MType = null is writable
2553
2554 # Is the bound fixed?
2555 var is_fixed = false is writable
2556 end
2557
2558 # A kind of class.
2559 #
2560 # * `abstract_kind`
2561 # * `concrete_kind`
2562 # * `interface_kind`
2563 # * `enum_kind`
2564 # * `extern_kind`
2565 #
2566 # Note this class is basically an enum.
2567 # FIXME: use a real enum once user-defined enums are available
2568 class MClassKind
2569 redef var to_s
2570
2571 # Is a constructor required?
2572 var need_init: Bool
2573
2574 # TODO: private init because enumeration.
2575
2576 # Can a class of kind `self` specializes a class of kind `other`?
2577 fun can_specialize(other: MClassKind): Bool
2578 do
2579 if other == interface_kind then return true # everybody can specialize interfaces
2580 if self == interface_kind or self == enum_kind then
2581 # no other case for interfaces
2582 return false
2583 else if self == extern_kind then
2584 # only compatible with themselves
2585 return self == other
2586 else if other == enum_kind or other == extern_kind then
2587 # abstract_kind and concrete_kind are incompatible
2588 return false
2589 end
2590 # remain only abstract_kind and concrete_kind
2591 return true
2592 end
2593 end
2594
2595 # The class kind `abstract`
2596 fun abstract_kind: MClassKind do return once new MClassKind("abstract class", true)
2597 # The class kind `concrete`
2598 fun concrete_kind: MClassKind do return once new MClassKind("class", true)
2599 # The class kind `interface`
2600 fun interface_kind: MClassKind do return once new MClassKind("interface", false)
2601 # The class kind `enum`
2602 fun enum_kind: MClassKind do return once new MClassKind("enum", false)
2603 # The class kind `extern`
2604 fun extern_kind: MClassKind do return once new MClassKind("extern class", false)