RTA: force primitive types to be alive
[nit.git] / src / modelize_class.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2012 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 # Analysis and verification of class definitions to instantiate model element
18 module modelize_class
19
20 import modelbuilder
21
22 redef class ToolContext
23 var modelize_class_phase: Phase = new ModelizeClassPhase(self, null)
24 end
25
26 private class ModelizeClassPhase
27 super Phase
28
29 redef fun process_nmodule(nmodule)
30 do
31 toolcontext.modelbuilder.build_classes(nmodule)
32 end
33 end
34
35 redef class ModelBuilder
36 # Visit the AST and create the `MClass` objects
37 private fun build_a_mclass(nmodule: AModule, nclassdef: AClassdef)
38 do
39 var mmodule = nmodule.mmodule.as(not null)
40
41 var name: String
42 var nkind: nullable AClasskind
43 var mkind: MClassKind
44 var nvisibility: nullable AVisibility
45 var mvisibility: nullable MVisibility
46 var arity = 0
47 if nclassdef isa AStdClassdef then
48 name = nclassdef.n_id.text
49 nkind = nclassdef.n_classkind
50 mkind = nkind.mkind
51 nvisibility = nclassdef.n_visibility
52 mvisibility = nvisibility.mvisibility
53 arity = nclassdef.n_formaldefs.length
54 if mvisibility == protected_visibility then
55 error(nvisibility, "Error: only properties can be protected.")
56 return
57 else if mvisibility == intrude_visibility then
58 error(nvisibility, "Error: intrude is not a legal visibility for classes.")
59 return
60 end
61 else if nclassdef isa ATopClassdef then
62 name = "Object"
63 nkind = null
64 mkind = interface_kind
65 nvisibility = null
66 mvisibility = public_visibility
67 else if nclassdef isa AMainClassdef then
68 name = "Sys"
69 nkind = null
70 mkind = concrete_kind
71 nvisibility = null
72 mvisibility = public_visibility
73 else
74 abort
75 end
76
77 var mclass = try_get_mclass_by_name(nclassdef, mmodule, name)
78 if mclass == null then
79 if nclassdef isa AStdClassdef and nclassdef.n_kwredef != null then
80 error(nclassdef, "Redef error: No imported class {name} to refine.")
81 return
82 end
83 mclass = new MClass(mmodule, name, arity, mkind, mvisibility)
84 #print "new class {mclass}"
85 else if nclassdef isa AStdClassdef and nmodule.mclass2nclassdef.has_key(mclass) then
86 error(nclassdef, "Error: A class {name} is already defined at line {nmodule.mclass2nclassdef[mclass].location.line_start}.")
87 return
88 else if nclassdef isa AStdClassdef and nclassdef.n_kwredef == null then
89 error(nclassdef, "Redef error: {name} is an imported class. Add the redef keyword to refine it.")
90 return
91 else if mclass.arity != arity then
92 error(nclassdef, "Redef error: Formal parameter arity missmatch; got {arity}, expected {mclass.arity}.")
93 return
94 else if nkind != null and mkind != concrete_kind and mclass.kind != mkind then
95 error(nkind, "Error: refinement changed the kind from a {mclass.kind} to a {mkind}")
96 else if nvisibility != null and mvisibility != public_visibility and mclass.visibility != mvisibility then
97 error(nvisibility, "Error: refinement changed the visibility from a {mclass.visibility} to a {mvisibility}")
98 end
99 nclassdef.mclass = mclass
100 nmodule.mclass2nclassdef[mclass] = nclassdef
101 end
102
103 # Visit the AST and create the `MClassDef` objects
104 private fun build_a_mclassdef(nmodule: AModule, nclassdef: AClassdef)
105 do
106 var mmodule = nmodule.mmodule.as(not null)
107 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
108 var mclass = nclassdef.mclass
109 if mclass == null then return # Skip error
110 #var mclassdef = nclassdef.mclassdef.as(not null)
111
112 var names = new Array[String]
113 var bounds = new Array[MType]
114 if nclassdef isa AStdClassdef and mclass.arity > 0 then
115 # Collect formal parameter names
116 for i in [0..mclass.arity[ do
117 var nfd = nclassdef.n_formaldefs[i]
118 var ptname = nfd.n_id.text
119 if names.has(ptname) then
120 error(nfd, "Error: A formal parameter type `{ptname}' already exists")
121 return
122 end
123 for c in ptname do if c >= 'a' and c<= 'z' then
124 warning(nfd, "Warning: lowercase in the formal parameter type {ptname}")
125 break
126 end
127 names.add(ptname)
128 nfd.mtype = mclass.mclass_type.arguments[i].as(MParameterType)
129 end
130
131 # Revolve bound for formal parameter names
132 for i in [0..mclass.arity[ do
133 var nfd = nclassdef.n_formaldefs[i]
134 var nfdt = nfd.n_type
135 if nfdt != null then
136 var bound = resolve_mtype_unchecked(nclassdef, nfdt, false)
137 if bound == null then return # Forward error
138 if bound.need_anchor then
139 # No F-bounds!
140 error(nfd, "Error: Formal parameter type `{names[i]}' bounded with a formal parameter type")
141 else
142 bounds.add(bound)
143 nfd.bound = bound
144 end
145 else if mclass.mclassdefs.is_empty then
146 # No bound, then implicitely bound by nullable Object
147 var bound = objectclass.mclass_type.as_nullable
148 bounds.add(bound)
149 nfd.bound = bound
150 else
151 # Inherit the bound
152 var bound = mclass.intro.bound_mtype.arguments[i]
153 bounds.add(bound)
154 nfd.bound = bound
155 end
156 end
157 end
158
159 var bound_mtype = mclass.get_mtype(bounds)
160 var mclassdef = new MClassDef(mmodule, bound_mtype, nclassdef.location, names)
161 nclassdef.mclassdef = mclassdef
162 self.mclassdef2nclassdef[mclassdef] = nclassdef
163
164 if mclassdef.is_intro then
165 self.toolcontext.info("{mclassdef} introduces new {mclass.kind} {mclass.full_name}", 3)
166 else
167 self.toolcontext.info("{mclassdef} refine {mclass.kind} {mclass.full_name}", 3)
168 end
169 end
170
171 # Visit the AST and set the super-types of the `MClassDef` objects
172 private fun collect_a_mclassdef_inheritance(nmodule: AModule, nclassdef: AClassdef)
173 do
174 var mmodule = nmodule.mmodule.as(not null)
175 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
176 var pointerclass = try_get_mclass_by_name(nmodule, mmodule, "Pointer")
177 var mclass = nclassdef.mclass.as(not null)
178 var mclassdef = nclassdef.mclassdef.as(not null)
179
180 var specobject = true
181 var supertypes = new Array[MClassType]
182 if nclassdef isa AStdClassdef then
183 for nsc in nclassdef.n_superclasses do
184 specobject = false
185 var ntype = nsc.n_type
186 var mtype = resolve_mtype_unchecked(nclassdef, ntype, false)
187 if mtype == null then continue # Skip because of error
188 if not mtype isa MClassType then
189 error(ntype, "Error: supertypes cannot be a formal type")
190 return
191 end
192 supertypes.add mtype
193 #print "new super : {mclass} < {mtype}"
194 end
195 end
196 if specobject and mclassdef.is_intro then
197 if mclass.kind == extern_kind then
198 if mclass.name == "Pointer" then
199 supertypes.add objectclass.mclass_type
200 else
201 supertypes.add pointerclass.mclass_type
202 end
203 else if mclass.name != "Object" and objectclass != null then
204 supertypes.add objectclass.mclass_type
205 end
206 end
207
208 mclassdef.set_supertypes(supertypes)
209 if not supertypes.is_empty then self.toolcontext.info("{mclassdef} new super-types: {supertypes.join(", ")}", 3)
210 end
211
212 # Check the validity of the specialization heirarchy
213 private fun check_supertypes(nmodule: AModule, nclassdef: AClassdef)
214 do
215 var mmodule = nmodule.mmodule.as(not null)
216 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
217 var mclass = nclassdef.mclass.as(not null)
218 var mclassdef = nclassdef.mclassdef.as(not null)
219
220 for s in mclassdef.supertypes do
221 if s.is_subtype(mmodule, mclassdef.bound_mtype, mclassdef.bound_mtype) then
222 error(nclassdef, "Error: Inheritance loop for class {mclass} with type {s}")
223 end
224 end
225 end
226
227 # Build the classes of the module `nmodule`.
228 # REQUIRE: classes of imported modules are already build. (let `phase` do the job)
229 private fun build_classes(nmodule: AModule)
230 do
231 var errcount = toolcontext.error_count
232 # Force building recursively
233 if nmodule.build_classes_is_done then return
234 nmodule.build_classes_is_done = true
235 var mmodule = nmodule.mmodule.as(not null)
236 for imp in mmodule.in_importation.direct_greaters do
237
238 build_classes(mmodule2nmodule[imp])
239 end
240
241 if errcount != toolcontext.error_count then return
242
243 # Create all classes
244 for nclassdef in nmodule.n_classdefs do
245 self.build_a_mclass(nmodule, nclassdef)
246 end
247
248 if errcount != toolcontext.error_count then return
249
250 # Create all classdefs
251 for nclassdef in nmodule.n_classdefs do
252 self.build_a_mclassdef(nmodule, nclassdef)
253 end
254
255 if errcount != toolcontext.error_count then return
256
257 # Create inheritance on all classdefs
258 for nclassdef in nmodule.n_classdefs do
259 self.collect_a_mclassdef_inheritance(nmodule, nclassdef)
260 end
261
262 if errcount != toolcontext.error_count then return
263
264 # Create the mclassdef hierarchy
265 for nclassdef in nmodule.n_classdefs do
266 var mclassdef = nclassdef.mclassdef.as(not null)
267 mclassdef.add_in_hierarchy
268 end
269
270 if errcount != toolcontext.error_count then return
271
272 # Check inheritance
273 for nclassdef in nmodule.n_classdefs do
274 self.check_supertypes(nmodule, nclassdef)
275 end
276
277 if errcount != toolcontext.error_count then return
278
279 # Check unchecked ntypes
280 for nclassdef in nmodule.n_classdefs do
281 if nclassdef isa AStdClassdef then
282 # check bound of formal parameter
283 for nfd in nclassdef.n_formaldefs do
284 var nfdt = nfd.n_type
285 if nfdt != null and nfdt.mtype != null then
286 var bound = resolve_mtype(nclassdef, nfdt)
287 if bound == null then return # Forward error
288 end
289 end
290 # check declared super types
291 for nsc in nclassdef.n_superclasses do
292 var ntype = nsc.n_type
293 if ntype.mtype != null then
294 var mtype = resolve_mtype(nclassdef, ntype)
295 if mtype == null then return # Forward error
296 end
297 end
298 end
299 end
300
301 if errcount != toolcontext.error_count then return
302
303 # Check clash of ancestors
304 for nclassdef in nmodule.n_classdefs do
305 var mclassdef = nclassdef.mclassdef.as(not null)
306 var superclasses = new HashMap[MClass, MClassType]
307 for scd in mclassdef.in_hierarchy.greaters do
308 for st in scd.supertypes do
309 if not superclasses.has_key(st.mclass) then
310 superclasses[st.mclass] = st
311 else if superclasses[st.mclass] != st then
312 var st1 = superclasses[st.mclass].resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
313 var st2 = st.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
314 if st1 != st2 then
315 error(nclassdef, "Error: Incompatibles ancestors for {mclassdef.mclass}: {st1}, {st2}")
316 end
317 end
318 end
319 end
320 end
321
322 if errcount != toolcontext.error_count then return
323
324 # TODO: Check that the super-class is not intrusive
325
326 # Check that the superclasses are not already known (by transitivity)
327 for nclassdef in nmodule.n_classdefs do
328 if not nclassdef isa AStdClassdef then continue
329 var mclassdef = nclassdef.mclassdef.as(not null)
330
331 # Get the direct superclasses
332 # Since we are a mclassdef, just look at the mclassdef hierarchy
333 var parents = new Array[MClass]
334 for sup in mclassdef.in_hierarchy.direct_greaters do
335 parents.add(sup.mclass)
336 end
337
338 # Used to track duplicates of superclasses
339 var seen_parents = new ArrayMap[MClass, AType]
340
341 # The Object class
342 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
343
344 # Check each declared superclass to see if it belong to the direct superclass
345 for nsc in nclassdef.n_superclasses do
346 var ntype = nsc.n_type
347 var mtype = ntype.mtype
348 if mtype == null then continue
349 assert mtype isa MClassType
350 var sc = mtype.mclass
351 if not parents.has(sc) or sc == objectclass then
352 warning(ntype, "Warning: superfluous super-class {mtype} in class {mclassdef.mclass}.")
353 else if not seen_parents.has_key(sc) then
354 seen_parents[sc] = ntype
355 else
356 warning(ntype, "Warning: duplicated super-class {mtype} in class {mclassdef.mclass}.")
357 end
358 end
359 end
360 end
361
362 # Register the nclassdef associated to each mclassdef
363 # FIXME: why not refine the `MClassDef` class with a nullable attribute?
364 var mclassdef2nclassdef: HashMap[MClassDef, AClassdef] = new HashMap[MClassDef, AClassdef]
365
366 # Return the static type associated to the node `ntype`.
367 # `nclassdef` is the context where the call is made (used to understand formal types)
368 # The mmodule used as context is `nclassdef.mmodule`
369 # In case of problem, an error is displayed on `ntype` and null is returned.
370 # FIXME: the name "resolve_mtype" is awful
371 fun resolve_mtype_unchecked(nclassdef: AClassdef, ntype: AType, with_virtual: Bool): nullable MType
372 do
373 var name = ntype.n_id.text
374 var mclassdef = nclassdef.mclassdef
375 var mmodule = nclassdef.parent.as(AModule).mmodule.as(not null)
376 var res: MType
377
378 # Check virtual type
379 if mclassdef != null and with_virtual then
380 var prop = try_get_mproperty_by_name(ntype, mclassdef, name).as(nullable MVirtualTypeProp)
381 if prop != null then
382 if not ntype.n_types.is_empty then
383 error(ntype, "Type error: formal type {name} cannot have formal parameters.")
384 end
385 res = prop.mvirtualtype
386 if ntype.n_kwnullable != null then res = res.as_nullable
387 ntype.mtype = res
388 return res
389 end
390 end
391
392 # Check parameter type
393 if mclassdef != null and mclassdef.parameter_names.has(name) then
394 if not ntype.n_types.is_empty then
395 error(ntype, "Type error: formal type {name} cannot have formal parameters.")
396 end
397 for i in [0..mclassdef.parameter_names.length[ do
398 if mclassdef.parameter_names[i] == name then
399 res = mclassdef.mclass.mclass_type.arguments[i]
400 if ntype.n_kwnullable != null then res = res.as_nullable
401 ntype.mtype = res
402 return res
403 end
404 end
405 abort
406 end
407
408 # Check class
409 var mclass = try_get_mclass_by_name(ntype, mmodule, name)
410 if mclass != null then
411 var arity = ntype.n_types.length
412 if arity != mclass.arity then
413 if arity == 0 then
414 error(ntype, "Type error: '{name}' is a generic class.")
415 else if mclass.arity == 0 then
416 error(ntype, "Type error: '{name}' is not a generic class.")
417 else
418 error(ntype, "Type error: '{name}' has {mclass.arity} parameters ({arity} are provided).")
419 end
420 return null
421 end
422 if arity == 0 then
423 res = mclass.mclass_type
424 if ntype.n_kwnullable != null then res = res.as_nullable
425 ntype.mtype = res
426 return res
427 else
428 var mtypes = new Array[MType]
429 for nt in ntype.n_types do
430 var mt = resolve_mtype_unchecked(nclassdef, nt, with_virtual)
431 if mt == null then return null # Forward error
432 mtypes.add(mt)
433 end
434 res = mclass.get_mtype(mtypes)
435 if ntype.n_kwnullable != null then res = res.as_nullable
436 ntype.mtype = res
437 return res
438 end
439 end
440
441 # If everything fail, then give up :(
442 error(ntype, "Type error: class {name} not found in module {mmodule}.")
443 return null
444 end
445
446 # Return the static type associated to the node `ntype`.
447 # `nclassdef` is the context where the call is made (used to understand formal types)
448 # The mmodule used as context is `nclassdef.mmodule`
449 # In case of problem, an error is displayed on `ntype` and null is returned.
450 # FIXME: the name "resolve_mtype" is awful
451 fun resolve_mtype(nclassdef: AClassdef, ntype: AType): nullable MType
452 do
453 var mtype = ntype.mtype
454 if mtype == null then mtype = resolve_mtype_unchecked(nclassdef, ntype, true)
455 if mtype == null then return null # Forward error
456
457 if ntype.checked_mtype then return mtype
458 if mtype isa MGenericType then
459 var mmodule = nclassdef.parent.as(AModule).mmodule.as(not null)
460 var mclassdef = nclassdef.mclassdef
461 var mclass = mtype.mclass
462 for i in [0..mclass.arity[ do
463 var bound = mclass.intro.bound_mtype.arguments[i]
464 var nt = ntype.n_types[i]
465 var mt = resolve_mtype(nclassdef, nt)
466 if mt == null then return null # forward error
467 if not mt.is_subtype(mmodule, mclassdef.bound_mtype, bound) then
468 error(nt, "Type error: expected {bound}, got {mt}")
469 return null
470 end
471 end
472 end
473 ntype.checked_mtype = true
474 return mtype
475 end
476
477 end
478
479 redef class AModule
480 # Flag that indicate if the class building is already completed
481 var build_classes_is_done: Bool = false
482 # What is the AClassdef associated to a `MClass`?
483 # Used to check multiple definition of a class.
484 var mclass2nclassdef: Map[MClass, AClassdef] = new HashMap[MClass, AClassdef]
485 end
486
487 redef class AClassdef
488 # The associated MClass once build by a `ModelBuilder`
489 var mclass: nullable MClass
490 # The associated MClassDef once build by a `ModelBuilder`
491 var mclassdef: nullable MClassDef
492 end
493
494 redef class AClasskind
495 # The class kind associated with the AST node class
496 private fun mkind: MClassKind is abstract
497 end
498 redef class AConcreteClasskind
499 redef fun mkind do return concrete_kind
500 end
501 redef class AAbstractClasskind
502 redef fun mkind do return abstract_kind
503 end
504 redef class AInterfaceClasskind
505 redef fun mkind do return interface_kind
506 end
507 redef class AEnumClasskind
508 redef fun mkind do return enum_kind
509 end
510 redef class AExternClasskind
511 redef fun mkind do return extern_kind
512 end
513
514 redef class AFormaldef
515 # The associated parameter type
516 var mtype: nullable MParameterType = null
517
518 # The associated bound
519 var bound: nullable MType = null
520 end
521
522 redef class AType
523 # The mtype associated to the node
524 var mtype: nullable MType = null
525
526 # Is the mtype a valid one?
527 var checked_mtype: Bool = false
528 end