model: make MClass::intro public
[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 # Object model of the Nit language
18 #
19 # This module define the entities of the Nit meta-model like modules,
20 # classes, types and properties
21 #
22 # It also provide an API to build and query models.
23 #
24 # All model classes starts with the M letter (MModule, MClass, etc.)
25 #
26 # TODO: better doc
27 #
28 # TODO: liearization, closures, extern stuff
29 # FIXME: better handling of the types
30 module model
31
32 import poset
33 import location
34 import model_base
35
36 redef class Model
37 # All known classes
38 var mclasses: Array[MClass] = new Array[MClass]
39
40 # All known properties
41 var mproperties: Array[MProperty] = new Array[MProperty]
42
43 # Hierarchy of class definition.
44 #
45 # Each classdef is associated with its super-classdefs in regard to
46 # its module of definition.
47 var mclassdef_hierarchy: POSet[MClassDef] = new POSet[MClassDef]
48
49 # Class-type hierarchy restricted to the introduction.
50 #
51 # The idea is that what is true on introduction is always true whatever
52 # the module considered.
53 # Therefore, this hierarchy is used for a fast positive subtype check.
54 #
55 # This poset will evolve in a monotonous way:
56 # * Two non connected nodes will remain unconnected
57 # * New nodes can appear with new edges
58 private var intro_mtype_specialization_hierarchy: POSet[MClassType] = new POSet[MClassType]
59
60 # Global overlapped class-type hierarchy.
61 # The hierarchy when all modules are combined.
62 # Therefore, this hierarchy is used for a fast negative subtype check.
63 #
64 # This poset will evolve in an anarchic way. Loops can even be created.
65 #
66 # FIXME decide what to do on loops
67 private var full_mtype_specialization_hierarchy: POSet[MClassType] = new POSet[MClassType]
68
69 # Collections of classes grouped by their short name
70 private var mclasses_by_name: MultiHashMap[String, MClass] = new MultiHashMap[String, MClass]
71
72 # Return all class named `name'.
73 #
74 # If such a class does not exist, null is returned
75 # (instead of an empty array)
76 #
77 # Visibility or modules are not considered
78 fun get_mclasses_by_name(name: String): nullable Array[MClass]
79 do
80 if mclasses_by_name.has_key(name) then
81 return mclasses_by_name[name]
82 else
83 return null
84 end
85 end
86
87 # Collections of properties grouped by their short name
88 private var mproperties_by_name: MultiHashMap[String, MProperty] = new MultiHashMap[String, MProperty]
89
90 # Return all properties named `name'.
91 #
92 # If such a property does not exist, null is returned
93 # (instead of an empty array)
94 #
95 # Visibility or modules are not considered
96 fun get_mproperties_by_name(name: String): nullable Array[MProperty]
97 do
98 if not mproperties_by_name.has_key(name) then
99 return null
100 else
101 return mproperties_by_name[name]
102 end
103 end
104
105 # The only null type
106 var null_type: MNullType = new MNullType(self)
107 end
108
109 redef class MModule
110 # All the classes introduced in the module
111 var intro_mclasses: Array[MClass] = new Array[MClass]
112
113 # All the class definitions of the module
114 # (introduction and refinement)
115 var mclassdefs: Array[MClassDef] = new Array[MClassDef]
116
117 # Does the current module has a given class `mclass'?
118 # Return true if the mmodule introduces, refines or imports a class.
119 # Visibility is not considered.
120 fun has_mclass(mclass: MClass): Bool
121 do
122 return self.in_importation <= mclass.intro_mmodule
123 end
124
125 # Full hierarchy of introduced ans imported classes.
126 #
127 # Create a new hierarchy got by flattening the classes for the module
128 # and its imported modules.
129 # Visibility is not considered.
130 #
131 # Note: this function is expensive and is usually used for the main
132 # module of a program only. Do not use it to do you own subtype
133 # functions.
134 fun flatten_mclass_hierarchy: POSet[MClass]
135 do
136 var res = self.flatten_mclass_hierarchy_cache
137 if res != null then return res
138 res = new POSet[MClass]
139 for m in self.in_importation.greaters do
140 for cd in m.mclassdefs do
141 var c = cd.mclass
142 for s in cd.supertypes do
143 res.add_edge(c, s.mclass)
144 end
145 end
146 end
147 self.flatten_mclass_hierarchy_cache = res
148 return res
149 end
150
151 private var flatten_mclass_hierarchy_cache: nullable POSet[MClass] = null
152
153 # The primitive type Object, the root of the class hierarchy
154 fun object_type: MClassType
155 do
156 var res = self.object_type_cache
157 if res != null then return res
158 res = self.get_primitive_class("Object").mclass_type
159 self.object_type_cache = res
160 return res
161 end
162
163 private var object_type_cache: nullable MClassType
164
165 # The primitive type Bool
166 fun bool_type: MClassType
167 do
168 var res = self.bool_type_cache
169 if res != null then return res
170 res = self.get_primitive_class("Bool").mclass_type
171 self.bool_type_cache = res
172 return res
173 end
174
175 private var bool_type_cache: nullable MClassType
176
177 # The primitive type Sys, the main type of the program, if any
178 fun sys_type: nullable MClassType
179 do
180 var clas = self.model.get_mclasses_by_name("Sys")
181 if clas == null then return null
182 return get_primitive_class("Sys").mclass_type
183 end
184
185 # Force to get the primitive class named `name' or abort
186 fun get_primitive_class(name: String): MClass
187 do
188 var cla = self.model.get_mclasses_by_name(name)
189 if cla == null then
190 if name == "Bool" then
191 var c = new MClass(self, name, 0, enum_kind, public_visibility)
192 var cladef = new MClassDef(self, c.mclass_type, new Location(null, 0,0,0,0), new Array[String])
193 return c
194 end
195 print("Fatal Error: no primitive class {name}")
196 exit(1)
197 end
198 assert cla.length == 1 else print cla.join(", ")
199 return cla.first
200 end
201
202 # Try to get the primitive method named `name' on the type `recv'
203 fun try_get_primitive_method(name: String, recv: MType): nullable MMethod
204 do
205 var props = self.model.get_mproperties_by_name(name)
206 if props == null then return null
207 var res: nullable MMethod = null
208 for mprop in props do
209 assert mprop isa MMethod
210 if not recv.has_mproperty(self, mprop) then continue
211 if res == null then
212 res = mprop
213 else
214 print("Fatal Error: ambigous property name '{name}'; conflict between {mprop.full_name} and {res.full_name}")
215 abort
216 end
217 end
218 return res
219 end
220 end
221
222 # A named class
223 #
224 # MClass are global to the model; it means that a MClass is not bound to a
225 # specific `MModule`.
226 #
227 # This characteristic helps the reasoning about classes in a program since a
228 # single MClass object always denote the same class.
229 # However, because a MClass is global, it does not really have properties nor
230 # belong to a hierarchy since the property and the
231 # hierarchy of a class depends of a module.
232 class MClass
233 # The module that introduce the class
234 # While classes are not bound to a specific module,
235 # the introducing module is used for naming an visibility
236 var intro_mmodule: MModule
237
238 # The short name of the class
239 # In Nit, the name of a class cannot evolve in refinements
240 var name: String
241
242 # The canonical name of the class
243 # Example: "owner::module::MyClass"
244 fun full_name: String
245 do
246 return "{self.intro_mmodule.full_name}::{name}"
247 end
248
249 # The number of generic formal parameters
250 # 0 if the class is not generic
251 var arity: Int
252
253 # The kind of the class (interface, abstract class, etc.)
254 # In Nit, the kind of a class cannot evolve in refinements
255 var kind: MClassKind
256
257 # The visibility of the class
258 # In Nit, the visibility of a class cannot evolve in refinements
259 var visibility: MVisibility
260
261 init(intro_mmodule: MModule, name: String, arity: Int, kind: MClassKind, visibility: MVisibility)
262 do
263 self.intro_mmodule = intro_mmodule
264 self.name = name
265 self.arity = arity
266 self.kind = kind
267 self.visibility = visibility
268 intro_mmodule.intro_mclasses.add(self)
269 var model = intro_mmodule.model
270 model.mclasses_by_name.add_one(name, self)
271 model.mclasses.add(self)
272
273 # Create the formal parameter types
274 if arity > 0 then
275 var mparametertypes = new Array[MParameterType]
276 for i in [0..arity[ do
277 var mparametertype = new MParameterType(self, i)
278 mparametertypes.add(mparametertype)
279 end
280 var mclass_type = new MGenericType(self, mparametertypes)
281 self.mclass_type = mclass_type
282 self.get_mtype_cache.add(mclass_type)
283 else
284 self.mclass_type = new MClassType(self)
285 end
286 end
287
288 # All class definitions (introduction and refinements)
289 var mclassdefs: Array[MClassDef] = new Array[MClassDef]
290
291 # Alias for `name'
292 redef fun to_s do return self.name
293
294 # The definition that introduced the class
295 # Warning: the introduction is the first `MClassDef' object associated
296 # to self. If self is just created without having any associated
297 # definition, this method will abort
298 fun intro: MClassDef
299 do
300 assert has_a_first_definition: not mclassdefs.is_empty
301 return mclassdefs.first
302 end
303
304 # Return the class `self' in the class hierarchy of the module `mmodule'.
305 #
306 # SEE: MModule::flatten_mclass_hierarchy
307 # REQUIRE: mmodule.has_mclass(self)
308 fun in_hierarchy(mmodule: MModule): POSetElement[MClass]
309 do
310 return mmodule.flatten_mclass_hierarchy[self]
311 end
312
313 # The principal static type of the class.
314 #
315 # For non-generic class, mclass_type is the only MClassType based
316 # on self.
317 #
318 # For a generic class, the arguments are the formal parameters.
319 # i.e.: for the class `Array[E:Object]', the mtype is Array[E].
320 # If you want `Array[Object]' the see `MClassDef::bound_mtype'
321 #
322 # For generic classes, the mclass_type is also the way to get a formal
323 # generic parameter type.
324 #
325 # To get other types based on a generic class, see `get_mtype'.
326 #
327 # ENSURE: mclass_type.mclass == self
328 var mclass_type: MClassType
329
330 # Return a generic type based on the class
331 # Is the class is not generic, then the result is `mclass_type'
332 #
333 # REQUIRE: type_arguments.length == self.arity
334 fun get_mtype(mtype_arguments: Array[MType]): MClassType
335 do
336 assert mtype_arguments.length == self.arity
337 if self.arity == 0 then return self.mclass_type
338 for t in self.get_mtype_cache do
339 if t.arguments == mtype_arguments then
340 return t
341 end
342 end
343 var res = new MGenericType(self, mtype_arguments)
344 self.get_mtype_cache.add res
345 return res
346 end
347
348 private var get_mtype_cache: Array[MGenericType] = new Array[MGenericType]
349 end
350
351
352 # A definition (an introduction or a refinement) of a class in a module
353 #
354 # A MClassDef is associated with an explicit (or almost) definition of a
355 # class. Unlike MClass, a MClassDef is a local definition that belong to
356 # a specific module
357 class MClassDef
358 # The module where the definition is
359 var mmodule: MModule
360
361 # The associated MClass
362 var mclass: MClass
363
364 # The bounded type associated to the mclassdef
365 #
366 # For a non-generic class, `bound_mtype' and `mclass.mclass_type'
367 # are the same type.
368 #
369 # Example:
370 # For the classdef Array[E: Object], the bound_mtype is Array[Object].
371 # If you want Array[E], then see `mclass.mclass_type'
372 #
373 # ENSURE: bound_mtype.mclass = self.mclass
374 var bound_mtype: MClassType
375
376 # Name of each formal generic parameter (in order of declaration)
377 var parameter_names: Array[String]
378
379 # The origin of the definition
380 var location: Location
381
382 # Internal name combining the module and the class
383 # Example: "mymodule#MyClass"
384 redef fun to_s do return "{mmodule}#{mclass}"
385
386 init(mmodule: MModule, bound_mtype: MClassType, location: Location, parameter_names: Array[String])
387 do
388 assert bound_mtype.mclass.arity == parameter_names.length
389 self.bound_mtype = bound_mtype
390 self.mmodule = mmodule
391 self.mclass = bound_mtype.mclass
392 self.location = location
393 mmodule.mclassdefs.add(self)
394 mclass.mclassdefs.add(self)
395 self.parameter_names = parameter_names
396 end
397
398 # All declared super-types
399 # FIXME: quite ugly but not better idea yet
400 var supertypes: Array[MClassType] = new Array[MClassType]
401
402 # Register some super-types for the class (ie "super SomeType")
403 #
404 # The hierarchy must not already be set
405 # REQUIRE: self.in_hierarchy == null
406 fun set_supertypes(supertypes: Array[MClassType])
407 do
408 assert unique_invocation: self.in_hierarchy == null
409 var mmodule = self.mmodule
410 var model = mmodule.model
411 var mtype = self.bound_mtype
412
413 for supertype in supertypes do
414 self.supertypes.add(supertype)
415
416 # Register in full_type_specialization_hierarchy
417 model.full_mtype_specialization_hierarchy.add_edge(mtype, supertype)
418 # Register in intro_type_specialization_hierarchy
419 if mclass.intro_mmodule == mmodule and supertype.mclass.intro_mmodule == mmodule then
420 model.intro_mtype_specialization_hierarchy.add_edge(mtype, supertype)
421 end
422 end
423
424 end
425
426 # Collect the super-types (set by set_supertypes) to build the hierarchy
427 #
428 # This function can only invoked once by class
429 # REQUIRE: self.in_hierarchy == null
430 # ENSURE: self.in_hierarchy != null
431 fun add_in_hierarchy
432 do
433 assert unique_invocation: self.in_hierarchy == null
434 var model = mmodule.model
435 var res = model.mclassdef_hierarchy.add_node(self)
436 self.in_hierarchy = res
437 var mtype = self.bound_mtype
438
439 # Here we need to connect the mclassdef to its pairs in the mclassdef_hierarchy
440 # The simpliest way is to attach it to collect_mclassdefs
441 for mclassdef in mtype.collect_mclassdefs(mmodule) do
442 res.poset.add_edge(self, mclassdef)
443 end
444 end
445
446 # The view of the class definition in `mclassdef_hierarchy'
447 var in_hierarchy: nullable POSetElement[MClassDef] = null
448
449 # Is the definition the one that introduced `mclass`?
450 fun is_intro: Bool do return mclass.intro == self
451
452 # All properties introduced by the classdef
453 var intro_mproperties: Array[MProperty] = new Array[MProperty]
454
455 # All property definitions in the class (introductions and redefinitions)
456 var mpropdefs: Array[MPropDef] = new Array[MPropDef]
457 end
458
459 # A global static type
460 #
461 # MType are global to the model; it means that a MType is not bound to a
462 # specific `MModule`.
463 # This characteristic helps the reasoning about static types in a program
464 # since a single MType object always denote the same type.
465 #
466 # However, because a MType is global, it does not really have properties
467 # nor have subtypes to a hierarchy since the property and the class hierarchy
468 # depends of a module.
469 # Moreover, virtual types an formal generic parameter types also depends on
470 # a receiver to have sense.
471 #
472 # Therefore, most method of the types require a module and an anchor.
473 # The module is used to know what are the classes and the specialization
474 # links.
475 # The anchor is used to know what is the bound of the virtual types and formal
476 # generic parameter types.
477 #
478 # MType are not directly usable to get properties. See the `anchor_to' method
479 # and the `MClassType' class.
480 #
481 # FIXME: the order of the parameters is not the best. We mus pick on from:
482 # * foo(mmodule, anchor, othertype)
483 # * foo(othertype, anchor, mmodule)
484 # * foo(anchor, mmodule, othertype)
485 # * foo(othertype, mmodule, anchor)
486 #
487 # FIXME: Add a 'is_valid_anchor' to improve imputability.
488 # Currently, anchors are used "as it" without check thus if the caller gives a
489 # bad anchor, then the method will likely crash (abort) in a bad case
490 #
491 # FIXME: maybe allways add an anchor with a nullable type (as in is_subtype)
492 abstract class MType
493
494 # The model of the type
495 fun model: Model is abstract
496
497 # Return true if `self' is an subtype of `sup'.
498 # The typing is done using the standard typing policy of Nit.
499 #
500 # REQUIRE: anchor == null implies not self.need_anchor and not sup.need_anchor
501 fun is_subtype(mmodule: MModule, anchor: nullable MClassType, sup: MType): Bool
502 do
503 var sub = self
504 if sub == sup then return true
505 if anchor == null then
506 assert not sub.need_anchor
507 assert not sup.need_anchor
508 end
509 # First, resolve the types
510 if sub isa MParameterType or sub isa MVirtualType then
511 assert anchor != null
512 sub = sub.resolve_for(anchor, anchor, mmodule, false)
513 end
514 if sup isa MParameterType or sup isa MVirtualType then
515 assert anchor != null
516 sup = sup.resolve_for(anchor, anchor, mmodule, false)
517 end
518
519 if sup isa MParameterType or sup isa MVirtualType or sup isa MNullType then
520 return sub == sup
521 end
522 if sub isa MParameterType or sub isa MVirtualType then
523 assert anchor != null
524 sub = sub.anchor_to(mmodule, anchor)
525 end
526 if sup isa MNullableType then
527 if sub isa MNullType then
528 return true
529 else if sub isa MNullableType then
530 return sub.mtype.is_subtype(mmodule, anchor, sup.mtype)
531 else if sub isa MClassType then
532 return sub.is_subtype(mmodule, anchor, sup.mtype)
533 else
534 abort
535 end
536 end
537
538 assert sup isa MClassType # It is the only remaining type
539 if sub isa MNullableType or sub isa MNullType then
540 return false
541 end
542
543 if sub == sup then return true
544
545 assert sub isa MClassType # It is the only remaining type
546 if anchor == null then anchor = sub # UGLY: any anchor will work
547 var resolved_sub = sub.anchor_to(mmodule, anchor)
548 var res = resolved_sub.collect_mclasses(mmodule).has(sup.mclass)
549 if res == false then return false
550 if not sup isa MGenericType then return true
551 var sub2 = sub.supertype_to(mmodule, anchor, sup.mclass)
552 assert sub2.mclass == sup.mclass
553 for i in [0..sup.mclass.arity[ do
554 var sub_arg = sub2.arguments[i]
555 var sup_arg = sup.arguments[i]
556 res = sub_arg.is_subtype(mmodule, anchor, sup_arg)
557 if res == false then return false
558 end
559 return true
560 end
561
562 # The base class type on which self is based
563 #
564 # This base type is used to get property (an internally to perform
565 # unsafe type comparison).
566 #
567 # Beware: some types (like null) are not based on a class thus this
568 # method will crash
569 #
570 # Basically, this function transform the virtual types and parameter
571 # types to their bounds.
572 #
573 # Example
574 # class G[T: A]
575 # type U: X
576 # end
577 # class H
578 # super G[C]
579 # redef type U: Y
580 # end
581 # Map[T,U] anchor_to H #-> Map[C,Y]
582 #
583 # Explanation of the example:
584 # In H, T is set to C, because "H super G[C]", and U is bound to Y,
585 # because "redef type U: Y". Therefore, Map[T, U] is bound to
586 # Map[C, Y]
587 #
588 # ENSURE: not self.need_anchor implies return == self
589 # ENSURE: not return.need_anchor
590 fun anchor_to(mmodule: MModule, anchor: MClassType): MType
591 do
592 if not need_anchor then return self
593 assert not anchor.need_anchor
594 # Just resolve to the anchor and clear all the virtual types
595 var res = self.resolve_for(anchor, anchor, mmodule, true)
596 assert not res.need_anchor
597 return res
598 end
599
600 # Does `self' contain a virtual type or a formal generic parameter type?
601 # In order to remove those types, you usually want to use `anchor_to'.
602 fun need_anchor: Bool do return true
603
604 # Return the supertype when adapted to a class.
605 #
606 # In Nit, for each super-class of a type, there is a equivalent super-type.
607 #
608 # Example:
609 # class G[T, U]
610 # class H[V] super G[V, Bool]
611 # H[Int] supertype_to G #-> G[Int, Bool]
612 #
613 # REQUIRE: `super_mclass' is a super-class of `self'
614 # ENSURE: return.mclass = mclass
615 fun supertype_to(mmodule: MModule, anchor: MClassType, super_mclass: MClass): MClassType
616 do
617 if super_mclass.arity == 0 then return super_mclass.mclass_type
618 if self isa MClassType and self.mclass == super_mclass then return self
619 var resolved_self = self.anchor_to(mmodule, anchor)
620 var supertypes = resolved_self.collect_mtypes(mmodule)
621 for supertype in supertypes do
622 if supertype.mclass == super_mclass then
623 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
624 return supertype.resolve_for(self, anchor, mmodule, false)
625 end
626 end
627 abort
628 end
629
630 # Replace formals generic types in self with resolved values in `mtype'
631 # If `cleanup_virtual' is true, then virtual types are also replaced
632 # with their bounds
633 #
634 # This function returns self if `need_anchor' is false.
635 #
636 # Example:
637 # class G[E]
638 # class H[F] super G[F]
639 # Array[E] resolve_for H[Int] #-> Array[Int]
640 #
641 # Explanation of the example:
642 # * Array[E].need_anchor is true because there is a formal generic
643 # parameter type E
644 # * E makes sense for H[Int] because E is a formal parameter of G
645 # and H specialize G
646 # * Since "H[F] super G[F]", E is in fact F for H
647 # * More specifically, in H[Int], E is Int
648 # * So, in H[Int], Array[E] is Array[Int]
649 #
650 # This function is mainly used to inherit a signature.
651 # Because, unlike `anchor_type', we do not want a full resolution of
652 # a type but only an adapted version of it.
653 #
654 # Example:
655 # class A[E]
656 # foo(e:E):E
657 # end
658 # class B super A[Int] end
659 #
660 # The signature on foo is (e: E): E
661 # If we resolve the signature for B, we get (e:Int):Int
662 #
663 # TODO: Explain the cleanup_virtual
664 #
665 # FIXME: the parameter `cleanup_virtual' is just a bad idea, but having
666 # two function instead of one seems also to be a bad idea.
667 #
668 # ENSURE: not self.need_anchor implies return == self
669 fun resolve_for(mtype: MType, anchor: MClassType, mmodule: MModule, cleanup_virtual: Bool): MType is abstract
670
671 # Return the nullable version of the type
672 # If the type is already nullable then self is returned
673 #
674 # FIXME: DO NOT WORK YET
675 fun as_nullable: MType
676 do
677 var res = self.as_nullable_cache
678 if res != null then return res
679 res = new MNullableType(self)
680 self.as_nullable_cache = res
681 return res
682 end
683
684 private var as_nullable_cache: nullable MType = null
685
686 # Compute all the classdefs inherited/imported.
687 # The returned set contains:
688 # * the class definitions from `mmodule` and its imported modules
689 # * the class definitions of this type and its super-types
690 #
691 # This function is used mainly internally.
692 #
693 # REQUIRE: not self.need_anchor
694 fun collect_mclassdefs(mmodule: MModule): Set[MClassDef] is abstract
695
696 # Compute all the super-classes.
697 # This function is used mainly internally.
698 #
699 # REQUIRE: not self.need_anchor
700 fun collect_mclasses(mmodule: MModule): Set[MClass] is abstract
701
702 # Compute all the declared super-types.
703 # Super-types are returned as declared in the classdefs (verbatim).
704 # This function is used mainly internally.
705 #
706 # REQUIRE: not self.need_anchor
707 fun collect_mtypes(mmodule: MModule): Set[MClassType] is abstract
708
709 # Is the property in self for a given module
710 # This method does not filter visibility or whatever
711 #
712 # REQUIRE: not self.need_anchor
713 fun has_mproperty(mmodule: MModule, mproperty: MProperty): Bool
714 do
715 assert not self.need_anchor
716 return self.collect_mclassdefs(mmodule).has(mproperty.intro_mclassdef)
717 end
718 end
719
720 # A type based on a class.
721 #
722 # MClassType have properties (see `has_property').
723 class MClassType
724 super MType
725
726 # The associated class
727 var mclass: MClass
728
729 redef fun model do return self.mclass.intro_mmodule.model
730
731 private init(mclass: MClass)
732 do
733 self.mclass = mclass
734 end
735
736 # The formal arguments of the type
737 # ENSURE: return.length == self.mclass.arity
738 var arguments: Array[MType] = new Array[MType]
739
740 redef fun to_s do return mclass.to_s
741
742 redef fun need_anchor do return false
743
744 redef fun anchor_to(mmodule: MModule, anchor: MClassType): MClassType
745 do
746 return super.as(MClassType)
747 end
748
749 redef fun resolve_for(mtype: MType, anchor: MClassType, mmodule: MModule, cleanup_virtual: Bool): MClassType do return self
750
751 redef fun collect_mclassdefs(mmodule)
752 do
753 assert not self.need_anchor
754 var cache = self.collect_mclassdefs_cache
755 if not cache.has_key(mmodule) then
756 self.collect_things(mmodule)
757 end
758 return cache[mmodule]
759 end
760
761 redef fun collect_mclasses(mmodule)
762 do
763 assert not self.need_anchor
764 var cache = self.collect_mclasses_cache
765 if not cache.has_key(mmodule) then
766 self.collect_things(mmodule)
767 end
768 return cache[mmodule]
769 end
770
771 redef fun collect_mtypes(mmodule)
772 do
773 assert not self.need_anchor
774 var cache = self.collect_mtypes_cache
775 if not cache.has_key(mmodule) then
776 self.collect_things(mmodule)
777 end
778 return cache[mmodule]
779 end
780
781 # common implementation for `collect_mclassdefs', `collect_mclasses', and `collect_mtypes'.
782 private fun collect_things(mmodule: MModule)
783 do
784 var res = new HashSet[MClassDef]
785 var seen = new HashSet[MClass]
786 var types = new HashSet[MClassType]
787 seen.add(self.mclass)
788 var todo = [self.mclass]
789 while not todo.is_empty do
790 var mclass = todo.pop
791 #print "process {mclass}"
792 for mclassdef in mclass.mclassdefs do
793 if not mmodule.in_importation <= mclassdef.mmodule then continue
794 #print " process {mclassdef}"
795 res.add(mclassdef)
796 for supertype in mclassdef.supertypes do
797 types.add(supertype)
798 var superclass = supertype.mclass
799 if seen.has(superclass) then continue
800 #print " add {superclass}"
801 seen.add(superclass)
802 todo.add(superclass)
803 end
804 end
805 end
806 collect_mclassdefs_cache[mmodule] = res
807 collect_mclasses_cache[mmodule] = seen
808 collect_mtypes_cache[mmodule] = types
809 end
810
811 private var collect_mclassdefs_cache: HashMap[MModule, Set[MClassDef]] = new HashMap[MModule, Set[MClassDef]]
812 private var collect_mclasses_cache: HashMap[MModule, Set[MClass]] = new HashMap[MModule, Set[MClass]]
813 private var collect_mtypes_cache: HashMap[MModule, Set[MClassType]] = new HashMap[MModule, Set[MClassType]]
814
815 end
816
817 # A type based on a generic class.
818 # A generic type a just a class with additional formal generic arguments.
819 class MGenericType
820 super MClassType
821
822 private init(mclass: MClass, arguments: Array[MType])
823 do
824 super(mclass)
825 assert self.mclass.arity == arguments.length
826 self.arguments = arguments
827
828 self.need_anchor = false
829 for t in arguments do
830 if t.need_anchor then
831 self.need_anchor = true
832 break
833 end
834 end
835 end
836
837 # Recursively print the type of the arguments within brackets.
838 # Example: "Map[String,List[Int]]"
839 redef fun to_s
840 do
841 return "{mclass}[{arguments.join(",")}]"
842 end
843
844 redef var need_anchor: Bool
845
846 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
847 do
848 if not need_anchor then return self
849 var types = new Array[MType]
850 for t in arguments do
851 types.add(t.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
852 end
853 return mclass.get_mtype(types)
854 end
855 end
856
857 # A virtual formal type.
858 class MVirtualType
859 super MType
860
861 # The property associated with the type.
862 # Its the definitions of this property that determine the bound or the virtual type.
863 var mproperty: MProperty
864
865 redef fun model do return self.mproperty.intro_mclassdef.mmodule.model
866
867 # Lookup the bound for a given resolved_receiver
868 # The result may be a other virtual type (or a parameter type)
869 #
870 # The result is returned exactly as declared in the "type" property (verbatim).
871 #
872 # In case of conflict, the method aborts.
873 fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType
874 do
875 assert not resolved_receiver.need_anchor
876 var props = self.mproperty.lookup_definitions(mmodule, resolved_receiver)
877 if props.is_empty then
878 abort
879 else if props.length == 1 then
880 return props.first.as(MVirtualTypeDef).bound.as(not null)
881 end
882 var types = new ArraySet[MType]
883 for p in props do
884 types.add(p.as(MVirtualTypeDef).bound.as(not null))
885 end
886 if types.length == 1 then
887 return types.first
888 end
889 abort
890 end
891
892 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
893 do
894 if not cleanup_virtual then return self
895 # self is a virtual type declared (or inherited) in mtype
896 # The point of the function it to get the bound of the virtual type that make sense for mtype
897 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
898 #print "{class_name}: {self}/{mtype}/{anchor}?"
899 var resolved_reciever = mtype.resolve_for(anchor, anchor, mmodule, true)
900 # Now, we can get the bound
901 var verbatim_bound = lookup_bound(mmodule, resolved_reciever)
902 # The bound is exactly as declared in the "type" property, so we must resolve it again
903 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, true)
904 #print "{class_name}: {self}/{mtype}/{anchor} -> {self}/{resolved_reciever}/{anchor} -> {verbatim_bound}/{mtype}/{anchor} -> {res}"
905 return res
906 end
907
908 redef fun to_s do return self.mproperty.to_s
909
910 init(mproperty: MProperty)
911 do
912 self.mproperty = mproperty
913 end
914 end
915
916 # The type associated the a formal parameter generic type of a class
917 #
918 # Each parameter type is associated to a specific class.
919 # It's mean that all refinements of a same class "share" the parameter type,
920 # but that a generic subclass has its on parameter types.
921 #
922 # However, in the sense of the meta-model, the a parameter type of a class is
923 # a valid types in a subclass. The "in the sense of the meta-model" is
924 # important because, in the Nit language, the programmer cannot refers
925 # directly to the parameter types of the super-classes.
926 #
927 # Example:
928 # class A[E]
929 # fun e: E is abstract
930 # end
931 # class B[F]
932 # super A[Array[F]]
933 # end
934 # In the class definition B[F], `F' is a valid type but `E' is not.
935 # However, `self.e' is a valid method call, and the signature of `e' is
936 # declared `e: E'.
937 #
938 # Note that parameter types are shared among class refinements.
939 # Therefore parameter only have an internal name (see `to_s' for details).
940 # TODO: Add a 'name_for' to get better messages.
941 class MParameterType
942 super MType
943
944 # The generic class where the parameter belong
945 var mclass: MClass
946
947 redef fun model do return self.mclass.intro_mmodule.model
948
949 # The position of the parameter (0 for the first parameter)
950 # FIXME: is `position' a better name?
951 var rank: Int
952
953 # Internal name of the parameter type
954 # Names of parameter types changes in each class definition
955 # Therefore, this method return an internal name.
956 # Example: return "G#1" for the second parameter of the class G
957 # FIXME: add a way to get the real name in a classdef
958 redef fun to_s do return "{mclass}#{rank}"
959
960 # Resolve the bound for a given resolved_receiver
961 # The result may be a other virtual type (or a parameter type)
962 fun lookup_bound(mmodule: MModule, resolved_receiver: MType): MType
963 do
964 assert not resolved_receiver.need_anchor
965 var goalclass = self.mclass
966 var supertypes = resolved_receiver.collect_mtypes(mmodule)
967 for t in supertypes do
968 if t.mclass == goalclass then
969 # Yeah! c specialize goalclass with a "super `t'". So the question is what is the argument of f
970 # FIXME: Here, we stop on the first goal. Should we check others and detect inconsistencies?
971 var res = t.arguments[self.rank]
972 return res
973 end
974 end
975 abort
976 end
977
978 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
979 do
980 #print "{class_name}: {self}/{mtype}/{anchor}?"
981
982 if mtype isa MGenericType and mtype.mclass == self.mclass then
983 return mtype.arguments[self.rank]
984 end
985
986 # self is a parameter type of mtype (or of a super-class of mtype)
987 # The point of the function it to get the bound of the virtual type that make sense for mtype
988 # But because mtype is maybe a virtual/formal type, we need to get a real receiver first
989 # FIXME: What happend here is far from clear. Thus this part must be validated and clarified
990 var resolved_receiver = mtype.resolve_for(anchor.mclass.mclass_type, anchor, mmodule, true)
991 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
992 if resolved_receiver isa MParameterType then
993 assert resolved_receiver.mclass == anchor.mclass
994 resolved_receiver = anchor.arguments[resolved_receiver.rank]
995 if resolved_receiver isa MNullableType then resolved_receiver = resolved_receiver.mtype
996 end
997 assert resolved_receiver isa MClassType else print "{class_name}: {self}/{mtype}/{anchor}? {resolved_receiver}"
998
999 # Eh! The parameter is in the current class.
1000 # So we return the corresponding argument, no mater what!
1001 if resolved_receiver.mclass == self.mclass then
1002 var res = resolved_receiver.arguments[self.rank]
1003 #print "{class_name}: {self}/{mtype}/{anchor} -> direct {res}"
1004 return res
1005 end
1006
1007 resolved_receiver = resolved_receiver.resolve_for(anchor, anchor, mmodule, false)
1008 # Now, we can get the bound
1009 var verbatim_bound = lookup_bound(mmodule, resolved_receiver)
1010 # The bound is exactly as declared in the "type" property, so we must resolve it again
1011 var res = verbatim_bound.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1012
1013 #print "{class_name}: {self}/{mtype}/{anchor} -> indirect {res}"
1014
1015 return res
1016 end
1017
1018 init(mclass: MClass, rank: Int)
1019 do
1020 self.mclass = mclass
1021 self.rank = rank
1022 end
1023 end
1024
1025 # A type prefixed with "nullable"
1026 # FIXME Stub implementation
1027 class MNullableType
1028 super MType
1029
1030 # The base type of the nullable type
1031 var mtype: MType
1032
1033 redef fun model do return self.mtype.model
1034
1035 init(mtype: MType)
1036 do
1037 self.mtype = mtype
1038 end
1039
1040 redef fun to_s do return "nullable {mtype}"
1041
1042 redef fun need_anchor do return mtype.need_anchor
1043 redef fun as_nullable do return self
1044 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1045 do
1046 var res = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1047 return res.as_nullable
1048 end
1049
1050 redef fun collect_mclassdefs(mmodule)
1051 do
1052 assert not self.need_anchor
1053 return self.mtype.collect_mclassdefs(mmodule)
1054 end
1055
1056 redef fun collect_mclasses(mmodule)
1057 do
1058 assert not self.need_anchor
1059 return self.mtype.collect_mclasses(mmodule)
1060 end
1061
1062 redef fun collect_mtypes(mmodule)
1063 do
1064 assert not self.need_anchor
1065 return self.mtype.collect_mtypes(mmodule)
1066 end
1067 end
1068
1069 # The type of the only value null
1070 #
1071 # The is only one null type per model, see `MModel::null_type'.
1072 class MNullType
1073 super MType
1074 redef var model: Model
1075 protected init(model: Model)
1076 do
1077 self.model = model
1078 end
1079 redef fun to_s do return "null"
1080 redef fun as_nullable do return self
1081 redef fun need_anchor do return false
1082 redef fun resolve_for(mtype, anchor, mmodule, cleanup_virtual) do return self
1083
1084 redef fun collect_mclassdefs(mmodule) do return new HashSet[MClassDef]
1085
1086 redef fun collect_mclasses(mmodule) do return new HashSet[MClass]
1087
1088 redef fun collect_mtypes(mmodule) do return new HashSet[MClassType]
1089 end
1090
1091 # A signature of a method (or a closure)
1092 class MSignature
1093 super MType
1094
1095 # The each parameter (in order)
1096 var mparameters: Array[MParameter]
1097
1098 var mclosures = new Array[MParameter]
1099
1100 # The return type (null for a procedure)
1101 var return_mtype: nullable MType
1102
1103 # REQUIRE: 1 <= mparameters.count p -> p.is_vararg
1104 init(mparameters: Array[MParameter], return_mtype: nullable MType)
1105 do
1106 var vararg_rank = -1
1107 for i in [0..mparameters.length[ do
1108 var parameter = mparameters[i]
1109 if parameter.is_vararg then
1110 assert vararg_rank == -1
1111 vararg_rank = i
1112 end
1113 end
1114 self.mparameters = mparameters
1115 self.return_mtype = return_mtype
1116 self.vararg_rank = vararg_rank
1117 end
1118
1119 # The rank of the ellipsis (...) for vararg (starting from 0).
1120 # value is -1 if there is no vararg.
1121 # Example: for "(a: Int, b: Bool..., c: Char)" #-> vararg_rank=1
1122 var vararg_rank: Int
1123
1124 # The number or parameters
1125 fun arity: Int do return mparameters.length
1126
1127 redef fun to_s
1128 do
1129 var b = new Buffer
1130 if not mparameters.is_empty then
1131 b.append("(")
1132 for i in [0..mparameters.length[ do
1133 var mparameter = mparameters[i]
1134 if i > 0 then b.append(", ")
1135 b.append(mparameter.name)
1136 b.append(": ")
1137 b.append(mparameter.mtype.to_s)
1138 if mparameter.is_vararg then
1139 b.append("...")
1140 end
1141 end
1142 b.append(")")
1143 end
1144 var ret = self.return_mtype
1145 if ret != null then
1146 b.append(": ")
1147 b.append(ret.to_s)
1148 end
1149 return b.to_s
1150 end
1151
1152 redef fun resolve_for(mtype: MType, anchor: MClassType, mmodule: MModule, cleanup_virtual: Bool): MSignature
1153 do
1154 var params = new Array[MParameter]
1155 for p in self.mparameters do
1156 params.add(p.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1157 end
1158 var ret = self.return_mtype
1159 if ret != null then
1160 ret = ret.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1161 end
1162 var res = new MSignature(params, ret)
1163 for p in self.mclosures do
1164 res.mclosures.add(p.resolve_for(mtype, anchor, mmodule, cleanup_virtual))
1165 end
1166 return res
1167 end
1168 end
1169
1170 # A parameter in a signature
1171 class MParameter
1172 # The name of the parameter
1173 var name: String
1174
1175 # The static type of the parameter
1176 var mtype: MType
1177
1178 # Is the parameter a vararg?
1179 var is_vararg: Bool
1180
1181 fun resolve_for(mtype: MType, anchor: MClassType, mmodule: MModule, cleanup_virtual: Bool): MParameter
1182 do
1183 if not self.mtype.need_anchor then return self
1184 var newtype = self.mtype.resolve_for(mtype, anchor, mmodule, cleanup_virtual)
1185 var res = new MParameter(self.name, newtype, self.is_vararg)
1186 return res
1187 end
1188 end
1189
1190 # A service (global property) that generalize method, attribute, etc.
1191 #
1192 # MProperty are global to the model; it means that a MProperty is not bound
1193 # to a specific `MModule` nor a specific `MClass`.
1194 #
1195 # A MProperty gather definitions (see `mpropdefs') ; one for the introduction
1196 # and the other in subclasses and in refinements.
1197 #
1198 # A MProperty is used to denotes services in polymorphic way (ie. independent
1199 # of any dynamic type).
1200 # For instance, a call site "x.foo" is associated to a MProperty.
1201 abstract class MProperty
1202 # The associated MPropDef subclass.
1203 # The two specialization hierarchy are symmetric.
1204 type MPROPDEF: MPropDef
1205
1206 # The classdef that introduce the property
1207 # While a property is not bound to a specific module, or class,
1208 # the introducing mclassdef is used for naming and visibility
1209 var intro_mclassdef: MClassDef
1210
1211 # The (short) name of the property
1212 var name: String
1213
1214 # The canonical name of the property
1215 # Example: "owner::my_module::MyClass::my_method"
1216 fun full_name: String
1217 do
1218 return "{self.intro_mclassdef.mmodule.full_name}::{self.intro_mclassdef.mclass.name}::{name}"
1219 end
1220
1221 # The visibility of the property
1222 var visibility: MVisibility
1223
1224 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1225 do
1226 self.intro_mclassdef = intro_mclassdef
1227 self.name = name
1228 self.visibility = visibility
1229 intro_mclassdef.intro_mproperties.add(self)
1230 var model = intro_mclassdef.mmodule.model
1231 model.mproperties_by_name.add_one(name, self)
1232 model.mproperties.add(self)
1233 end
1234
1235 # All definitions of the property.
1236 # The first is the introduction,
1237 # The other are redefinitions (in refinements and in subclasses)
1238 var mpropdefs: Array[MPROPDEF] = new Array[MPROPDEF]
1239
1240 # The definition that introduced the property
1241 # Warning: the introduction is the first `MPropDef' object
1242 # associated to self. If self is just created without having any
1243 # associated definition, this method will abort
1244 fun intro: MPROPDEF do return mpropdefs.first
1245
1246 # Alias for `name'
1247 redef fun to_s do return name
1248
1249 # Return the most specific property definitions defined or inherited by a type.
1250 # The selection knows that refinement is stronger than specialization;
1251 # however, in case of conflict more than one property are returned.
1252 # If mtype does not know mproperty then an empty array is returned.
1253 #
1254 # If you want the really most specific property, then look at `lookup_first_definition`
1255 fun lookup_definitions(mmodule: MModule, mtype: MType): Array[MPROPDEF]
1256 do
1257 assert not mtype.need_anchor
1258 if mtype isa MNullableType then mtype = mtype.mtype
1259
1260 var cache = self.lookup_definitions_cache[mmodule, mtype]
1261 if cache != null then return cache
1262
1263 #print "select prop {mproperty} for {mtype} in {self}"
1264 # First, select all candidates
1265 var candidates = new Array[MPROPDEF]
1266 for mpropdef in self.mpropdefs do
1267 # If the definition is not imported by the module, then skip
1268 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
1269 # If the definition is not inherited by the type, then skip
1270 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
1271 # Else, we keep it
1272 candidates.add(mpropdef)
1273 end
1274 # Fast track for only one candidate
1275 if candidates.length <= 1 then
1276 self.lookup_definitions_cache[mmodule, mtype] = candidates
1277 return candidates
1278 end
1279
1280 # Second, filter the most specific ones
1281 var res = new Array[MPROPDEF]
1282 for pd1 in candidates do
1283 var cd1 = pd1.mclassdef
1284 var c1 = cd1.mclass
1285 var keep = true
1286 for pd2 in candidates do
1287 if pd2 == pd1 then continue # do not compare with self!
1288 var cd2 = pd2.mclassdef
1289 var c2 = cd2.mclass
1290 if c2.mclass_type == c1.mclass_type then
1291 if cd2.mmodule.in_importation <= cd1.mmodule then
1292 # cd2 refines cd1; therefore we skip pd1
1293 keep = false
1294 break
1295 end
1296 else if cd2.bound_mtype.is_subtype(mmodule, null, cd1.bound_mtype) then
1297 # cd2 < cd1; therefore we skip pd1
1298 keep = false
1299 break
1300 end
1301 end
1302 if keep then
1303 res.add(pd1)
1304 end
1305 end
1306 if res.is_empty then
1307 print "All lost! {candidates.join(", ")}"
1308 # FIXME: should be abort!
1309 end
1310 self.lookup_definitions_cache[mmodule, mtype] = res
1311 return res
1312 end
1313
1314 private var lookup_definitions_cache: HashMap2[MModule, MType, Array[MPROPDEF]] = new HashMap2[MModule, MType, Array[MPROPDEF]]
1315
1316 # Return the most specific property definitions inherited by a type.
1317 # The selection knows that refinement is stronger than specialization;
1318 # however, in case of conflict more than one property are returned.
1319 # If mtype does not know mproperty then an empty array is returned.
1320 #
1321 # If you want the really most specific property, then look at `lookup_next_definition`
1322 #
1323 # FIXME: Move to MPropDef?
1324 fun lookup_super_definitions(mmodule: MModule, mtype: MType): Array[MPropDef]
1325 do
1326 assert not mtype.need_anchor
1327 if mtype isa MNullableType then mtype = mtype.mtype
1328
1329 # First, select all candidates
1330 var candidates = new Array[MPropDef]
1331 for mpropdef in self.mpropdefs do
1332 # If the definition is not imported by the module, then skip
1333 if not mmodule.in_importation <= mpropdef.mclassdef.mmodule then continue
1334 # If the definition is not inherited by the type, then skip
1335 if not mtype.is_subtype(mmodule, null, mpropdef.mclassdef.bound_mtype) then continue
1336 # If the definition is defined by the type, then skip (we want the super, so e skip the current)
1337 if mtype == mpropdef.mclassdef.bound_mtype and mmodule == mpropdef.mclassdef.mmodule then continue
1338 # Else, we keep it
1339 candidates.add(mpropdef)
1340 end
1341 # Fast track for only one candidate
1342 if candidates.length <= 1 then return candidates
1343
1344 # Second, filter the most specific ones
1345 var res = new Array[MPropDef]
1346 for pd1 in candidates do
1347 var cd1 = pd1.mclassdef
1348 var c1 = cd1.mclass
1349 var keep = true
1350 for pd2 in candidates do
1351 if pd2 == pd1 then continue # do not compare with self!
1352 var cd2 = pd2.mclassdef
1353 var c2 = cd2.mclass
1354 if c2.mclass_type == c1.mclass_type then
1355 if cd2.mmodule.in_importation <= cd1.mmodule then
1356 # cd2 refines cd1; therefore we skip pd1
1357 keep = false
1358 break
1359 end
1360 else if cd2.bound_mtype.is_subtype(mmodule, null, cd1.bound_mtype) then
1361 # cd2 < cd1; therefore we skip pd1
1362 keep = false
1363 break
1364 end
1365 end
1366 if keep then
1367 res.add(pd1)
1368 end
1369 end
1370 if res.is_empty then
1371 print "All lost! {candidates.join(", ")}"
1372 # FIXME: should be abort!
1373 end
1374 return res
1375 end
1376
1377 # Return the most specific definition in the linearization of `mtype`.
1378 # If mtype does not know mproperty then null is returned.
1379 #
1380 # If you want to know the next properties in the linearization,
1381 # look at `MPropDef::lookup_next_definition`.
1382 #
1383 # FIXME: NOT YET IMPLEMENTED
1384 #
1385 # REQUIRE: not mtype.need_anchor
1386 fun lookup_first_definition(mmodule: MModule, mtype: MType): nullable MPROPDEF
1387 do
1388 assert not mtype.need_anchor
1389 return null
1390 end
1391 end
1392
1393 # A global method
1394 class MMethod
1395 super MProperty
1396
1397 redef type MPROPDEF: MMethodDef
1398
1399 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1400 do
1401 super
1402 end
1403
1404 # Is the property a constructor?
1405 # Warning, this property can be inherited by subclasses with or without being a constructor
1406 # therefore, you should use `is_init_for' the verify if the property is a legal constructor for a given class
1407 var is_init: Bool writable = false
1408
1409 # The the property a 'new' contructor?
1410 var is_new: Bool writable = false
1411
1412 # Is the property a legal constructor for a given class?
1413 # As usual, visibility is not considered.
1414 # FIXME not implemented
1415 fun is_init_for(mclass: MClass): Bool
1416 do
1417 return self.is_init
1418 end
1419 end
1420
1421 # A global attribute
1422 class MAttribute
1423 super MProperty
1424
1425 redef type MPROPDEF: MAttributeDef
1426
1427 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1428 do
1429 super
1430 end
1431 end
1432
1433 # A global virtual type
1434 class MVirtualTypeProp
1435 super MProperty
1436
1437 redef type MPROPDEF: MVirtualTypeDef
1438
1439 init(intro_mclassdef: MClassDef, name: String, visibility: MVisibility)
1440 do
1441 super
1442 end
1443
1444 # The formal type associated to the virtual type property
1445 var mvirtualtype: MVirtualType = new MVirtualType(self)
1446 end
1447
1448 # A definition of a property (local property)
1449 #
1450 # Unlike MProperty, a MPropDef is a local definition that belong to a
1451 # specific class definition (which belong to a specific module)
1452 abstract class MPropDef
1453
1454 # The associated MProperty subclass.
1455 # the two specialization hierarchy are symmetric
1456 type MPROPERTY: MProperty
1457
1458 # Self class
1459 type MPROPDEF: MPropDef
1460
1461 # The origin of the definition
1462 var location: Location
1463
1464 # The class definition where the property definition is
1465 var mclassdef: MClassDef
1466
1467 # The associated global property
1468 var mproperty: MPROPERTY
1469
1470 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1471 do
1472 self.mclassdef = mclassdef
1473 self.mproperty = mproperty
1474 self.location = location
1475 mclassdef.mpropdefs.add(self)
1476 mproperty.mpropdefs.add(self)
1477 end
1478
1479 # Internal name combining the module, the class and the property
1480 # Example: "mymodule#MyClass#mymethod"
1481 redef fun to_s
1482 do
1483 return "{mclassdef}#{mproperty}"
1484 end
1485
1486 # Is self the definition that introduce the property?
1487 fun is_intro: Bool do return mproperty.intro == self
1488
1489 # Return the next definition in linearization of `mtype`.
1490 # If there is no next method then null is returned.
1491 #
1492 # This method is used to determine what method is called by a super.
1493 #
1494 # FIXME: NOT YET IMPLEMENTED
1495 #
1496 # REQUIRE: not mtype.need_anchor
1497 fun lookup_next_definition(mmodule: MModule, mtype: MType): nullable MPROPDEF
1498 do
1499 assert not mtype.need_anchor
1500 return null
1501 end
1502 end
1503
1504 # A local definition of a method
1505 class MMethodDef
1506 super MPropDef
1507
1508 redef type MPROPERTY: MMethod
1509 redef type MPROPDEF: MMethodDef
1510
1511 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1512 do
1513 super
1514 end
1515
1516 # The signature attached to the property definition
1517 var msignature: nullable MSignature writable = null
1518 end
1519
1520 # A local definition of an attribute
1521 class MAttributeDef
1522 super MPropDef
1523
1524 redef type MPROPERTY: MAttribute
1525 redef type MPROPDEF: MAttributeDef
1526
1527 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1528 do
1529 super
1530 end
1531
1532 # The static type of the attribute
1533 var static_mtype: nullable MType writable = null
1534 end
1535
1536 # A local definition of a virtual type
1537 class MVirtualTypeDef
1538 super MPropDef
1539
1540 redef type MPROPERTY: MVirtualTypeProp
1541 redef type MPROPDEF: MVirtualTypeDef
1542
1543 init(mclassdef: MClassDef, mproperty: MPROPERTY, location: Location)
1544 do
1545 super
1546 end
1547
1548 # The bound of the virtual type
1549 var bound: nullable MType writable = null
1550 end
1551
1552 # A kind of class.
1553 #
1554 # * abstract_kind
1555 # * concrete_kind
1556 # * interface_kind
1557 # * enum_kind
1558 # * extern_kind
1559 #
1560 # Note this class is basically an enum.
1561 # FIXME: use a real enum once user-defined enums are available
1562 class MClassKind
1563 redef var to_s: String
1564
1565 # Is a constructor required?
1566 var need_init: Bool
1567 private init(s: String, need_init: Bool)
1568 do
1569 self.to_s = s
1570 self.need_init = need_init
1571 end
1572 end
1573
1574 fun abstract_kind: MClassKind do return once new MClassKind("abstract class", true)
1575 fun concrete_kind: MClassKind do return once new MClassKind("class", true)
1576 fun interface_kind: MClassKind do return once new MClassKind("interface", false)
1577 fun enum_kind: MClassKind do return once new MClassKind("enum", false)
1578 fun extern_kind: MClassKind do return once new MClassKind("extern", false)