modelbuilder_base: Refactor the signature of `resolve_mtype*`
[nit.git] / src / modelize / 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 # Run `AModule::build_classes` on each module
24 var modelize_class_phase: Phase = new ModelizeClassPhase(self, null)
25 end
26
27 private class ModelizeClassPhase
28 super Phase
29
30 redef fun process_nmodule(nmodule)
31 do
32 toolcontext.modelbuilder.build_classes(nmodule)
33 end
34 end
35
36 redef class ModelBuilder
37 # Visit the AST and create the `MClass` objects
38 private fun build_a_mclass(nmodule: AModule, nclassdef: AClassdef)
39 do
40 var mmodule = nmodule.mmodule.as(not null)
41
42 var name: String
43 var nkind: nullable AClasskind
44 var mkind: MClassKind
45 var nvisibility: nullable AVisibility
46 var mvisibility: nullable MVisibility
47 var arity = 0
48 var names = new Array[String]
49 var mclass
50 if nclassdef isa AStdClassdef then
51 var qid = nclassdef.n_qid
52 assert qid != null
53 name = qid.n_id.text
54 nkind = nclassdef.n_classkind
55 mkind = nkind.mkind
56 nvisibility = nclassdef.n_visibility
57 mvisibility = nvisibility.mvisibility
58 arity = nclassdef.n_formaldefs.length
59 if mvisibility == protected_visibility then
60 error(nvisibility, "Error: only properties can be protected.")
61 return
62 else if mvisibility == intrude_visibility then
63 error(nvisibility, "Error: intrude is not a legal visibility for classes.")
64 return
65 end
66 # Collect formal parameter names
67 for i in [0..arity[ do
68 var nfd = nclassdef.n_formaldefs[i]
69 var ptname = nfd.n_id.text
70 if names.has(ptname) then
71 error(nfd, "Error: a formal parameter type `{ptname}` already exists.")
72 return
73 end
74 for c in ptname.chars do if c >= 'a' and c<= 'z' then
75 warning(nfd, "formal-type-name", "Warning: lowercase in the formal parameter type `{ptname}`.")
76 break
77 end
78 names.add(ptname)
79 end
80 mclass = try_get_mclass_by_qid(qid, mmodule)
81 if mclass == null and (qid.n_qualified != null or nclassdef.n_kwredef != null) then
82 class_not_found(qid, mmodule)
83 nclassdef.is_broken = true
84 return
85 end
86
87 else if nclassdef isa ATopClassdef and nclassdef.n_propdefs.first.as(AMethPropdef).n_methid.collect_text == "sys" then
88 # Special case to keep `sys` in object.
89 # Needed to keep working bootstrap and a working java FFI together.
90 # TODO: remove once safe to remove
91 name = "Object"
92 nkind = null
93 mkind = interface_kind
94 nvisibility = null
95 mvisibility = public_visibility
96 mclass = try_get_mclass_by_name(nclassdef, mmodule, name)
97 else
98 name = "Sys"
99 nkind = null
100 mkind = concrete_kind
101 nvisibility = null
102 mvisibility = public_visibility
103 mclass = try_get_mclass_by_name(nclassdef, mmodule, name)
104 end
105
106 if mclass == null then
107 # Check for conflicting class full-names in the package
108 if mmodule.mgroup != null and mvisibility >= protected_visibility then
109 var mclasses = model.get_mclasses_by_name(name)
110 if mclasses != null then for other in mclasses do
111 if other.intro_mmodule.mgroup != null and other.intro_mmodule.mgroup.mpackage == mmodule.mgroup.mpackage then
112 # Skip classes that are buggy
113 if other.try_intro == null then continue
114 warning(nclassdef, "full-name-conflict", "Error: a class named `{other.full_name}` is already defined in module `{other.intro_mmodule}` at {other.intro.location}.")
115 break
116 end
117 end
118 end
119
120 mclass = new MClass(mmodule, name, nclassdef.location, names, mkind, mvisibility)
121 #print "new class {mclass}"
122 else if nclassdef isa AStdClassdef and nmodule.mclass2nclassdef.has_key(mclass) then
123 error(nclassdef, "Error: a class `{name}` is already defined at line {nmodule.mclass2nclassdef[mclass].location.line_start}.")
124 mclass.is_broken = true
125 return
126 else if nclassdef isa AStdClassdef and nclassdef.n_kwredef == null then
127 error(nclassdef, "Redef Error: `{name}` is an imported class. Add the `redef` keyword to refine it.")
128 mclass.is_broken = true
129 return
130 else if arity != 0 and mclass.arity != arity then
131 error(nclassdef, "Redef Error: expected {mclass.arity} formal parameter(s) for {mclass.signature_to_s}; got {arity}.")
132 mclass.is_broken = true
133 return
134 else if nkind != null and mkind != concrete_kind and mclass.kind != mkind then
135 error(nkind, "Redef Error: refinement changed the kind from `{mclass.kind}` to `{mkind}`.")
136 else if nvisibility != null and mvisibility != public_visibility and mclass.visibility != mvisibility then
137 error(nvisibility, "Redef Error: refinement changed the visibility from `{mclass.visibility}` to `{mvisibility}`")
138 end
139 nclassdef.mclass = mclass
140 if not nmodule.mclass2nclassdef.has_key(mclass) then
141 nmodule.mclass2nclassdef[mclass] = nclassdef
142 nclassdef.all_defs = [nclassdef]
143 else
144 nmodule.mclass2nclassdef[mclass].all_defs.add(nclassdef)
145 end
146 end
147
148 # Visit the AST and create the `MClassDef` objects
149 private fun build_a_mclassdef(nmodule: AModule, nclassdef: AClassdef)
150 do
151 var mmodule = nmodule.mmodule.as(not null)
152 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
153 var mclass = nclassdef.mclass
154 if mclass == null then return # Skip error
155
156 # In case of non-standard AClassdef, try to attach to an already existing mclassdef
157 var other_nclassdef = nmodule.mclass2nclassdef[mclass]
158 if other_nclassdef != nclassdef then
159 assert not nclassdef isa AStdClassdef
160 nclassdef.mclassdef = other_nclassdef.mclassdef
161 return
162 end
163
164 var bounds = new Array[MType]
165 if nclassdef isa AStdClassdef and mclass.arity > 0 then
166 # Revolve bound for formal parameters
167 for i in [0..mclass.arity[ do
168 if nclassdef.n_formaldefs.is_empty then
169 # Inherit the bound
170 var bound = mclass.intro.bound_mtype.arguments[i]
171 bounds.add(bound)
172 continue
173 end
174
175 var nfd = nclassdef.n_formaldefs[i]
176 var pname = mclass.mparameters[i].name
177 if nfd.n_id.text != pname then
178 error(nfd.n_id, "Error: formal parameter type #{i} `{nfd.n_id.text}` must be named `{pname}` as in the original definition in module `{mclass.intro.mmodule}`.")
179 end
180 var nfdt = nfd.n_type
181 if nfdt != null then
182 var bound = resolve_mtype3_unchecked(mmodule, null, null, nfdt, false)
183 if bound == null then return # Forward error
184 if bound.need_anchor then
185 # No F-bounds!
186 error(nfd, "Error: formal parameter type `{pname}` bounded with a formal parameter type.")
187 else
188 bounds.add(bound)
189 nfd.bound = bound
190 end
191 if bound isa MClassType and bound.mclass.kind == enum_kind then
192 warning(nfdt, "useless-bound", "Warning: useless formal parameter type since `{bound}` cannot have subclasses.")
193 end
194 else if mclass.mclassdefs.is_empty then
195 if objectclass == null then
196 error(nfd, "Error: formal parameter type `{pname}` unbounded but no `Object` class exists.")
197 return
198 end
199 # No bound, then implicitely bound by nullable Object
200 var bound = objectclass.mclass_type.as_nullable
201 bounds.add(bound)
202 nfd.bound = bound
203 else
204 # Inherit the bound
205 var bound = mclass.intro.bound_mtype.arguments[i]
206 bounds.add(bound)
207 nfd.bound = bound
208 end
209 end
210 end
211
212 var bound_mtype = mclass.get_mtype(bounds)
213 var mclassdef = new MClassDef(mmodule, bound_mtype, nclassdef.location)
214 nclassdef.mclassdef = mclassdef
215 self.mclassdef2nclassdef[mclassdef] = nclassdef
216
217 if nclassdef isa AStdClassdef then
218 var ndoc = nclassdef.n_doc
219 if ndoc != null then
220 var mdoc = ndoc.to_mdoc
221 mclassdef.mdoc = mdoc
222 mdoc.original_mentity = mclassdef
223 else if mclassdef.is_intro and mclass.visibility >= public_visibility then
224 advice(nclassdef, "missing-doc", "Documentation warning: Undocumented public class `{mclass}`")
225 end
226 end
227
228 if mclassdef.is_intro then
229 self.toolcontext.info("{mclassdef} introduces new {mclass.kind} {mclass.full_name}", 3)
230 else
231 self.toolcontext.info("{mclassdef} refines {mclass.kind} {mclass.full_name}", 3)
232 end
233 end
234
235 # Visit the AST and set the super-types of the `MClassDef` objects
236 private fun collect_a_mclassdef_inheritance(nmodule: AModule, nclassdef: AClassdef)
237 do
238 var mmodule = nmodule.mmodule
239 if mmodule == null then return
240 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
241 var pointerclass = try_get_mclass_by_name(nmodule, mmodule, "Pointer")
242 var mclass = nclassdef.mclass
243 if mclass == null then return
244 var mclassdef = nclassdef.mclassdef
245 if mclassdef == null then return
246
247 # Do we need to specify Object as a super class?
248 var specobject = true
249
250 # Do we need to specify Pointer as a super class? (is only valid
251 # if `nclassdef` is an extern class)
252 var specpointer = true
253
254 var supertypes = new Array[MClassType]
255 if nclassdef isa AStdClassdef then
256 for nsc in nclassdef.n_superclasses do
257 specobject = false
258 var ntype = nsc.n_type
259 var mtype = resolve_mtype_unchecked(mclassdef, ntype, false)
260 if mtype == null then continue # Skip because of error
261 if not mtype isa MClassType then
262 error(ntype, "Error: supertypes cannot be a formal type.")
263 return
264 end
265 if not mclass.kind.can_specialize(mtype.mclass.kind) then
266 error(ntype, "Error: {mclass.kind} `{mclass}` cannot specialize {mtype.mclass.kind} `{mtype.mclass}`.")
267 end
268 supertypes.add mtype
269 #print "new super : {mclass} < {mtype}"
270 if mtype.mclass.kind == extern_kind then specpointer = false
271 end
272 end
273
274 if mclassdef.is_intro and objectclass != null then
275 if mclass.kind == extern_kind and mclass.name != "Pointer" then
276 # it is an extern class, but not a Pointer
277 if pointerclass == null then
278 error(nclassdef, "Error: `Pointer` must be defined first.")
279 return
280 end
281 if specpointer then supertypes.add pointerclass.mclass_type
282 else if specobject then
283 if mclass.name != "Object" then
284 # it is a standard class without super class (but is not Object)
285 supertypes.add objectclass.mclass_type
286 else if mclass.kind != interface_kind then
287 error(nclassdef, "Error: `Object` must be an {interface_kind}.")
288 return
289 end
290 end
291 end
292
293 mclassdef.set_supertypes(supertypes)
294 if not supertypes.is_empty then self.toolcontext.info("{mclassdef} new super-types: {supertypes.join(", ")}", 3)
295 end
296
297 # Check the validity of the specialization heirarchy
298 private fun check_supertypes(nmodule: AModule, nclassdef: AClassdef)
299 do
300 var mmodule = nmodule.mmodule
301 if mmodule == null then return
302 var mclass = nclassdef.mclass
303 if mclass == null then return
304 var mclassdef = nclassdef.mclassdef
305 if mclassdef == null then return
306
307 for s in mclassdef.supertypes do
308 if s.is_subtype(mmodule, mclassdef.bound_mtype, mclassdef.bound_mtype) then
309 error(nclassdef, "Error: inheritance loop for class `{mclass}` with type `{s}`.")
310 end
311 end
312 end
313
314 # Build the classes of the module `nmodule`.
315 private fun build_classes(nmodule: AModule)
316 do
317 # Force building recursively
318 if nmodule.build_classes_is_done then return
319 nmodule.build_classes_is_done = true
320 var mmodule = nmodule.mmodule
321 if mmodule == null then return
322 for imp in mmodule.in_importation.direct_greaters do
323 var nimp = mmodule2node(imp)
324 if nimp != null then build_classes(nimp)
325 end
326
327 # Create all classes
328 # process AStdClassdef before so that non-AStdClassdef classes can be attached to existing ones, if any
329 for nclassdef in nmodule.n_classdefs do
330 if not nclassdef isa AStdClassdef then continue
331 self.build_a_mclass(nmodule, nclassdef)
332 end
333 for nclassdef in nmodule.n_classdefs do
334 if nclassdef isa AStdClassdef then continue
335 self.build_a_mclass(nmodule, nclassdef)
336 end
337
338 # Create all classdefs
339 for nclassdef in nmodule.n_classdefs do
340 if not nclassdef isa AStdClassdef then continue
341 self.build_a_mclassdef(nmodule, nclassdef)
342 end
343 for nclassdef in nmodule.n_classdefs do
344 if nclassdef isa AStdClassdef then continue
345 self.build_a_mclassdef(nmodule, nclassdef)
346 end
347
348 # Create inheritance on all classdefs
349 for nclassdef in nmodule.n_classdefs do
350 self.collect_a_mclassdef_inheritance(nmodule, nclassdef)
351 end
352
353 # Create the mclassdef hierarchy
354 for mclassdef in mmodule.mclassdefs do
355 mclassdef.add_in_hierarchy
356 end
357
358 # Check inheritance
359 for nclassdef in nmodule.n_classdefs do
360 self.check_supertypes(nmodule, nclassdef)
361 end
362
363 # Check unchecked ntypes
364 for nclassdef in nmodule.n_classdefs do
365 if nclassdef isa AStdClassdef then
366 var mclassdef = nclassdef.mclassdef
367 var mclass
368 var anchor
369 if mclassdef == null then
370 mclass = null
371 anchor = null
372 else
373 mclass = mclassdef.mclass
374 anchor = mclassdef.bound_mtype
375 end
376
377 # check bound of formal parameter
378 for nfd in nclassdef.n_formaldefs do
379 var nfdt = nfd.n_type
380 if nfdt != null and nfdt.mtype != null then
381 var bound = resolve_mtype3(mmodule, mclass, anchor, nfdt)
382 if bound == null then return # Forward error
383 end
384 end
385 # check declared super types
386 for nsc in nclassdef.n_superclasses do
387 var ntype = nsc.n_type
388 if ntype.mtype != null then
389 var mtype = resolve_mtype3(mmodule, mclass, anchor, ntype)
390 if mtype == null then return # Forward error
391 end
392 end
393 end
394 end
395
396 # Check clash of ancestors
397 for nclassdef in nmodule.n_classdefs do
398 var mclassdef = nclassdef.mclassdef
399 if mclassdef == null then continue
400 var superclasses = new HashMap[MClass, MClassType]
401 for scd in mclassdef.in_hierarchy.greaters do
402 for st in scd.supertypes do
403 if not superclasses.has_key(st.mclass) then
404 superclasses[st.mclass] = st
405 else if superclasses[st.mclass] != st then
406 var st1 = superclasses[st.mclass].resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
407 var st2 = st.resolve_for(mclassdef.mclass.mclass_type, mclassdef.bound_mtype, mmodule, false)
408 if st1 != st2 then
409 error(nclassdef, "Error: incompatible ancestors for `{mclassdef.mclass}`; conflict: `{st1}` and `{st2}`")
410 end
411 end
412 end
413 end
414 end
415
416 # TODO: Check that the super-class is not intrusive
417
418 # Check that the superclasses are not already known (by transitivity)
419 for nclassdef in nmodule.n_classdefs do
420 if not nclassdef isa AStdClassdef or nclassdef.is_broken then continue
421 var mclassdef = nclassdef.mclassdef
422 if mclassdef == null then continue
423
424 # Get the direct superclasses
425 # Since we are a mclassdef, just look at the mclassdef hierarchy
426 var parents = new Array[MClass]
427 for sup in mclassdef.in_hierarchy.direct_greaters do
428 parents.add(sup.mclass)
429 end
430
431 # Used to track duplicates of superclasses
432 var seen_parents = new ArrayMap[MClass, AType]
433
434 # The Object class
435 var objectclass = try_get_mclass_by_name(nmodule, mmodule, "Object")
436
437 # Check each declared superclass to see if it belong to the direct superclass
438 for nsc in nclassdef.n_superclasses do
439 var ntype = nsc.n_type
440 var mtype = ntype.mtype
441 if mtype == null then continue
442 assert mtype isa MClassType
443 var sc = mtype.mclass
444 if not parents.has(sc) or sc == objectclass then
445 # Skip the warning on generated code
446 if ntype.location.file != null and not ntype.location.file.filename.is_empty then
447 warning(ntype, "useless-superclass", "Warning: superfluous super-class `{mtype}` in class `{mclassdef.mclass}`.")
448 end
449 else if not seen_parents.has_key(sc) then
450 seen_parents[sc] = ntype
451 else
452 warning(ntype, "useless-superclass", "Warning: duplicated super-class `{mtype}` in class `{mclassdef.mclass}`.")
453 end
454 end
455 end
456 end
457
458 # Registration of the nclassdef associated to each mclassdef
459 private var mclassdef2nclassdef = new HashMap[MClassDef, AClassdef]
460
461 # Retrieve the associated AST node of a mclassdef.
462 #
463 # This method is used to associate model entity with syntactic entities.
464 # If the class definition is not associated with a node, returns `null`.
465 fun mclassdef2node(mclassdef: MClassDef): nullable AClassdef do
466 return mclassdef2nclassdef.get_or_null(mclassdef)
467 end
468 end
469
470 redef class AModule
471 # Flag that indicate if the class building is already completed
472 var build_classes_is_done: Bool = false
473 # What is the AClassdef associated to a `MClass`?
474 # Used to check multiple definition of a class.
475 var mclass2nclassdef: Map[MClass, AClassdef] = new HashMap[MClass, AClassdef]
476 end
477
478 redef class AClassdef
479 # The associated MClass once build by a `ModelBuilder`
480 var mclass: nullable MClass
481 # The associated MClassDef once build by a `ModelBuilder`
482 var mclassdef: nullable MClassDef
483 # All (self and other) definitions for the same mclassdef
484 var all_defs: nullable Array[AClassdef]
485 end
486
487 redef class AClasskind
488 # The class kind associated with the AST node class
489 private fun mkind: MClassKind is abstract
490 end
491 redef class AConcreteClasskind
492 redef fun mkind do return concrete_kind
493 end
494 redef class AAbstractClasskind
495 redef fun mkind do return abstract_kind
496 end
497 redef class AInterfaceClasskind
498 redef fun mkind do return interface_kind
499 end
500 redef class AEnumClasskind
501 redef fun mkind do return enum_kind
502 end
503 redef class AExternClasskind
504 redef fun mkind do return extern_kind
505 end
506
507 redef class AFormaldef
508 # The associated parameter type
509 var mtype: nullable MParameterType = null
510
511 # The associated bound
512 var bound: nullable MType = null
513 end