Merge: Added contributing guidelines and link from readme
[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 var qname = qid.full_name
350
351 if bad_class_names[mmodule].has(qname) then
352 error(qid, "Error: class `{qname}` not found in module `{mmodule}`.")
353 return
354 end
355 bad_class_names[mmodule].add(qname)
356
357 var all_classes = model.get_mclasses_by_name(name)
358 var hints = new Array[String]
359
360 # Look for conflicting classes.
361 if all_classes != null then for c in all_classes do
362 if not mmodule.is_visible(c.intro_mmodule, c.visibility) then continue
363 if not qid.accept(c) then continue
364 hints.add "`{c.full_name}`"
365 end
366 if hints.length > 1 then
367 error(qid, "Error: ambiguous class name `{qname}` in module `{mmodule}`. Conflicts are between {hints.join(",", " and ")}.")
368 return
369 end
370 hints.clear
371
372 # Look for imported but invisible classes.
373 if all_classes != null then for c in all_classes do
374 if not mmodule.in_importation <= c.intro_mmodule then continue
375 if mmodule.is_visible(c.intro_mmodule, c.visibility) then continue
376 if not qid.accept(c) then continue
377 error(qid, "Error: class `{c.full_name}` not visible in module `{mmodule}`.")
378 return
379 end
380
381 # Look for not imported but known classes from importable modules
382 if all_classes != null then for c in all_classes do
383 if mmodule.in_importation <= c.intro_mmodule then continue
384 if c.intro_mmodule.in_importation <= mmodule then continue
385 if c.visibility <= private_visibility then continue
386 if not qid.accept(c) then continue
387 hints.add "`{c.intro_mmodule.full_name}`"
388 end
389 if hints.not_empty then
390 error(qid, "Error: class `{qname}` not found in module `{mmodule}`. Maybe import {hints.join(",", " or ")}?")
391 return
392 end
393
394 # Look for classes with an approximative name.
395 var bests = new BestDistance[MClass](qname.length - name.length / 2) # limit up to 50% name change
396 for c in model.mclasses do
397 if not mmodule.in_importation <= c.intro_mmodule then continue
398 if not mmodule.is_visible(c.intro_mmodule, c.visibility) then continue
399 var d = qname.levenshtein_distance(c.name)
400 bests.update(d, c)
401 d = qname.levenshtein_distance(c.full_name)
402 bests.update(d, c)
403 end
404 if bests.best_items.not_empty then
405 for c in bests.best_items do hints.add "`{c.full_name}`"
406 error(qid, "Error: class `{qname}` not found in module `{mmodule}`. Did you mean {hints.join(",", " or ")}?")
407 return
408 end
409
410 error(qid, "Error: class `{qname}` not found in module `{mmodule}`.")
411 end
412
413 # List of already reported bad class names.
414 # Used to not perform and repeat hints again and again.
415 private var bad_class_names = new MultiHashMap[MModule, String]
416
417 # Return the static type associated to the node `ntype`.
418 # `mmodule` and `mclassdef` is the context where the call is made (used to understand formal types)
419 # In case of problem, an error is displayed on `ntype` and null is returned.
420 # FIXME: the name "resolve_mtype" is awful
421 fun resolve_mtype(mmodule: MModule, mclassdef: nullable MClassDef, ntype: AType): nullable MType
422 do
423 var mtype = ntype.mtype
424 if mtype == null then mtype = resolve_mtype_unchecked(mmodule, mclassdef, ntype, true)
425 if mtype == null then return null # Forward error
426
427 if ntype.checked_mtype then return mtype
428 if mtype isa MGenericType then
429 var mclass = mtype.mclass
430 for i in [0..mclass.arity[ do
431 var intro = mclass.try_intro
432 if intro == null then return null # skip error
433 var bound = intro.bound_mtype.arguments[i]
434 var nt = ntype.n_types[i]
435 var mt = resolve_mtype(mmodule, mclassdef, nt)
436 if mt == null then return null # forward error
437 var anchor
438 if mclassdef != null then anchor = mclassdef.bound_mtype else anchor = null
439 if not check_subtype(nt, mmodule, anchor, mt, bound) then
440 error(nt, "Type Error: expected `{bound}`, got `{mt}`.")
441 return null
442 end
443 end
444 end
445 ntype.checked_mtype = true
446 return mtype
447 end
448
449 # Check that `sub` is a subtype of `sup`.
450 # Do not display an error message.
451 #
452 # This method is used a an entry point for the modelize phase to test static subtypes.
453 # Some refinements could redefine it to collect statictics.
454 fun check_subtype(node: ANode, mmodule: MModule, anchor: nullable MClassType, sub, sup: MType): Bool
455 do
456 return sub.is_subtype(mmodule, anchor, sup)
457 end
458
459 # Check that `sub` and `sup` are equvalent types.
460 # Do not display an error message.
461 #
462 # This method is used a an entry point for the modelize phase to test static equivalent types.
463 # Some refinements could redefine it to collect statictics.
464 fun check_sametype(node: ANode, mmodule: MModule, anchor: nullable MClassType, sub, sup: MType): Bool
465 do
466 return sub.is_subtype(mmodule, anchor, sup) and sup.is_subtype(mmodule, anchor, sub)
467 end
468 end
469
470 redef class ANode
471 # The indication that the node did not pass some semantic verifications.
472 #
473 # This simple flag is set by a given analysis to say that the node is broken and unusable in
474 # an execution.
475 # When a node status is set to broken, it is usually associated with a error message.
476 #
477 # If it is safe to do so, clients of the AST SHOULD just skip broken nodes in their processing.
478 # Clients that do not care about the executability (e.g. metrics) MAY still process the node or
479 # perform specific checks to determinate the validity of the node.
480 #
481 # Note that the broken status is not propagated to parent or children nodes.
482 # e.g. a broken expression used as argument does not make the whole call broken.
483 var is_broken = false is writable
484 end
485
486 redef class AType
487 # The mtype associated to the node
488 var mtype: nullable MType = null
489
490 # Is the mtype a valid one?
491 var checked_mtype: Bool = false
492 end
493
494 redef class AVisibility
495 # The visibility level associated with the AST node class
496 fun mvisibility: MVisibility is abstract
497 end
498 redef class AIntrudeVisibility
499 redef fun mvisibility do return intrude_visibility
500 end
501 redef class APublicVisibility
502 redef fun mvisibility do return public_visibility
503 end
504 redef class AProtectedVisibility
505 redef fun mvisibility do return protected_visibility
506 end
507 redef class APrivateVisibility
508 redef fun mvisibility do return private_visibility
509 end
510
511 redef class ADoc
512 private var mdoc_cache: nullable MDoc
513
514 # Convert `self` to a `MDoc`
515 fun to_mdoc: MDoc
516 do
517 var res = mdoc_cache
518 if res != null then return res
519 res = new MDoc(location)
520 for c in n_comment do
521 var text = c.text
522 if text.length < 2 then
523 res.content.add ""
524 continue
525 end
526 assert text.chars[0] == '#'
527 if text.chars[1] == ' ' then
528 text = text.substring_from(2) # eat starting `#` and space
529 else
530 text = text.substring_from(1) # eat atarting `#` only
531 end
532 if text.chars.last == '\n' then text = text.substring(0, text.length-1) # drop \n
533 res.content.add(text)
534 end
535 mdoc_cache = res
536 return res
537 end
538 end
539
540 redef class AQclassid
541 # The name of the package part, if any
542 fun mpackname: nullable String do
543 var nqualified = n_qualified
544 if nqualified == null then return null
545 var nids = nqualified.n_id
546 if nids.length <= 0 then return null
547 return nids[0].text
548 end
549
550 # The name of the module part, if any
551 fun mmodname: nullable String do
552 var nqualified = n_qualified
553 if nqualified == null then return null
554 var nids = nqualified.n_id
555 if nids.length <= 1 then return null
556 return nids[1].text
557 end
558
559 # Does `mclass` match the full qualified name?
560 fun accept(mclass: MClass): Bool
561 do
562 if mclass.name != n_id.text then return false
563 var mpackname = self.mpackname
564 if mpackname != null then
565 var mpackage = mclass.intro_mmodule.mpackage
566 if mpackage == null then return false
567 if mpackage.name != mpackname then return false
568 var mmodname = self.mmodname
569 if mmodname != null and mclass.intro_mmodule.name != mmodname then return false
570 end
571 return true
572 end
573
574 # The pretty name represented by self.
575 fun full_name: String
576 do
577 var res = n_id.text
578 var nqualified = n_qualified
579 if nqualified == null then return res
580 var ncid = nqualified.n_classid
581 if ncid != null then res = ncid.text + "::" + res
582 var nids = nqualified.n_id
583 if nids.not_empty then for n in nids.reverse_iterator do
584 res = n.text + "::" + res
585 end
586 return res
587 end
588 end