src: reduce warnings and spelling errors
[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 Model
34 # All known classes
35 var mclasses = new Array[MClass]
36
37 # All known properties
38 var mproperties = new Array[MProperty]
39
40 # Hierarchy of class definition.
41 #
42 # Each classdef is associated with its super-classdefs in regard to
43 # its module of definition.
44 var mclassdef_hierarchy = new POSet[MClassDef]
45
46 # Class-type hierarchy restricted to the introduction.
47 #
48 # The idea is that what is true on introduction is always true whatever
49 # the module considered.
50 # Therefore, this hierarchy is used for a fast positive subtype check.
51 #
52 # This poset will evolve in a monotonous way:
53 # * Two non connected nodes will remain unconnected
54 # * New nodes can appear with new edges
55 private var intro_mtype_specialization_hierarchy = new POSet[MClassType]
56
57 # Global overlapped class-type hierarchy.
58 # The hierarchy when all modules are combined.
59 # Therefore, this hierarchy is used for a fast negative subtype check.
60 #
61 # This poset will evolve in an anarchic way. Loops can even be created.
62 #
63 # FIXME decide what to do on loops
64 private var full_mtype_specialization_hierarchy = new POSet[MClassType]
65
66 # Collections of classes grouped by their short name
67 private var mclasses_by_name = new MultiHashMap[String, MClass]
68
69 # Return all class named `name`.
70 #
71 # If such a class does not exist, null is returned
72 # (instead of an empty array)
73 #
74 # Visibility or modules are not considered
75 fun get_mclasses_by_name(name: String): nullable Array[MClass]
76 do
77 if mclasses_by_name.has_key(name) then
78 return mclasses_by_name[name]
79 else
80 return null
81 end
82 end
83
84 # Collections of properties grouped by their short name
85 private var mproperties_by_name = new MultiHashMap[String, MProperty]
86
87 # Return all properties named `name`.
88 #
89 # If such a property does not exist, null is returned
90 # (instead of an empty array)
91 #
92 # Visibility or modules are not considered
93 fun get_mproperties_by_name(name: String): nullable Array[MProperty]
94 do
95 if not mproperties_by_name.has_key(name) then
96 return null
97 else
98 return mproperties_by_name[name]
99 end
100 end
101
102 # The only null type
103 var null_type = new MNullType(self)
104
105 # Build an ordered tree with from `concerns`
106 fun concerns_tree(mconcerns: Collection[MConcern]): ConcernsTree do
107 var seen = new HashSet[MConcern]
108 var res = new ConcernsTree
109
110 var todo = new Array[MConcern]
111 todo.add_all mconcerns
112
113 while not todo.is_empty do
114 var c = todo.pop
115 if seen.has(c) then continue
116 var pc = c.parent_concern
117 if pc == null then
118 res.add(null, c)
119 else
120 res.add(pc, c)
121 todo.add(pc)
122 end
123 seen.add(c)
124 end
125
126 return res
127 end
128 end
129
130 # An OrderedTree that can be easily refined for display purposes
131 class ConcernsTree
132 super OrderedTree[MConcern]
133 end
134
135 redef class MModule
136 # All the classes introduced in the module
137 var intro_mclasses = new Array[MClass]
138
139 # All the class definitions of the module
140 # (introduction and refinement)
141 var mclassdefs = new Array[MClassDef]
142
143 # Does the current module has a given class `mclass`?
144 # Return true if the mmodule introduces, refines or imports a class.
145 # Visibility is not considered.
146 fun has_mclass(mclass: MClass): Bool
147 do
148 return self.in_importation <= mclass.intro_mmodule
149 end
150
151 # Full hierarchy of introduced ans imported classes.
152 #
153 # Create a new hierarchy got by flattening the classes for the module
154 # and its imported modules.
155 # Visibility is not considered.
156 #
157 # Note: this function is expensive and is usually used for the main
158 # module of a program only. Do not use it to do you own subtype
159 # functions.
160 fun flatten_mclass_hierarchy: POSet[MClass]
161 do
162 var res = self.flatten_mclass_hierarchy_cache
163 if res != null then return res
164 res = new POSet[MClass]
165 for m in self.in_importation.greaters do
166 for cd in m.mclassdefs do
167 var c = cd.mclass
168 res.add_node(c)
169 for s in cd.supertypes do
170 res.add_edge(c, s.mclass)
171 end
172 end
173 end
174 self.flatten_mclass_hierarchy_cache = res
175 return res
176 end
177
178 # Sort a given array of classes using the linearization order of the module
179 # The most general is first, the most specific is last
180 fun linearize_mclasses(mclasses: Array[MClass])
181 do
182 self.flatten_mclass_hierarchy.sort(mclasses)
183 end
184
185 # Sort a given array of class definitions using the linearization order of the module
186 # the refinement link is stronger than the specialisation link
187 # The most general is first, the most specific is last
188 fun linearize_mclassdefs(mclassdefs: Array[MClassDef])
189 do
190 var sorter = new MClassDefSorter(self)
191 sorter.sort(mclassdefs)
192 end
193
194 # Sort a given array of property definitions using the linearization order of the module
195 # the refinement link is stronger than the specialisation link
196 # The most general is first, the most specific is last
197 fun linearize_mpropdefs(mpropdefs: Array[MPropDef])
198 do
199 var sorter = new MPropDefSorter(self)
200 sorter.sort(mpropdefs)
201 end
202
203 private var flatten_mclass_hierarchy_cache: nullable POSet[MClass] = null
204
205 # The primitive type `Object`, the root of the class hierarchy
206 fun object_type: MClassType
207 do
208 var res = self.object_type_cache
209 if res != null then return res
210 res = self.get_primitive_class("Object").mclass_type
211 self.object_type_cache = res
212 return res
213 end
214
215 private var object_type_cache: nullable MClassType
216
217 # The type `Pointer`, super class to all extern classes
218 var pointer_type: MClassType = self.get_primitive_class("Pointer").mclass_type is lazy
219
220 # The primitive type `Bool`
221 fun bool_type: MClassType
222 do
223 var res = self.bool_type_cache
224 if res != null then return res
225 res = self.get_primitive_class("Bool").mclass_type
226 self.bool_type_cache = res
227 return res
228 end
229
230 private var bool_type_cache: nullable MClassType
231
232 # The primitive type `Sys`, the main type of the program, if any
233 fun sys_type: nullable MClassType
234 do
235 var clas = self.model.get_mclasses_by_name("Sys")
236 if clas == null then return null
237 return get_primitive_class("Sys").mclass_type
238 end
239
240 # The primitive type `Finalizable`
241 # Used to tag classes that need to be finalized.
242 fun finalizable_type: nullable MClassType
243 do
244 var clas = self.model.get_mclasses_by_name("Finalizable")
245 if clas == null then return null
246 return get_primitive_class("Finalizable").mclass_type
247 end
248
249 # Force to get the primitive class named `name` or abort
250 fun get_primitive_class(name: String): MClass
251 do
252 var cla = self.model.get_mclasses_by_name(name)
253 if cla == null then
254 if name == "Bool" then
255 var c = new MClass(self, name, null, enum_kind, public_visibility)
256 var cladef = new MClassDef(self, c.mclass_type, new Location(null, 0,0,0,0))
257 return c
258 end
259 print("Fatal Error: no primitive class {name}")
260 exit(1)
261 end
262 if cla.length != 1 then
263 var msg = "Fatal Error: more than one primitive class {name}:"
264 for c in cla do msg += " {c.full_name}"
265 print msg
266 exit(1)
267 end
268 return cla.first
269 end
270
271 # Try to get the primitive method named `name` on the type `recv`
272 fun try_get_primitive_method(name: String, recv: MClass): nullable MMethod
273 do
274 var props = self.model.get_mproperties_by_name(name)
275 if props == null then return null
276 var res: nullable MMethod = null
277 for mprop in props do
278 assert mprop isa MMethod
279 var intro = mprop.intro_mclassdef
280 for mclassdef in recv.mclassdefs do
281 if not self.in_importation.greaters.has(mclassdef.mmodule) then continue
282 if not mclassdef.in_hierarchy.greaters.has(intro) then continue
283 if res == null then
284 res = mprop
285 else if res != mprop then
286 print("Fatal Error: ambigous property name '{name}'; conflict between {mprop.full_name} and {res.full_name}")
287 abort
288 end
289 end
290 end
291 return res
292 end
293 end
294
295 private class MClassDefSorter
296 super AbstractSorter[MClassDef]
297 var mmodule: MModule
298 redef fun compare(a, b)
299 do
300 var ca = a.mclass
301 var cb = b.mclass
302 if ca != cb then return mmodule.flatten_mclass_hierarchy.compare(ca, cb)
303 return mmodule.model.mclassdef_hierarchy.compare(a, b)
304 end
305 end
306
307 private class MPropDefSorter
308 super AbstractSorter[MPropDef]
309 var mmodule: MModule
310 redef fun compare(pa, pb)
311 do
312 var a = pa.mclassdef
313 var b = pb.mclassdef
314 var ca = a.mclass
315 var cb = b.mclass
316 if ca != cb then return mmodule.flatten_mclass_hierarchy.compare(ca, cb)
317 return mmodule.model.mclassdef_hierarchy.compare(a, b)
318 end
319 end
320
321 # A named class
322 #
323 # `MClass` are global to the model; it means that a `MClass` is not bound to a
324 # specific `MModule`.
325 #
326 # This characteristic helps the reasoning about classes in a program since a
327 # single `MClass` object always denote the same class.
328 #
329 # The drawback is that classes (`MClass`) contain almost nothing by themselves.
330 # These do not really have properties nor belong to a hierarchy since the property and the
331 # hierarchy of a class depends of the refinement in the modules.
332 #
333 # Most services on classes require the precision of a module, and no one can asks what are
334 # the super-classes of a class nor what are properties of a class without precising what is
335 # the module considered.
336 #
337 # For instance, during the typing of a source-file, the module considered is the module of the file.
338 # eg. the question *is the method `foo` exists in the class `Bar`?* must be reformulated into
339 # *is the method `foo` exists in the class `Bar` in the current module?*
340 #
341 # During some global analysis, the module considered may be the main module of the program.
342 class MClass
343 super MEntity
344
345 # The module that introduce the class
346 # While classes are not bound to a specific module,
347 # the introducing module is used for naming an visibility
348 var intro_mmodule: MModule
349
350 # The short name of the class
351 # In Nit, the name of a class cannot evolve in refinements
352 redef var name: String
353
354 # The canonical name of the class
355 # Example: `"owner::module::MyClass"`
356 fun full_name: String
357 do
358 return "{self.intro_mmodule.full_name}::{name}"
359 end
360
361 # The number of generic formal parameters
362 # 0 if the class is not generic
363 var arity: Int
364
365 # Each generic formal parameters in order.
366 # is empty if the class is not generic
367 var mparameters = new Array[MParameterType]
368
369 # The kind of the class (interface, abstract class, etc.)
370 # In Nit, the kind of a class cannot evolve in refinements
371 var kind: MClassKind
372
373 # The visibility of the class
374 # In Nit, the visibility of a class cannot evolve in refinements
375 var visibility: MVisibility
376
377 init(intro_mmodule: MModule, name: String, parameter_names: nullable Array[String], kind: MClassKind, visibility: MVisibility)
378 do
379 self.intro_mmodule = intro_mmodule
380 self.name = name
381 if parameter_names == null then
382 self.arity = 0
383 else
384 self.arity = parameter_names.length
385 end
386 self.kind = kind
387 self.visibility = visibility
388 intro_mmodule.intro_mclasses.add(self)
389 var model = intro_mmodule.model
390 model.mclasses_by_name.add_one(name, self)
391 model.mclasses.add(self)
392
393 # Create the formal parameter types
394 if arity > 0 then
395 assert parameter_names != null
396 var mparametertypes = new Array[MParameterType]
397 for i in [0..arity[ do
398 var mparametertype = new MParameterType(self, i, parameter_names[i])
399 mparametertypes.add(mparametertype)
400 end
401 self.mparameters = mparametertypes
402 var mclass_type = new MGenericType(self, mparametertypes)
403 self.mclass_type = mclass_type
404 self.get_mtype_cache.add(mclass_type)
405 else
406 self.mclass_type = new MClassType(self)
407 end
408 end
409
410 redef fun model do return intro_mmodule.model
411
412 # All class definitions (introduction and refinements)
413 var mclassdefs = new Array[MClassDef]
414
415 # Alias for `name`
416 redef fun to_s do return self.name
417
418 # The definition that introduced the class
419 # Warning: the introduction is the first `MClassDef` object associated
420 # to self. If self is just created without having any associated
421 # definition, this method will abort
422 fun intro: MClassDef
423 do
424 assert has_a_first_definition: not mclassdefs.is_empty
425 return mclassdefs.first
426 end
427
428 # Return the class `self` in the class hierarchy of the module `mmodule`.
429 #
430 # SEE: `MModule::flatten_mclass_hierarchy`
431 # REQUIRE: `mmodule.has_mclass(self)`
432 fun in_hierarchy(mmodule: MModule): POSetElement[MClass]
433 do
434 return mmodule.flatten_mclass_hierarchy[self]
435 end
436
437 # The principal static type of the class.
438 #
439 # For non-generic class, mclass_type is the only `MClassType` based
440 # on self.
441 #
442 # For a generic class, the arguments are the formal parameters.
443 # i.e.: for the class Array[E:Object], the `mclass_type` is Array[E].
444 # If you want Array[Object] the see `MClassDef::bound_mtype`
445 #
446 # For generic classes, the mclass_type is also the way to get a formal
447 # generic parameter type.
448 #
449 # To get other types based on a generic class, see `get_mtype`.
450 #
451 # ENSURE: `mclass_type.mclass == self`
452 var mclass_type: MClassType
453
454 # Return a generic type based on the class
455 # Is the class is not generic, then the result is `mclass_type`
456 #
457 # REQUIRE: `mtype_arguments.length == self.arity`
458 fun get_mtype(mtype_arguments: Array[MType]): MClassType
459 do
460 assert mtype_arguments.length == self.arity
461 if self.arity == 0 then return self.mclass_type
462 for t in self.get_mtype_cache do
463 if t.arguments == mtype_arguments then
464 return t
465 end
466 end
467 var res = new MGenericType(self, mtype_arguments)
468 self.get_mtype_cache.add res
469 return res
470 end
471
472 private var get_mtype_cache = new Array[MGenericType]
473 end
474
475
476 # A definition (an introduction or a refinement) of a class in a module
477 #
478 # A `MClassDef` is associated with an explicit (or almost) definition of a
479 # class. Unlike `MClass`, a `MClassDef` is a local definition that belong to
480 # a specific class and a specific module, and contains declarations like super-classes
481 # or properties.
482 #
483 # It is the class definitions that are the backbone of most things in the model:
484 # ClassDefs are defined with regard with other classdefs.
485 # Refinement and specialization are combined to produce a big poset called the `Model::mclassdef_hierarchy`.
486 #
487 # Moreover, the extension and the intention of types is defined by looking at the MClassDefs.
488 class MClassDef
489 super MEntity
490
491 # The module where the definition is
492 var mmodule: MModule
493
494 # The associated `MClass`
495 var mclass: MClass
496
497 # The bounded type associated to the mclassdef
498 #
499 # For a non-generic class, `bound_mtype` and `mclass.mclass_type`
500 # are the same type.
501 #
502 # Example:
503 # For the classdef Array[E: Object], the bound_mtype is Array[Object].
504 # If you want Array[E], then see `mclass.mclass_type`
505 #
506 # ENSURE: `bound_mtype.mclass == self.mclass`
507 var bound_mtype: MClassType
508
509 # The origin of the definition
510 var location: Location
511
512 # Internal name combining the module and the class
513 # Example: "mymodule#MyClass"
514 redef var to_s: String
515
516 init(mmodule: MModule, bound_mtype: MClassType, location: Location)
517 do
518 self.bound_mtype = bound_mtype
519 self.mmodule = mmodule
520 self.mclass = bound_mtype.mclass
521 self.location = location
522 mmodule.mclassdefs.add(self)
523 mclass.mclassdefs.add(self)
524 self.to_s = "{mmodule}#{mclass}"
525 end
526
527 # Actually the name of the `mclass`
528 redef fun name do return mclass.name
529
530 redef fun model do return mmodule.model
531
532 # All declared super-types
533 # FIXME: quite ugly but not better idea yet
534 var supertypes = new Array[MClassType]
535
536 # Register some super-types for the class (ie "super SomeType")
537 #
538 # The hierarchy must not already be set
539 # REQUIRE: `self.in_hierarchy == null`
540 fun set_supertypes(supertypes: Array[MClassType])
541 do
542 assert unique_invocation: self.in_hierarchy == null
543 var mmodule = self.mmodule
544 var model = mmodule.model
545 var mtype = self.bound_mtype
546
547 for supertype in supertypes do
548 self.supertypes.add(supertype)
549
550 # Register in full_type_specialization_hierarchy
551 model.full_mtype_specialization_hierarchy.add_edge(mtype, supertype)
552 # Register in intro_type_specialization_hierarchy
553 if mclass.intro_mmodule == mmodule and supertype.mclass.intro_mmodule == mmodule then
554 model.intro_mtype_specialization_hierarchy.add_edge(mtype, supertype)
555 end
556 end
557
558 end
559
560 # Collect the super-types (set by set_supertypes) to build the hierarchy
561 #
562 # This function can only invoked once by class
563 # REQUIRE: `self.in_hierarchy == null`
564 # ENSURE: `self.in_hierarchy != null`
565 fun add_in_hierarchy
566 do
567 assert unique_invocation: self.in_hierarchy == null
568 var model = mmodule.model
569 var res = model.mclassdef_hierarchy.add_node(self)
570 self.in_hierarchy = res
571 var mtype = self.bound_mtype
572
573 # Here we need to connect the mclassdef to its pairs in the mclassdef_hierarchy
574 # The simpliest way is to attach it to collect_mclassdefs
575 for mclassdef in mtype.collect_mclassdefs(mmodule) do
576 res.poset.add_edge(self, mclassdef)
577 end
578 end
579
580 # The view of the class definition in `mclassdef_hierarchy`
581 var in_hierarchy: nullable POSetElement[MClassDef] = null
582
583 # Is the definition the one that introduced `mclass`?
584 fun is_intro: Bool do return mclass.intro == self
585
586 # All properties introduced by the classdef
587 var intro_mproperties = new Array[MProperty]
588
589 # All property definitions in the class (introductions and redefinitions)
590 var mpropdefs = new Array[MPropDef]
591 end
592
593 # A global static type
594 #
595 # MType are global to the model; it means that a `MType` is not bound to a
596 # specific `MModule`.
597 # This characteristic helps the reasoning about static types in a program
598 # since a single `MType` object always denote the same type.
599 #
600 # However, because a `MType` is global, it does not really have properties
601 # nor have subtypes to a hierarchy since the property and the class hierarchy
602 # depends of a module.
603 # Moreover, virtual types an formal generic parameter types also depends on
604 # a receiver to have sense.
605 #
606 # Therefore, most method of the types require a module and an anchor.
607 # The module is used to know what are the classes and the specialization
608 # links.
609 # The anchor is used to know what is the bound of the virtual types and formal
610 # generic parameter types.
611 #
612 # MType are not directly usable to get properties. See the `anchor_to` method
613 # and the `MClassType` class.
614 #
615 # FIXME: the order of the parameters is not the best. We mus pick on from:
616 # * foo(mmodule, anchor, othertype)
617 # * foo(othertype, anchor, mmodule)
618 # * foo(anchor, mmodule, othertype)
619 # * foo(othertype, mmodule, anchor)
620 abstract class MType
621 super MEntity
622
623 redef fun name do return to_s
624
625 # Return true if `self` is an subtype of `sup`.
626 # The typing is done using the standard typing policy of Nit.
627 #
628 # REQUIRE: `anchor == null implies not self.need_anchor and not sup.need_anchor`
629 # REQUIRE: `anchor != null implies self.can_resolve_for(anchor, null, mmodule) and sup.can_resolve_for(anchor, null, mmodule)`
630 fun is_subtype(mmodule: MModule, anchor: nullable MClassType, sup: MType): Bool
631 do
632 var sub = self
633 if sub == sup then return true
634 if anchor == null then
635 assert not sub.need_anchor
636 assert not sup.need_anchor
637 else
638 assert sub.can_resolve_for(anchor, null, mmodule)
639 assert sup.can_resolve_for(anchor, null, mmodule)
640 end
641
642 # First, resolve the formal types to a common version in the receiver
643 # The trick here is that fixed formal type will be associated to the bound
644 # And unfixed formal types will be associated to a canonical formal type.
645 if sub isa MParameterType or sub isa MVirtualType then
646 assert anchor != null
647 sub = sub.resolve_for(anchor.mclass.mclass_type, anchor, mmodule, false)
648 end
649 if sup isa MParameterType or sup isa MVirtualType then
650 assert anchor != null
651 sup = sup.resolve_for(anchor.mclass.mclass_type, anchor, mmodule, false)
652 end
653
654 # Does `sup` accept null or not?
655 # Discard the nullable marker if it exists
656 var sup_accept_null = false
657 if sup isa MNullableType then
658 sup_accept_null = true
659 sup = sup.mtype
660 else if sup isa MNullType then
661 sup_accept_null = true
662 end
663
664 # Can `sub` provide null or not?
665 # Thus we can match with `sup_accept_null`
666 # Also discard the nullable marker if it exists
667 if sub isa MNullableType then
668 if not sup_accept_null then return false
669 sub = sub.mtype
670 else if sub isa MNullType then
671 return sup_accept_null
672 end
673 # Now the case of direct null and nullable is over.
674
675 # A unfixed formal type can only accept itself
676 if sup isa MParameterType or sup isa MVirtualType then
677 return sub == sup
678 end
679
680 # If `sub` is a formal type, then it is accepted if its bound is accepted
681 if sub isa MParameterType or sub isa MVirtualType then
682 assert anchor != null
683 sub = sub.anchor_to(mmodule, anchor)
684
685 # Manage the second layer of null/nullable
686 if sub isa MNullableType then
687 if not sup_accept_null then return false
688 sub = sub.mtype
689 else if sub isa MNullType then
690 return sup_accept_null
691 end
692 end
693
694 assert sub isa MClassType # It is the only remaining type
695
696 if sup isa MNullType then
697 # `sup` accepts only null
698 return false
699 end
700
701 assert sup isa MClassType # It is the only remaining type
702
703 # Now both are MClassType, we need to dig
704
705 if sub == sup then return true
706
707 if anchor == null then anchor = sub # UGLY: any anchor will work
708 var resolved_sub = sub.anchor_to(mmodule, anchor)
709 var res = resolved_sub.collect_mclasses(mmodule).has(sup.mclass)
710 if res == false then return false
711 if not sup isa MGenericType then return true
712 var sub2 = sub.supertype_to(mmodule, anchor, sup.mclass)
713 assert sub2.mclass == sup.mclass
714 for i in [0..sup.mclass.arity[ do
715 var sub_arg = sub2.arguments[i]
716 var sup_arg = sup.arguments[i]
717 res = sub_arg.is_subtype(mmodule, anchor, sup_arg)
718 if res == false then return false
719 end
720 return true
721 end
722
723 # The base class type on which self is based
724 #
725 # This base type is used to get property (an internally to perform
726 # unsafe type comparison).
727 #
728 # Beware: some types (like null) are not based on a class thus this
729 # method will crash
730 #
731 # Basically, this function transform the virtual types and parameter
732 # types to their bounds.
733 #
734 # Example
735 # class A end
736 # class B super A end
737 # class X end
738 # class Y super X end
739 # class G[T: A]
740 # type U: X
741 # end
742 # class H
743 # super G[B]
744 # redef type U: Y
745 # end
746 # Map[T,U] anchor_to H #-> Map[B,Y]
747 #
748 # Explanation of the example:
749 # In H, T is set to B, because "H super G[B]", and U is bound to Y,
750 # because "redef type U: Y". Therefore, Map[T, U] is bound to
751 # Map[B, Y]
752 #
753 # ENSURE: `not self.need_anchor implies result == self`
754 # ENSURE: `not result.need_anchor`
755 fun anchor_to(mmodule: MModule, anchor: MClassType): MType
756 do
757 if not need_anchor then return self
758 assert not anchor.need_anchor
759 # Just resolve to the anchor and clear all the virtual types
760 var res = self.resolve_for(anchor, null, mmodule, true)
761 assert not res.need_anchor
762 return res
763 end
764
765 # Does `self` contain a virtual type or a formal generic parameter type?
766 # In order to remove those types, you usually want to use `anchor_to`.
767 fun need_anchor: Bool do return true
768
769 # Return the supertype when adapted to a class.
770 #
771 # In Nit, for each super-class of a type, there is a equivalent super-type.
772 #
773 # Example:
774 # class G[T, U] end
775 # class H[V] super G[V, Bool] end
776 # H[Int] supertype_to G #-> G[Int, Bool]
777 #
778 # REQUIRE: `super_mclass` is a super-class of `self`
779 # REQUIRE: `self.need_anchor implies anchor != null and self.can_resolve_for(anchor, null, mmodule)`
780 # ENSURE: `result.mclass = super_mclass`
781 fun supertype_to(mmodule: MModule, anchor: nullable MClassType, super_mclass: MClass): MClassType
782 do
783 if super_mclass.arity == 0 then return super_mclass.mclass_type
784 if self isa MClassType and self.mclass == super_mclass then return self
785 var resolved_self
786 if self.need_anchor then
787 assert anchor != null
788 resolved_self = self.anchor_to(mmodule, anchor)
789 else
790 resolved_self = self
791 end
792 var supertypes = resolved_self.collect_mtypes(mmodule)
793 for supertype in supertypes do
794 if supertype.mclass == super_mclass then
795 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
796 return supertype.resolve_for(self, anchor, mmodule, false)
797 end
798 end
799 abort
800 end
801
802 # Replace formals generic types in self with resolved values in `mtype`
803 # If `cleanup_virtual` is true, then virtual types are also replaced
804 # with their bounds.
805 #
806 # This function returns self if `need_anchor` is false.
807 #
808 # ## Example 1
809 #
810 # class G[E] end
811 # class H[F] super G[F] end
812 # class X[Z] end
813 #
814 # * Array[E].resolve_for(H[Int]) #-> Array[Int]
815 # * Array[E].resolve_for(G[Z], X[Int]) #-> Array[Z]
816 #
817 # Explanation of the example:
818 # * Array[E].need_anchor is true because there is a formal generic parameter type E
819 # * E makes sense for H[Int] because E is a formal parameter of G and H specialize G
820 # * Since "H[F] super G[F]", E is in fact F for H
821 # * More specifically, in H[Int], E is Int
822 # * So, in H[Int], Array[E] is Array[Int]
823 #
824 # This function is mainly used to inherit a signature.
825 # Because, unlike `anchor_to`, we do not want a full resolution of
826 # a type but only an adapted version of it.
827 #
828 # ## Example 2
829 #
830 # class A[E]
831 # fun foo(e:E):E is abstract
832 # end
833 # class B super A[Int] end
834 #
835 # The signature on foo is (e: E): E
836 # If we resolve the signature for B, we get (e:Int):Int
837 #
838 # ## Example 3
839 #
840 # class A[E]
841 # fun foo(e:E) is abstract
842 # end
843 # class B[F]
844 # var a: A[Array[F]]
845 # fun bar do a.foo(x) # <- x is here
846 # end
847 #
848 # The first question is: is foo available on `a`?
849 #
850 # The static type of a is `A[Array[F]]`, that is an open type.
851 # in order to find a method `foo`, whe must look at a resolved type.
852 #
853 # A[Array[F]].anchor_to(B[nullable Object]) #-> A[Array[nullable Object]]
854 #
855 # the method `foo` exists in `A[Array[nullable Object]]`, therefore `foo` exists for `a`.
856 #
857 # The next question is: what is the accepted types for `x`?
858 #
859 # the signature of `foo` is `foo(e:E)`, thus we must resolve the type E
860 #
861 # E.resolve_for(A[Array[F]],B[nullable Object]) #-> Array[F]
862 #
863 # The resolution can be done because `E` make sense for the class A (see `can_resolve_for`)
864 #
865 # FIXME: the parameter `cleanup_virtual` is just a bad idea, but having
866 # two function instead of one seems also to be a bad idea.
867 #
868 # REQUIRE: `can_resolve_for(mtype, anchor, mmodule)`
869 # ENSURE: `not self.need_anchor implies result == self`
870 fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MType is abstract
871
872 # Can the type be resolved?
873 #
874 # In order to resolve open types, the formal types must make sence.
875 #
876 # ## Example
877 #
878 # class A[E]
879 # end
880 # class B[F]
881 # end
882 #
883 # * E.can_resolve_for(A[Int]) #-> true, E make sense in A
884 # * E.can_resolve_for(B[Int]) #-> false, E does not make sense in B
885 # * B[E].can_resolve_for(A[F], B[Object]) #-> true,
886 # B[E] is a red hearing only the E is important,
887 # E make sense in A
888 #
889 # REQUIRE: `anchor != null implies not anchor.need_anchor`
890 # REQUIRE: `mtype.need_anchor implies anchor != null and mtype.can_resolve_for(anchor, null, mmodule)`
891 # ENSURE: `not self.need_anchor implies result == true`
892 fun can_resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule): Bool is abstract
893
894 # Return the nullable version of the type
895 # If the type is already nullable then self is returned
896 fun as_nullable: MType
897 do
898 var res = self.as_nullable_cache
899 if res != null then return res
900 res = new MNullableType(self)
901 self.as_nullable_cache = res
902 return res
903 end
904
905 # Return the not nullable version of the type
906 # Is the type is already not nullable, then self is returned.
907 #
908 # Note: this just remove the `nullable` notation, but the result can still contains null.
909 # For instance if `self isa MNullType` or self is a formal type bounded by a nullable type.
910 fun as_notnullable: MType
911 do
912 return self
913 end
914
915 private var as_nullable_cache: nullable MType = null
916
917
918 # The depth of the type seen as a tree.
919 #
920 # * A -> 1
921 # * G[A] -> 2
922 # * H[A, B] -> 2
923 # * H[G[A], B] -> 3
924 #
925 # Formal types have a depth of 1.
926 fun depth: Int
927 do
928 return 1
929 end
930
931 # The length of the type seen as a tree.
932 #
933 # * A -> 1
934 # * G[A] -> 2
935 # * H[A, B] -> 3
936 # * H[G[A], B] -> 4
937 #
938 # Formal types have a length of 1.
939 fun length: Int
940 do
941 return 1
942 end
943
944 # Compute all the classdefs inherited/imported.
945 # The returned set contains:
946 # * the class definitions from `mmodule` and its imported modules
947 # * the class definitions of this type and its super-types
948 #
949 # This function is used mainly internally.
950 #
951 # REQUIRE: `not self.need_anchor`
952 fun collect_mclassdefs(mmodule: MModule): Set[MClassDef] is abstract
953
954 # Compute all the super-classes.
955 # This function is used mainly internally.
956 #
957 # REQUIRE: `not self.need_anchor`
958 fun collect_mclasses(mmodule: MModule): Set[MClass] is abstract
959
960 # Compute all the declared super-types.
961 # Super-types are returned as declared in the classdefs (verbatim).
962 # This function is used mainly internally.
963 #
964 # REQUIRE: `not self.need_anchor`
965 fun collect_mtypes(mmodule: MModule): Set[MClassType] is abstract
966
967 # Is the property in self for a given module
968 # This method does not filter visibility or whatever
969 #
970 # REQUIRE: `not self.need_anchor`
971 fun has_mproperty(mmodule: MModule, mproperty: MProperty): Bool
972 do
973 assert not self.need_anchor
974 return self.collect_mclassdefs(mmodule).has(mproperty.intro_mclassdef)
975 end
976 end
977
978 # A type based on a class.
979 #
980 # `MClassType` have properties (see `has_mproperty`).
981 class MClassType
982 super MType
983
984 # The associated class
985 var mclass: MClass
986
987 redef fun model do return self.mclass.intro_mmodule.model
988
989 private init(mclass: MClass)
990 do
991 self.mclass = mclass
992 end
993
994 # The formal arguments of the type
995 # ENSURE: `result.length == self.mclass.arity`
996 var arguments = new Array[MType]
997
998 redef fun to_s do return mclass.to_s
999
1000 redef fun need_anchor do return false
1001
1002 redef fun anchor_to(mmodule: MModule, anchor: MClassType): MClassType
1003 do
1004 return super.as(MClassType)
1005 end
1006
1007 redef fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MClassType do return self
1008
1009 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1010
1011 redef fun collect_mclassdefs(mmodule)
1012 do
1013 assert not self.need_anchor
1014 var cache = self.collect_mclassdefs_cache
1015 if not cache.has_key(mmodule) then
1016 self.collect_things(mmodule)
1017 end
1018 return cache[mmodule]
1019 end
1020
1021 redef fun collect_mclasses(mmodule)
1022 do
1023 assert not self.need_anchor
1024 var cache = self.collect_mclasses_cache
1025 if not cache.has_key(mmodule) then
1026 self.collect_things(mmodule)
1027 end
1028 return cache[mmodule]
1029 end
1030
1031 redef fun collect_mtypes(mmodule)
1032 do
1033 assert not self.need_anchor
1034 var cache = self.collect_mtypes_cache
1035 if not cache.has_key(mmodule) then
1036 self.collect_things(mmodule)
1037 end
1038 return cache[mmodule]
1039 end
1040
1041 # common implementation for `collect_mclassdefs`, `collect_mclasses`, and `collect_mtypes`.
1042 private fun collect_things(mmodule: MModule)
1043 do
1044 var res = new HashSet[MClassDef]
1045 var seen = new HashSet[MClass]
1046 var types = new HashSet[MClassType]
1047 seen.add(self.mclass)
1048 var todo = [self.mclass]
1049 while not todo.is_empty do
1050 var mclass = todo.pop
1051 #print "process {mclass}"
1052 for mclassdef in mclass.mclassdefs do
1053 if not mmodule.in_importation <= mclassdef.mmodule then continue
1054 #print " process {mclassdef}"
1055 res.add(mclassdef)
1056 for supertype in mclassdef.supertypes do
1057 types.add(supertype)
1058 var superclass = supertype.mclass
1059 if seen.has(superclass) then continue
1060 #print " add {superclass}"
1061 seen.add(superclass)
1062 todo.add(superclass)
1063 end
1064 end
1065 end
1066 collect_mclassdefs_cache[mmodule] = res
1067 collect_mclasses_cache[mmodule] = seen
1068 collect_mtypes_cache[mmodule] = types
1069 end
1070
1071 private var collect_mclassdefs_cache = new HashMap[MModule, Set[MClassDef]]
1072 private var collect_mclasses_cache = new HashMap[MModule, Set[MClass]]
1073 private var collect_mtypes_cache = new HashMap[MModule, Set[MClassType]]
1074
1075 end
1076
1077 # A type based on a generic class.
1078 # A generic type a just a class with additional formal generic arguments.
1079 class MGenericType
1080 super MClassType
1081
1082 private init(mclass: MClass, arguments: Array[MType])
1083 do
1084 super(mclass)
1085 assert self.mclass.arity == arguments.length
1086 self.arguments = arguments
1087
1088 self.need_anchor = false
1089 for t in arguments do
1090 if t.need_anchor then
1091 self.need_anchor = true
1092 break
1093 end
1094 end
1095
1096 self.to_s = "{mclass}[{arguments.join(", ")}]"
1097 end
1098
1099 # Recursively print the type of the arguments within brackets.
1100 # Example: `"Map[String, List[Int]]"`
1101 redef var to_s: String
1102
1103 redef var need_anchor: Bool
1104
1105 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1106 do
1107 if not need_anchor then return self
1108 assert can_resolve_for(mtype, anchor, mmodule)
1109 var types = new Array[MType]
1110 for t in arguments do
1111 types.add(t.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1112 end
1113 return mclass.get_mtype(types)
1114 end
1115
1116 redef fun can_resolve_for(mtype, anchor, mmodule)
1117 do
1118 if not need_anchor then return true
1119 for t in arguments do
1120 if not t.can_resolve_for(mtype, anchor, mmodule) then return false
1121 end
1122 return true
1123 end
1124
1125
1126 redef fun depth
1127 do
1128 var dmax = 0
1129 for a in self.arguments do
1130 var d = a.depth
1131 if d > dmax then dmax = d
1132 end
1133 return dmax + 1
1134 end
1135
1136 redef fun length
1137 do
1138 var res = 1
1139 for a in self.arguments do
1140 res += a.length
1141 end
1142 return res
1143 end
1144 end
1145
1146 # A virtual formal type.
1147 class MVirtualType
1148 super MType
1149
1150 # The property associated with the type.
1151 # Its the definitions of this property that determine the bound or the virtual type.
1152 var mproperty: MProperty
1153
1154 redef fun model do return self.mproperty.intro_mclassdef.mmodule.model
1155
1156 # Lookup the bound for a given resolved_receiver
1157 # The result may be a other virtual type (or a parameter type)
1158 #
1159 # The result is returned exactly as declared in the "type" property (verbatim).
1160 #
1161 # In case of conflict, the method aborts.
1162 fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType
1163 do
1164 assert not resolved_receiver.need_anchor
1165 var props = self.mproperty.lookup_definitions(mmodule, resolved_receiver)
1166 if props.is_empty then
1167 abort
1168 else if props.length == 1 then
1169 return props.first.as(MVirtualTypeDef).bound.as(not null)
1170 end
1171 var types = new ArraySet[MType]
1172 for p in props do
1173 types.add(p.as(MVirtualTypeDef).bound.as(not null))
1174 end
1175 if types.length == 1 then
1176 return types.first
1177 end
1178 abort
1179 end
1180
1181 # Is the virtual type fixed for a given resolved_receiver?
1182 fun is_fixed(mmodule: MModule, resolved_receiver: MType): Bool
1183 do
1184 assert not resolved_receiver.need_anchor
1185 var props = self.mproperty.lookup_definitions(mmodule, resolved_receiver)
1186 if props.is_empty then
1187 abort
1188 end
1189 for p in props do
1190 if p.as(MVirtualTypeDef).is_fixed then return true
1191 end
1192 return false
1193 end
1194
1195 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1196 do
1197 assert can_resolve_for(mtype, anchor, mmodule)
1198 # self is a virtual type declared (or inherited) in mtype
1199 # The point of the function it to get the bound of the virtual type that make sense for mtype
1200 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
1201 #print "{class_name}: {self}/{mtype}/{anchor}?"
1202 var resolved_reciever
1203 if mtype.need_anchor then
1204 assert anchor != null
1205 resolved_reciever = mtype.resolve_for(anchor, null, mmodule, true)
1206 else
1207 resolved_reciever = mtype
1208 end
1209 # Now, we can get the bound
1210 var verbatim_bound = lookup_bound(mmodule, resolved_reciever)
1211 # The bound is exactly as declared in the "type" property, so we must resolve it again
1212 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1213 #print "{class_name}: {self}/{mtype}/{anchor} -> {self}/{resolved_receiver}/{anchor} -> {verbatim_bound}/{mtype}/{anchor} -> {res}"
1214
1215 # What to return here? There is a bunch a special cases:
1216 # If 'cleanup_virtual' we must return the resolved type, since we cannot return self
1217 if cleanup_virtual then return res
1218 # If the receiver is a intern class, then the virtual type cannot be redefined since there is no possible subclass. self is just fixed. so simply return the resolution
1219 if resolved_reciever isa MNullableType then resolved_reciever = resolved_reciever.mtype
1220 if resolved_reciever.as(MClassType).mclass.kind == enum_kind then return res
1221 # If the resolved type isa MVirtualType, it means that self was bound to it, and cannot be unbound. self is just fixed. so return the resolution.
1222 if res isa MVirtualType then return res
1223 # If we are final, just return the resolution
1224 if is_fixed(mmodule, resolved_reciever) then return res
1225 # If the resolved type isa intern class, then there is no possible valid redefinition in any potential subclass. self is just fixed. so simply return the resolution
1226 if res isa MClassType and res.mclass.kind == enum_kind then return res
1227 # TODO: Add 'fixed' virtual type in the specification.
1228 # TODO: What if bound to a MParameterType?
1229 # Note that Nullable types can always be redefined by the non nullable version, so there is no specific case on it.
1230
1231 # If anything apply, then `self' cannot be resolved, so return self
1232 return self
1233 end
1234
1235 redef fun can_resolve_for(mtype, anchor, mmodule)
1236 do
1237 if mtype.need_anchor then
1238 assert anchor != null
1239 mtype = mtype.anchor_to(mmodule, anchor)
1240 end
1241 return mtype.has_mproperty(mmodule, mproperty)
1242 end
1243
1244 redef fun to_s do return self.mproperty.to_s
1245
1246 init(mproperty: MProperty)
1247 do
1248 self.mproperty = mproperty
1249 end
1250 end
1251
1252 # The type associated to a formal parameter generic type of a class
1253 #
1254 # Each parameter type is associated to a specific class.
1255 # It means that all refinements of a same class "share" the parameter type,
1256 # but that a generic subclass has its own parameter types.
1257 #
1258 # However, in the sense of the meta-model, a parameter type of a class is
1259 # a valid type in a subclass. The "in the sense of the meta-model" is
1260 # important because, in the Nit language, the programmer cannot refers
1261 # directly to the parameter types of the super-classes.
1262 #
1263 # Example:
1264 # class A[E]
1265 # fun e: E is abstract
1266 # end
1267 # class B[F]
1268 # super A[Array[F]]
1269 # end
1270 # In the class definition B[F], `F` is a valid type but `E` is not.
1271 # However, `self.e` is a valid method call, and the signature of `e` is
1272 # declared `e: E`.
1273 #
1274 # Note that parameter types are shared among class refinements.
1275 # Therefore parameter only have an internal name (see `to_s` for details).
1276 # TODO: Add a `name_for` to get better messages.
1277 class MParameterType
1278 super MType
1279
1280 # The generic class where the parameter belong
1281 var mclass: MClass
1282
1283 redef fun model do return self.mclass.intro_mmodule.model
1284
1285 # The position of the parameter (0 for the first parameter)
1286 # FIXME: is `position` a better name?
1287 var rank: Int
1288
1289 redef var name
1290
1291 redef fun to_s do return name
1292
1293 # Resolve the bound for a given resolved_receiver
1294 # The result may be a other virtual type (or a parameter type)
1295 fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType
1296 do
1297 assert not resolved_receiver.need_anchor
1298 var goalclass = self.mclass
1299 var supertypes = resolved_receiver.collect_mtypes(mmodule)
1300 for t in supertypes do
1301 if t.mclass == goalclass then
1302 # Yeah! c specialize goalclass with a "super `t'". So the question is what is the argument of f
1303 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
1304 var res = t.arguments[self.rank]
1305 return res
1306 end
1307 end
1308 abort
1309 end
1310
1311 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1312 do
1313 assert can_resolve_for(mtype, anchor, mmodule)
1314 #print "{class_name}: {self}/{mtype}/{anchor}?"
1315
1316 if mtype isa MGenericType and mtype.mclass == self.mclass then
1317 var res = mtype.arguments[self.rank]
1318 if anchor != null and res.need_anchor then
1319 # Maybe the result can be resolved more if are bound to a final class
1320 var r2 = res.anchor_to(mmodule, anchor)
1321 if r2 isa MClassType and r2.mclass.kind == enum_kind then return r2
1322 end
1323 return res
1324 end
1325
1326 # self is a parameter type of mtype (or of a super-class of mtype)
1327 # The point of the function it to get the bound of the virtual type that make sense for mtype
1328 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
1329 # FIXME: What happens here is far from clear. Thus this part must be validated and clarified
1330 var resolved_receiver
1331 if mtype.need_anchor then
1332 assert anchor != null
1333 resolved_receiver = mtype.resolve_for(anchor.mclass.mclass_type, anchor, mmodule, true)
1334 else
1335 resolved_receiver = mtype
1336 end
1337 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
1338 if resolved_receiver isa MParameterType then
1339 assert resolved_receiver.mclass == anchor.mclass
1340 resolved_receiver = anchor.arguments[resolved_receiver.rank]
1341 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
1342 end
1343 assert resolved_receiver isa MClassType
1344
1345 # Eh! The parameter is in the current class.
1346 # So we return the corresponding argument, no mater what!
1347 if resolved_receiver.mclass == self.mclass then
1348 var res = resolved_receiver.arguments[self.rank]
1349 #print "{class_name}: {self}/{mtype}/{anchor} -> direct {res}"
1350 return res
1351 end
1352
1353 if resolved_receiver.need_anchor then
1354 assert anchor != null
1355 resolved_receiver = resolved_receiver.resolve_for(anchor, null, mmodule, false)
1356 end
1357 # Now, we can get the bound
1358 var verbatim_bound = lookup_bound(mmodule, resolved_receiver)
1359 # The bound is exactly as declared in the "type" property, so we must resolve it again
1360 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1361
1362 #print "{class_name}: {self}/{mtype}/{anchor} -> indirect {res}"
1363
1364 return res
1365 end
1366
1367 redef fun can_resolve_for(mtype, anchor, mmodule)
1368 do
1369 if mtype.need_anchor then
1370 assert anchor != null
1371 mtype = mtype.anchor_to(mmodule, anchor)
1372 end
1373 return mtype.collect_mclassdefs(mmodule).has(mclass.intro)
1374 end
1375
1376 init(mclass: MClass, rank: Int, name: String)
1377 do
1378 self.mclass = mclass
1379 self.rank = rank
1380 self.name = name
1381 end
1382 end
1383
1384 # A type prefixed with "nullable"
1385 class MNullableType
1386 super MType
1387
1388 # The base type of the nullable type
1389 var mtype: MType
1390
1391 redef fun model do return self.mtype.model
1392
1393 init(mtype: MType)
1394 do
1395 self.mtype = mtype
1396 self.to_s = "nullable {mtype}"
1397 end
1398
1399 redef var to_s: String
1400
1401 redef fun need_anchor do return mtype.need_anchor
1402 redef fun as_nullable do return self
1403 redef fun as_notnullable do return mtype
1404 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1405 do
1406 var res = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1407 return res.as_nullable
1408 end
1409
1410 redef fun can_resolve_for(mtype, anchor, mmodule)
1411 do
1412 return self.mtype.can_resolve_for(mtype, anchor, mmodule)
1413 end
1414
1415 redef fun depth do return self.mtype.depth
1416
1417 redef fun length do return self.mtype.length
1418
1419 redef fun collect_mclassdefs(mmodule)
1420 do
1421 assert not self.need_anchor
1422 return self.mtype.collect_mclassdefs(mmodule)
1423 end
1424
1425 redef fun collect_mclasses(mmodule)
1426 do
1427 assert not self.need_anchor
1428 return self.mtype.collect_mclasses(mmodule)
1429 end
1430
1431 redef fun collect_mtypes(mmodule)
1432 do
1433 assert not self.need_anchor
1434 return self.mtype.collect_mtypes(mmodule)
1435 end
1436 end
1437
1438 # The type of the only value null
1439 #
1440 # The is only one null type per model, see `MModel::null_type`.
1441 class MNullType
1442 super MType
1443 redef var model: Model
1444 protected init(model: Model)
1445 do
1446 self.model = model
1447 end
1448 redef fun to_s do return "null"
1449 redef fun as_nullable do return self
1450 redef fun need_anchor do return false
1451 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual) do return self
1452 redef fun can_resolve_for(mtype, anchor, mmodule) do return true
1453
1454 redef fun collect_mclassdefs(mmodule) do return new HashSet[MClassDef]
1455
1456 redef fun collect_mclasses(mmodule) do return new HashSet[MClass]
1457
1458 redef fun collect_mtypes(mmodule) do return new HashSet[MClassType]
1459 end
1460
1461 # A signature of a method
1462 class MSignature
1463 super MType
1464
1465 # The each parameter (in order)
1466 var mparameters: Array[MParameter]
1467
1468 # The return type (null for a procedure)
1469 var return_mtype: nullable MType
1470
1471 redef fun depth
1472 do
1473 var dmax = 0
1474 var t = self.return_mtype
1475 if t != null then dmax = t.depth
1476 for p in mparameters do
1477 var d = p.mtype.depth
1478 if d > dmax then dmax = d
1479 end
1480 return dmax + 1
1481 end
1482
1483 redef fun length
1484 do
1485 var res = 1
1486 var t = self.return_mtype
1487 if t != null then res += t.length
1488 for p in mparameters do
1489 res += p.mtype.length
1490 end
1491 return res
1492 end
1493
1494 # REQUIRE: 1 <= mparameters.count p -> p.is_vararg
1495 init(mparameters: Array[MParameter], return_mtype: nullable MType)
1496 do
1497 var vararg_rank = -1
1498 for i in [0..mparameters.length[ do
1499 var parameter = mparameters[i]
1500 if parameter.is_vararg then
1501 assert vararg_rank == -1
1502 vararg_rank = i
1503 end
1504 end
1505 self.mparameters = mparameters
1506 self.return_mtype = return_mtype
1507 self.vararg_rank = vararg_rank
1508 end
1509
1510 # The rank of the ellipsis (`...`) for vararg (starting from 0).
1511 # value is -1 if there is no vararg.
1512 # Example: for "(a: Int, b: Bool..., c: Char)" #-> vararg_rank=1
1513 var vararg_rank: Int
1514
1515 # The number or parameters
1516 fun arity: Int do return mparameters.length
1517
1518 redef fun to_s
1519 do
1520 var b = new FlatBuffer
1521 if not mparameters.is_empty then
1522 b.append("(")
1523 for i in [0..mparameters.length[ do
1524 var mparameter = mparameters[i]
1525 if i > 0 then b.append(", ")
1526 b.append(mparameter.name)
1527 b.append(": ")
1528 b.append(mparameter.mtype.to_s)
1529 if mparameter.is_vararg then
1530 b.append("...")
1531 end
1532 end
1533 b.append(")")
1534 end
1535 var ret = self.return_mtype
1536 if ret != null then
1537 b.append(": ")
1538 b.append(ret.to_s)
1539 end
1540 return b.to_s
1541 end
1542
1543 redef fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MSignature
1544 do
1545 var params = new Array[MParameter]
1546 for p in self.mparameters do
1547 params.add(p.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1548 end
1549 var ret = self.return_mtype
1550 if ret != null then
1551 ret = ret.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1552 end
1553 var res = new MSignature(params, ret)
1554 return res
1555 end
1556 end
1557
1558 # A parameter in a signature
1559 class MParameter
1560 super MEntity
1561
1562 # The name of the parameter
1563 redef var name: String
1564
1565 # The static type of the parameter
1566 var mtype: MType
1567
1568 # Is the parameter a vararg?
1569 var is_vararg: Bool
1570
1571 init(name: String, mtype: MType, is_vararg: Bool) do
1572 self.name = name
1573 self.mtype = mtype
1574 self.is_vararg = is_vararg
1575 end
1576
1577 redef fun to_s
1578 do
1579 if is_vararg then
1580 return "{name}: {mtype}..."
1581 else
1582 return "{name}: {mtype}"
1583 end
1584 end
1585
1586 fun resolve_for(mtype: MType, anchor: nullable MClassType, mmodule: MModule, cleanup_virtual: Bool): MParameter
1587 do
1588 if not self.mtype.need_anchor then return self
1589 var newtype = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1590 var res = new MParameter(self.name, newtype, self.is_vararg)
1591 return res
1592 end
1593
1594 redef fun model do return mtype.model
1595 end
1596
1597 # A service (global property) that generalize method, attribute, etc.
1598 #
1599 # `MProperty` are global to the model; it means that a `MProperty` is not bound
1600 # to a specific `MModule` nor a specific `MClass`.
1601 #
1602 # A MProperty gather definitions (see `mpropdefs`) ; one for the introduction
1603 # and the other in subclasses and in refinements.
1604 #
1605 # A `MProperty` is used to denotes services in polymorphic way (ie. independent
1606 # of any dynamic type).
1607 # For instance, a call site "x.foo" is associated to a `MProperty`.
1608 abstract class MProperty
1609 super MEntity
1610
1611 # The associated MPropDef subclass.
1612 # The two specialization hierarchy are symmetric.
1613 type MPROPDEF: MPropDef
1614
1615 # The classdef that introduce the property
1616 # While a property is not bound to a specific module, or class,
1617 # the introducing mclassdef is used for naming and visibility
1618 var intro_mclassdef: MClassDef
1619
1620 # The (short) name of the property
1621 redef var name: String
1622
1623 # The canonical name of the property
1624 # Example: "owner::my_module::MyClass::my_method"
1625 fun full_name: String
1626 do
1627 return "{self.intro_mclassdef.mmodule.full_name}::{self.intro_mclassdef.mclass.name}::{name}"
1628 end
1629
1630 # The visibility of the property
1631 var visibility: MVisibility
1632
1633 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1634 do
1635 self.intro_mclassdef = intro_mclassdef
1636 self.name = name
1637 self.visibility = visibility
1638 intro_mclassdef.intro_mproperties.add(self)
1639 var model = intro_mclassdef.mmodule.model
1640 model.mproperties_by_name.add_one(name, self)
1641 model.mproperties.add(self)
1642 end
1643
1644 # All definitions of the property.
1645 # The first is the introduction,
1646 # The other are redefinitions (in refinements and in subclasses)
1647 var mpropdefs = new Array[MPROPDEF]
1648
1649 # The definition that introduced the property
1650 # Warning: the introduction is the first `MPropDef` object
1651 # associated to self. If self is just created without having any
1652 # associated definition, this method will abort
1653 fun intro: MPROPDEF do return mpropdefs.first
1654
1655 redef fun model do return intro.model
1656
1657 # Alias for `name`
1658 redef fun to_s do return name
1659
1660 # Return the most specific property definitions defined or inherited by a type.
1661 # The selection knows that refinement is stronger than specialization;
1662 # however, in case of conflict more than one property are returned.
1663 # If mtype does not know mproperty then an empty array is returned.
1664 #
1665 # If you want the really most specific property, then look at `lookup_first_definition`
1666 fun lookup_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
1667 do
1668 assert not mtype.need_anchor
1669 mtype = mtype.as_notnullable
1670
1671 var cache = self.lookup_definitions_cache[mmodule, mtype]
1672 if cache != null then return cache
1673
1674 #print "select prop {mproperty} for {mtype} in {self}"
1675 # First, select all candidates
1676 var candidates = new Array[MPROPDEF]
1677 for mpropdef in self.mpropdefs do
1678 # If the definition is not imported by the module, then skip
1679 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
1680 # If the definition is not inherited by the type, then skip
1681 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
1682 # Else, we keep it
1683 candidates.add(mpropdef)
1684 end
1685 # Fast track for only one candidate
1686 if candidates.length <= 1 then
1687 self.lookup_definitions_cache[mmodule, mtype] = candidates
1688 return candidates
1689 end
1690
1691 # Second, filter the most specific ones
1692 return select_most_specific(mmodule, candidates)
1693 end
1694
1695 private var lookup_definitions_cache = new HashMap2[MModule, MType, Array[MPROPDEF]]
1696
1697 # Return the most specific property definitions inherited by a type.
1698 # The selection knows that refinement is stronger than specialization;
1699 # however, in case of conflict more than one property are returned.
1700 # If mtype does not know mproperty then an empty array is returned.
1701 #
1702 # If you want the really most specific property, then look at `lookup_next_definition`
1703 #
1704 # FIXME: Move to `MPropDef`?
1705 fun lookup_super_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
1706 do
1707 assert not mtype.need_anchor
1708 mtype = mtype.as_notnullable
1709
1710 # First, select all candidates
1711 var candidates = new Array[MPROPDEF]
1712 for mpropdef in self.mpropdefs do
1713 # If the definition is not imported by the module, then skip
1714 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
1715 # If the definition is not inherited by the type, then skip
1716 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
1717 # If the definition is defined by the type, then skip (we want the super, so e skip the current)
1718 if mtype == mpropdef.mclassdef.bound_mtype and mmodule == mpropdef.mclassdef.mmodule then continue
1719 # Else, we keep it
1720 candidates.add(mpropdef)
1721 end
1722 # Fast track for only one candidate
1723 if candidates.length <= 1 then return candidates
1724
1725 # Second, filter the most specific ones
1726 return select_most_specific(mmodule, candidates)
1727 end
1728
1729 # Return an array containing olny the most specific property definitions
1730 # This is an helper function for `lookup_definitions` and `lookup_super_definitions`
1731 private fun select_most_specific(mmodule: MModule, candidates: Array[MPROPDEF]): Array[MPROPDEF]
1732 do
1733 var res = new Array[MPROPDEF]
1734 for pd1 in candidates do
1735 var cd1 = pd1.mclassdef
1736 var c1 = cd1.mclass
1737 var keep = true
1738 for pd2 in candidates do
1739 if pd2 == pd1 then continue # do not compare with self!
1740 var cd2 = pd2.mclassdef
1741 var c2 = cd2.mclass
1742 if c2.mclass_type == c1.mclass_type then
1743 if cd2.mmodule.in_importation < cd1.mmodule then
1744 # cd2 refines cd1; therefore we skip pd1
1745 keep = false
1746 break
1747 end
1748 else if cd2.bound_mtype.is_subtype(mmodule, null, cd1.bound_mtype) and cd2.bound_mtype != cd1.bound_mtype then
1749 # cd2 < cd1; therefore we skip pd1
1750 keep = false
1751 break
1752 end
1753 end
1754 if keep then
1755 res.add(pd1)
1756 end
1757 end
1758 if res.is_empty then
1759 print "All lost! {candidates.join(", ")}"
1760 # FIXME: should be abort!
1761 end
1762 return res
1763 end
1764
1765 # Return the most specific definition in the linearization of `mtype`.
1766 #
1767 # If you want to know the next properties in the linearization,
1768 # look at `MPropDef::lookup_next_definition`.
1769 #
1770 # FIXME: the linearization is still unspecified
1771 #
1772 # REQUIRE: `not mtype.need_anchor`
1773 # REQUIRE: `mtype.has_mproperty(mmodule, self)`
1774 fun lookup_first_definition(mmodule: MModule, mtype: MType): MPROPDEF
1775 do
1776 assert mtype.has_mproperty(mmodule, self)
1777 return lookup_all_definitions(mmodule, mtype).first
1778 end
1779
1780 # Return all definitions in a linearization order
1781 # Most specific first, most general last
1782 fun lookup_all_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
1783 do
1784 assert not mtype.need_anchor
1785 mtype = mtype.as_notnullable
1786
1787 var cache = self.lookup_all_definitions_cache[mmodule, mtype]
1788 if cache != null then return cache
1789
1790 #print "select prop {mproperty} for {mtype} in {self}"
1791 # First, select all candidates
1792 var candidates = new Array[MPROPDEF]
1793 for mpropdef in self.mpropdefs do
1794 # If the definition is not imported by the module, then skip
1795 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
1796 # If the definition is not inherited by the type, then skip
1797 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
1798 # Else, we keep it
1799 candidates.add(mpropdef)
1800 end
1801 # Fast track for only one candidate
1802 if candidates.length <= 1 then
1803 self.lookup_all_definitions_cache[mmodule, mtype] = candidates
1804 return candidates
1805 end
1806
1807 mmodule.linearize_mpropdefs(candidates)
1808 candidates = candidates.reversed
1809 self.lookup_all_definitions_cache[mmodule, mtype] = candidates
1810 return candidates
1811 end
1812
1813 private var lookup_all_definitions_cache = new HashMap2[MModule, MType, Array[MPROPDEF]]
1814 end
1815
1816 # A global method
1817 class MMethod
1818 super MProperty
1819
1820 redef type MPROPDEF: MMethodDef
1821
1822 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1823 do
1824 super
1825 end
1826
1827 # Is the property defined at the top_level of the module?
1828 # Currently such a property are stored in `Object`
1829 var is_toplevel: Bool = false is writable
1830
1831 # Is the property a constructor?
1832 # Warning, this property can be inherited by subclasses with or without being a constructor
1833 # therefore, you should use `is_init_for` the verify if the property is a legal constructor for a given class
1834 var is_init: Bool = false is writable
1835
1836 # The constructor is a (the) root init with empty signature but a set of initializers
1837 var is_root_init: Bool = false is writable
1838
1839 # Is the property a 'new' constructor?
1840 var is_new: Bool = false is writable
1841
1842 # Is the property a legal constructor for a given class?
1843 # As usual, visibility is not considered.
1844 # FIXME not implemented
1845 fun is_init_for(mclass: MClass): Bool
1846 do
1847 return self.is_init
1848 end
1849 end
1850
1851 # A global attribute
1852 class MAttribute
1853 super MProperty
1854
1855 redef type MPROPDEF: MAttributeDef
1856
1857 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1858 do
1859 super
1860 end
1861 end
1862
1863 # A global virtual type
1864 class MVirtualTypeProp
1865 super MProperty
1866
1867 redef type MPROPDEF: MVirtualTypeDef
1868
1869 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1870 do
1871 super
1872 end
1873
1874 # The formal type associated to the virtual type property
1875 var mvirtualtype = new MVirtualType(self)
1876 end
1877
1878 # A definition of a property (local property)
1879 #
1880 # Unlike `MProperty`, a `MPropDef` is a local definition that belong to a
1881 # specific class definition (which belong to a specific module)
1882 abstract class MPropDef
1883 super MEntity
1884
1885 # The associated `MProperty` subclass.
1886 # the two specialization hierarchy are symmetric
1887 type MPROPERTY: MProperty
1888
1889 # Self class
1890 type MPROPDEF: MPropDef
1891
1892 # The origin of the definition
1893 var location: Location
1894
1895 # The class definition where the property definition is
1896 var mclassdef: MClassDef
1897
1898 # The associated global property
1899 var mproperty: MPROPERTY
1900
1901 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1902 do
1903 self.mclassdef = mclassdef
1904 self.mproperty = mproperty
1905 self.location = location
1906 mclassdef.mpropdefs.add(self)
1907 mproperty.mpropdefs.add(self)
1908 self.to_s = "{mclassdef}#{mproperty}"
1909 end
1910
1911 # Actually the name of the `mproperty`
1912 redef fun name do return mproperty.name
1913
1914 redef fun model do return mclassdef.model
1915
1916 # Internal name combining the module, the class and the property
1917 # Example: "mymodule#MyClass#mymethod"
1918 redef var to_s: String
1919
1920 # Is self the definition that introduce the property?
1921 fun is_intro: Bool do return mproperty.intro == self
1922
1923 # Return the next definition in linearization of `mtype`.
1924 #
1925 # This method is used to determine what method is called by a super.
1926 #
1927 # REQUIRE: `not mtype.need_anchor`
1928 fun lookup_next_definition(mmodule: MModule, mtype: MType): MPROPDEF
1929 do
1930 assert not mtype.need_anchor
1931
1932 var mpropdefs = self.mproperty.lookup_all_definitions(mmodule, mtype)
1933 var i = mpropdefs.iterator
1934 while i.is_ok and i.item != self do i.next
1935 assert has_property: i.is_ok
1936 i.next
1937 assert has_next_property: i.is_ok
1938 return i.item
1939 end
1940 end
1941
1942 # A local definition of a method
1943 class MMethodDef
1944 super MPropDef
1945
1946 redef type MPROPERTY: MMethod
1947 redef type MPROPDEF: MMethodDef
1948
1949 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1950 do
1951 super
1952 end
1953
1954 # The signature attached to the property definition
1955 var msignature: nullable MSignature = null is writable
1956
1957 # The signature attached to the `new` call on a root-init
1958 # This is a concatenation of the signatures of the initializers
1959 #
1960 # REQUIRE `mproperty.is_root_init == (new_msignature != null)`
1961 var new_msignature: nullable MSignature = null is writable
1962
1963 # List of initialisers to call in root-inits
1964 #
1965 # They could be setters or attributes
1966 #
1967 # REQUIRE `mproperty.is_root_init == (new_msignature != null)`
1968 var initializers = new Array[MProperty]
1969
1970 # Is the method definition abstract?
1971 var is_abstract: Bool = false is writable
1972
1973 # Is the method definition intern?
1974 var is_intern = false is writable
1975
1976 # Is the method definition extern?
1977 var is_extern = false is writable
1978 end
1979
1980 # A local definition of an attribute
1981 class MAttributeDef
1982 super MPropDef
1983
1984 redef type MPROPERTY: MAttribute
1985 redef type MPROPDEF: MAttributeDef
1986
1987 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1988 do
1989 super
1990 end
1991
1992 # The static type of the attribute
1993 var static_mtype: nullable MType = null is writable
1994 end
1995
1996 # A local definition of a virtual type
1997 class MVirtualTypeDef
1998 super MPropDef
1999
2000 redef type MPROPERTY: MVirtualTypeProp
2001 redef type MPROPDEF: MVirtualTypeDef
2002
2003 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
2004 do
2005 super
2006 end
2007
2008 # The bound of the virtual type
2009 var bound: nullable MType = null is writable
2010
2011 # Is the bound fixed?
2012 var is_fixed = false is writable
2013 end
2014
2015 # A kind of class.
2016 #
2017 # * `abstract_kind`
2018 # * `concrete_kind`
2019 # * `interface_kind`
2020 # * `enum_kind`
2021 # * `extern_kind`
2022 #
2023 # Note this class is basically an enum.
2024 # FIXME: use a real enum once user-defined enums are available
2025 class MClassKind
2026 redef var to_s: String
2027
2028 # Is a constructor required?
2029 var need_init: Bool
2030 private init(s: String, need_init: Bool)
2031 do
2032 self.to_s = s
2033 self.need_init = need_init
2034 end
2035
2036 # Can a class of kind `self` specializes a class of kine `other`?
2037 fun can_specialize(other: MClassKind): Bool
2038 do
2039 if other == interface_kind then return true # everybody can specialize interfaces
2040 if self == interface_kind or self == enum_kind then
2041 # no other case for interfaces
2042 return false
2043 else if self == extern_kind then
2044 # only compatible with themselves
2045 return self == other
2046 else if other == enum_kind or other == extern_kind then
2047 # abstract_kind and concrete_kind are incompatible
2048 return false
2049 end
2050 # remain only abstract_kind and concrete_kind
2051 return true
2052 end
2053 end
2054
2055 # The class kind `abstract`
2056 fun abstract_kind: MClassKind do return once new MClassKind("abstract class", true)
2057 # The class kind `concrete`
2058 fun concrete_kind: MClassKind do return once new MClassKind("class", true)
2059 # The class kind `interface`
2060 fun interface_kind: MClassKind do return once new MClassKind("interface", false)
2061 # The class kind `enum`
2062 fun enum_kind: MClassKind do return once new MClassKind("enum", false)
2063 # The class kind `extern`
2064 fun extern_kind: MClassKind do return once new MClassKind("extern class", false)