modelbuilder: split the class_not_found error in a separate function
[nit.git] / src / modelbuilder_base.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 # Load nit source files and build the associated model
18 #
19 # FIXME better doc
20 #
21 # FIXME split this module into submodules
22 # FIXME add missing error checks
23 module modelbuilder_base
24
25 import model
26 import toolcontext
27 import parser
28
29 private import more_collections
30
31 ###
32
33 redef class ToolContext
34
35 # The modelbuilder 1-to-1 associated with the toolcontext
36 fun modelbuilder: ModelBuilder do return modelbuilder_real.as(not null)
37
38 private var modelbuilder_real: nullable ModelBuilder = null
39
40 end
41
42 # A model builder knows how to load nit source files and build the associated model
43 class ModelBuilder
44 # The model where new modules, classes and properties are added
45 var model: Model
46
47 # The toolcontext used to control the interaction with the user (getting options and displaying messages)
48 var toolcontext: ToolContext
49
50 # Instantiate a modelbuilder for a model and a toolcontext
51 # Important, the options of the toolcontext must be correctly set (parse_option already called)
52 init
53 do
54 assert toolcontext.modelbuilder_real == null
55 toolcontext.modelbuilder_real = self
56 end
57
58 # Return a class named `name` visible by the module `mmodule`.
59 # Visibility in modules is correctly handled.
60 # If no such a class exists, then null is returned.
61 # If more than one class exists, then an error on `anode` is displayed and null is returned.
62 # FIXME: add a way to handle class name conflict
63 fun try_get_mclass_by_name(anode: ANode, mmodule: MModule, name: String): nullable MClass
64 do
65 var classes = model.get_mclasses_by_name(name)
66 if classes == null then
67 return null
68 end
69
70 var res: nullable MClass = null
71 for mclass in classes do
72 if not mmodule.in_importation <= mclass.intro_mmodule then continue
73 if not mmodule.is_visible(mclass.intro_mmodule, mclass.visibility) then continue
74 if res == null then
75 res = mclass
76 else
77 error(anode, "Error: ambiguous class name `{name}`; conflict between `{mclass.full_name}` and `{res.full_name}`.")
78 return null
79 end
80 end
81 return res
82 end
83
84 # Return a class identified by `qid` visible by the module `mmodule`.
85 # Visibility in modules and qualified names are correctly handled.
86 #
87 # If more than one class exists, then null is silently returned.
88 # It is up to the caller to post-analysis the result and display a correct error message.
89 # The method `class_not_found` can be used to display such a message.
90 fun try_get_mclass_by_qid(qid: AQclassid, mmodule: MModule): nullable MClass
91 do
92 var name = qid.n_id.text
93
94 var classes = model.get_mclasses_by_name(name)
95 if classes == null then
96 return null
97 end
98
99 var res: nullable MClass = null
100 for mclass in classes do
101 if not mmodule.in_importation <= mclass.intro_mmodule then continue
102 if not mmodule.is_visible(mclass.intro_mmodule, mclass.visibility) then continue
103 if not qid.accept(mclass) then continue
104 if res == null then
105 res = mclass
106 else
107 return null
108 end
109 end
110
111 return res
112 end
113
114 # Like `try_get_mclass_by_name` but display an error message when the class is not found
115 fun get_mclass_by_name(node: ANode, mmodule: MModule, name: String): nullable MClass
116 do
117 var mclass = try_get_mclass_by_name(node, mmodule, name)
118 if mclass == null then
119 error(node, "Type Error: missing primitive class `{name}'.")
120 end
121 return mclass
122 end
123
124 # Return a property named `name` on the type `mtype` visible in the module `mmodule`.
125 # Visibility in modules is correctly handled.
126 # Protected properties are returned (it is up to the caller to check and reject protected properties).
127 # If no such a property exists, then null is returned.
128 # If more than one property exists, then an error on `anode` is displayed and null is returned.
129 # FIXME: add a way to handle property name conflict
130 fun try_get_mproperty_by_name2(anode: ANode, mmodule: MModule, mtype: MType, name: String): nullable MProperty
131 do
132 var props = self.model.get_mproperties_by_name(name)
133 if props == null then
134 return null
135 end
136
137 var cache = self.try_get_mproperty_by_name2_cache[mmodule, mtype, name]
138 if cache != null then return cache
139
140 var res: nullable MProperty = null
141 var ress: nullable Array[MProperty] = null
142 for mprop in props do
143 if not mtype.has_mproperty(mmodule, mprop) then continue
144 if not mmodule.is_visible(mprop.intro_mclassdef.mmodule, mprop.visibility) then continue
145
146 # new-factories are invisible outside of the class
147 if mprop isa MMethod and mprop.is_new and (not mtype isa MClassType or mprop.intro_mclassdef.mclass != mtype.mclass) then
148 continue
149 end
150
151 if res == null then
152 res = mprop
153 continue
154 end
155
156 # Two global properties?
157 # First, special case for init, keep the most specific ones
158 if res isa MMethod and mprop isa MMethod and res.is_init and mprop.is_init then
159 var restype = res.intro_mclassdef.bound_mtype
160 var mproptype = mprop.intro_mclassdef.bound_mtype
161 if mproptype.is_subtype(mmodule, null, restype) then
162 # found a most specific constructor, so keep it
163 res = mprop
164 continue
165 end
166 end
167
168 # Ok, just keep all prop in the ress table
169 if ress == null then
170 ress = new Array[MProperty]
171 ress.add(res)
172 end
173 ress.add(mprop)
174 end
175
176 # There is conflict?
177 if ress != null and res isa MMethod and res.is_init then
178 # special case forinit again
179 var restype = res.intro_mclassdef.bound_mtype
180 var ress2 = new Array[MProperty]
181 for mprop in ress do
182 var mproptype = mprop.intro_mclassdef.bound_mtype
183 if not restype.is_subtype(mmodule, null, mproptype) then
184 ress2.add(mprop)
185 else if not mprop isa MMethod or not mprop.is_init then
186 ress2.add(mprop)
187 end
188 end
189 if ress2.is_empty then
190 ress = null
191 else
192 ress = ress2
193 ress.add(res)
194 end
195 end
196
197 if ress != null then
198 assert ress.length > 1
199 var s = new Array[String]
200 for mprop in ress do s.add mprop.full_name
201 self.error(anode, "Error: ambiguous property name `{name}` for `{mtype}`; conflict between {s.join(" and ")}.")
202 end
203
204 self.try_get_mproperty_by_name2_cache[mmodule, mtype, name] = res
205 return res
206 end
207
208 private var try_get_mproperty_by_name2_cache = new HashMap3[MModule, MType, String, nullable MProperty]
209
210
211 # Alias for try_get_mproperty_by_name2(anode, mclassdef.mmodule, mclassdef.mtype, name)
212 fun try_get_mproperty_by_name(anode: ANode, mclassdef: MClassDef, name: String): nullable MProperty
213 do
214 return try_get_mproperty_by_name2(anode, mclassdef.mmodule, mclassdef.bound_mtype, name)
215 end
216
217 # Helper function to display an error on a node.
218 # Alias for `self.toolcontext.error(n.hot_location, text)`
219 #
220 # This automatically sets `n.is_broken` to true.
221 fun error(n: nullable ANode, text: String)
222 do
223 var l = null
224 if n != null then
225 l = n.hot_location
226 n.is_broken = true
227 end
228 self.toolcontext.error(l, text)
229 end
230
231 # Helper function to display a warning on a node.
232 # Alias for: `self.toolcontext.warning(n.hot_location, text)`
233 fun warning(n: nullable ANode, tag, text: String)
234 do
235 var l = null
236 if n != null then l = n.hot_location
237 self.toolcontext.warning(l, tag, text)
238 end
239
240 # Helper function to display an advice on a node.
241 # Alias for: `self.toolcontext.advice(n.hot_location, text)`
242 fun advice(n: nullable ANode, tag, text: String)
243 do
244 var l = null
245 if n != null then l = n.hot_location
246 self.toolcontext.advice(l, tag, text)
247 end
248
249 # Force to get the primitive method named `name` on the type `recv` or do a fatal error on `n`
250 fun force_get_primitive_method(n: nullable ANode, name: String, recv: MClass, mmodule: MModule): MMethod
251 do
252 var res = mmodule.try_get_primitive_method(name, recv)
253 if res == null then
254 var l = null
255 if n != null then l = n.hot_location
256 self.toolcontext.fatal_error(l, "Fatal Error: `{recv}` must have a property named `{name}`.")
257 abort
258 end
259 return res
260 end
261
262 # Return the static type associated to the node `ntype`.
263 # `mmodule` and `mclassdef` is the context where the call is made (used to understand formal types)
264 # In case of problem, an error is displayed on `ntype` and null is returned.
265 # FIXME: the name "resolve_mtype" is awful
266 fun resolve_mtype_unchecked(mmodule: MModule, mclassdef: nullable MClassDef, ntype: AType, with_virtual: Bool): nullable MType
267 do
268 var qid = ntype.n_qid
269 var name = qid.n_id.text
270 var res: MType
271
272 # Check virtual type
273 if mclassdef != null and with_virtual then
274 var prop = try_get_mproperty_by_name(ntype, mclassdef, name).as(nullable MVirtualTypeProp)
275 if prop != null then
276 if not ntype.n_types.is_empty then
277 error(ntype, "Type Error: formal type `{name}` cannot have formal parameters.")
278 end
279 res = prop.mvirtualtype
280 if ntype.n_kwnullable != null then res = res.as_nullable
281 ntype.mtype = res
282 return res
283 end
284 end
285
286 # Check parameter type
287 if mclassdef != null then
288 for p in mclassdef.mclass.mparameters do
289 if p.name != name then continue
290
291 if not ntype.n_types.is_empty then
292 error(ntype, "Type Error: formal type `{name}` cannot have formal parameters.")
293 end
294
295 res = p
296 if ntype.n_kwnullable != null then res = res.as_nullable
297 ntype.mtype = res
298 return res
299 end
300 end
301
302 # Check class
303 var mclass = try_get_mclass_by_qid(qid, mmodule)
304 if mclass != null then
305 var arity = ntype.n_types.length
306 if arity != mclass.arity then
307 if arity == 0 then
308 error(ntype, "Type Error: `{mclass.signature_to_s}` is a generic class.")
309 else if mclass.arity == 0 then
310 error(ntype, "Type Error: `{name}` is not a generic class.")
311 else
312 error(ntype, "Type Error: expected {mclass.arity} formal argument(s) for `{mclass.signature_to_s}`; got {arity}.")
313 end
314 return null
315 end
316 if arity == 0 then
317 res = mclass.mclass_type
318 if ntype.n_kwnullable != null then res = res.as_nullable
319 ntype.mtype = res
320 return res
321 else
322 var mtypes = new Array[MType]
323 for nt in ntype.n_types do
324 var mt = resolve_mtype_unchecked(mmodule, mclassdef, nt, with_virtual)
325 if mt == null then return null # Forward error
326 mtypes.add(mt)
327 end
328 res = mclass.get_mtype(mtypes)
329 if ntype.n_kwnullable != null then res = res.as_nullable
330 ntype.mtype = res
331 return res
332 end
333 end
334
335 # If everything fail, then give up with class by proposing things.
336 #
337 # TODO Give hints on formal types (param and virtual)
338 class_not_found(qid, mmodule)
339 ntype.is_broken = true
340 return null
341 end
342
343 # Print an error and suggest hints when the class identified by `qid` in `mmodule` is not found.
344 #
345 # This just print error messages.
346 fun class_not_found(qid: AQclassid, mmodule: MModule)
347 do
348 var name = qid.n_id.text
349
350 var all_classes = model.get_mclasses_by_name(name)
351
352 # Look for imported but invisible classes.
353 if all_classes != null then for c in all_classes do
354 if not mmodule.in_importation <= c.intro_mmodule then continue
355 if mmodule.is_visible(c.intro_mmodule, c.visibility) then continue
356 if not qid.accept(c) then continue
357 error(ntype, "Error: class `{c.full_name}` not visible in module `{mmodule}`.")
358 return
359 end
360
361 # Look for not imported but known classes from importable modules
362 var hints = new Array[String]
363 if all_classes != null then for c in all_classes do
364 if mmodule.in_importation <= c.intro_mmodule then continue
365 if c.intro_mmodule.in_importation <= mmodule then continue
366 if c.visibility <= private_visibility then continue
367 if not qid.accept(c) then continue
368 hints.add "`{c.intro_mmodule.full_name}`"
369 end
370 if hints.not_empty then
371 error(ntype, "Error: class `{name}` not found in module `{mmodule}`. Maybe import {hints.join(",", " or ")}?")
372 return
373 end
374
375 # Look for classes with an approximative name.
376 var bestd = name.length / 2 # limit up to 50% name change
377 for c in model.mclasses do
378 if not mmodule.in_importation <= c.intro_mmodule then continue
379 if not mmodule.is_visible(c.intro_mmodule, c.visibility) then continue
380 var d = name.levenshtein_distance(c.name)
381 if d <= bestd then
382 if d < bestd then
383 hints.clear
384 bestd = d
385 end
386 hints.add "`{c.full_name}`"
387 end
388 end
389 if hints.not_empty then
390 error(ntype, "Error: class `{name}` not found in module `{mmodule}`. Did you mean {hints.join(",", " or ")}?")
391 return
392 end
393
394 error(ntype, "Error: class `{name}` not found in module `{mmodule}`.")
395 end
396
397 # Return the static type associated to the node `ntype`.
398 # `mmodule` and `mclassdef` is the context where the call is made (used to understand formal types)
399 # In case of problem, an error is displayed on `ntype` and null is returned.
400 # FIXME: the name "resolve_mtype" is awful
401 fun resolve_mtype(mmodule: MModule, mclassdef: nullable MClassDef, ntype: AType): nullable MType
402 do
403 var mtype = ntype.mtype
404 if mtype == null then mtype = resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
405 if mtype == null then return null # Forward error
406
407 if ntype.checked_mtype then return mtype
408 if mtype isa MGenericType then
409 var mclass = mtype.mclass
410 for i in [0..mclass.arity[ do
411 var intro = mclass.try_intro
412 if intro == null then return null # skip error
413 var bound = intro.bound_mtype.arguments[i]
414 var nt = ntype.n_types[i]
415 var mt = resolve_mtype(mmodule, mclassdef, nt)
416 if mt == null then return null # forward error
417 var anchor
418 if mclassdef != null then anchor = mclassdef.bound_mtype else anchor = null
419 if not check_subtype(nt, mmodule, anchor, mt, bound) then
420 error(nt, "Type Error: expected `{bound}`, got `{mt}`.")
421 return null
422 end
423 end
424 end
425 ntype.checked_mtype = true
426 return mtype
427 end
428
429 # Check that `sub` is a subtype of `sup`.
430 # Do not display an error message.
431 #
432 # This method is used a an entry point for the modelize phase to test static subtypes.
433 # Some refinements could redefine it to collect statictics.
434 fun check_subtype(node: ANode, mmodule: MModule, anchor: nullable MClassType, sub, sup: MType): Bool
435 do
436 return sub.is_subtype(mmodule, anchor, sup)
437 end
438
439 # Check that `sub` and `sup` are equvalent types.
440 # Do not display an error message.
441 #
442 # This method is used a an entry point for the modelize phase to test static equivalent types.
443 # Some refinements could redefine it to collect statictics.
444 fun check_sametype(node: ANode, mmodule: MModule, anchor: nullable MClassType, sub, sup: MType): Bool
445 do
446 return sub.is_subtype(mmodule, anchor, sup) and sup.is_subtype(mmodule, anchor, sub)
447 end
448 end
449
450 redef class ANode
451 # The indication that the node did not pass some semantic verifications.
452 #
453 # This simple flag is set by a given analysis to say that the node is broken and unusable in
454 # an execution.
455 # When a node status is set to broken, it is usually associated with a error message.
456 #
457 # If it is safe to do so, clients of the AST SHOULD just skip broken nodes in their processing.
458 # Clients that do not care about the executability (e.g. metrics) MAY still process the node or
459 # perform specific checks to determinate the validity of the node.
460 #
461 # Note that the broken status is not propagated to parent or children nodes.
462 # e.g. a broken expression used as argument does not make the whole call broken.
463 var is_broken = false is writable
464 end
465
466 redef class AType
467 # The mtype associated to the node
468 var mtype: nullable MType = null
469
470 # Is the mtype a valid one?
471 var checked_mtype: Bool = false
472 end
473
474 redef class AVisibility
475 # The visibility level associated with the AST node class
476 fun mvisibility: MVisibility is abstract
477 end
478 redef class AIntrudeVisibility
479 redef fun mvisibility do return intrude_visibility
480 end
481 redef class APublicVisibility
482 redef fun mvisibility do return public_visibility
483 end
484 redef class AProtectedVisibility
485 redef fun mvisibility do return protected_visibility
486 end
487 redef class APrivateVisibility
488 redef fun mvisibility do return private_visibility
489 end
490
491 redef class ADoc
492 private var mdoc_cache: nullable MDoc
493
494 # Convert `self` to a `MDoc`
495 fun to_mdoc: MDoc
496 do
497 var res = mdoc_cache
498 if res != null then return res
499 res = new MDoc(location)
500 for c in n_comment do
501 var text = c.text
502 if text.length < 2 then
503 res.content.add ""
504 continue
505 end
506 assert text.chars[0] == '#'
507 if text.chars[1] == ' ' then
508 text = text.substring_from(2) # eat starting `#` and space
509 else
510 text = text.substring_from(1) # eat atarting `#` only
511 end
512 if text.chars.last == '\n' then text = text.substring(0, text.length-1) # drop \n
513 res.content.add(text)
514 end
515 mdoc_cache = res
516 return res
517 end
518 end
519
520 redef class AQclassid
521 # The name of the package part, if any
522 fun mpackname: nullable String do
523 var nqualified = n_qualified
524 if nqualified == null then return null
525 var nids = nqualified.n_id
526 if nids.length <= 0 then return null
527 return nids[0].text
528 end
529
530 # The name of the module part, if any
531 fun mmodname: nullable String do
532 var nqualified = n_qualified
533 if nqualified == null then return null
534 var nids = nqualified.n_id
535 if nids.length <= 1 then return null
536 return nids[1].text
537 end
538
539 # Does `mclass` match the full qualified name?
540 fun accept(mclass: MClass): Bool
541 do
542 if mclass.name != n_id.text then return false
543 var mpackname = self.mpackname
544 if mpackname != null then
545 var mpackage = mclass.intro_mmodule.mpackage
546 if mpackage == null then return false
547 if mpackage.name != mpackname then return false
548 var mmodname = self.mmodname
549 if mmodname != null and mclass.intro_mmodule.name != mmodname then return false
550 end
551 return true
552 end
553 end