metamodel: fast-fail in getters
[nit.git] / src / syntax / mmbuilder.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 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 # Build MM entity from NIT AST and check conformance of these entities.
18 # This module introduce specific MM class (MMSrcXXX) that specialize the abstract one from metamodel
19 #
20 package mmbuilder
21
22 import syntax_base
23
24 # Class specialization hierarchy sorter
25 private class CSHSorter
26 special AbstractSorter[MMLocalClass]
27 redef meth compare(a, b)
28 do
29 return a.cshe.rank <=> b.cshe.rank
30 end
31
32 init do end
33 end
34
35 redef class MMSrcModule
36 # Syntax analysis and MM construction for the module
37 # Require that supermodules are processed
38 meth do_mmbuilder(tc: ToolContext)
39 do
40 # Import global classes
41 import_global_classes
42
43 # Create local classes and attach them to global classes
44 var mmbv = new ClassBuilderVisitor(tc, self)
45 mmbv.visit(node)
46 if tc.error_count > 0 then exit(1)
47
48 # Import unrefined local classes and attach them to global classes
49 import_local_classes
50
51 # Resolve classes in super clauses
52 var mmbv1 = new ClassSpecializationBuilderVisitor(tc, self)
53 mmbv1.visit(node)
54 if tc.error_count > 0 then exit(1)
55
56 # Compute specialization relation
57 for c in local_classes do
58 if visibility_for(c.global.intro.module) < c.global.visibility_level then
59 continue
60 end
61 c.compute_super_classes
62 end
63
64 # Class that we will process now are those in the hierarchy
65 # Its mean all the visible classes and their super-classes
66 # Note that leaves invisible classes are not in the 'classes' set
67 var classes = class_specialization_hierarchy.to_a
68
69 # Prepare class list to process the following in a right order
70 var sorter = once new CSHSorter
71 sorter.sort(classes)
72
73 # Compute class ancestors types
74 var mmbv1b = new ClassAncestorBuilder(tc, self)
75 for c in classes do
76 c.accept_class_visitor(mmbv1b)
77 c.compute_ancestors
78 end
79 if tc.error_count > 0 then exit(1)
80
81 # Check class conformity
82 var mmbv1b = new ClassVerifierVisitor(tc, self)
83 for c in classes do
84 c.accept_class_visitor(mmbv1b)
85 end
86 if tc.error_count > 0 then exit(1)
87
88 # Property inhritance and introduction
89 var mmbv2 = new PropertyBuilderVisitor(tc, self)
90 for c in classes do
91 # Inherit global properties
92 c.inherit_global_properties
93
94 # Global property introduction and redefinition
95 c.accept_class_visitor(mmbv2)
96
97 # Default and inherited constructor if needed
98 if c isa MMSrcLocalClass and c.global.intro == c and not c.global.is_universal and not c.global.is_interface then
99 c.process_default_constructors(mmbv2)
100 end
101
102 # Note that inherited unredefined property are processed on demand latter
103 end
104 if tc.error_count > 0 then exit(1)
105
106 # Property signature analysis and inheritance conformance
107 var mmbv3 = new PropertyVerifierVisitor(tc, self)
108 for c in classes do
109 c.accept_properties_visitor(mmbv3)
110 end
111
112 # Check inherited local properties
113 for c in classes do
114 for g in c.global_properties do
115 if visibility_for(g.intro.module) < g.visibility_level then continue
116 var p = c[g]
117 end
118 end
119
120 if tc.error_count > 0 then exit(1)
121 end
122 end
123
124 redef class MMLocalClass
125 # Accept a class visitor (on class nodes)
126 private meth accept_class_visitor(v: AbsSyntaxVisitor)
127 do
128 end
129
130 # Accept a class visitor (on class properties)
131 private meth accept_properties_visitor(v: AbsSyntaxVisitor)
132 do
133 end
134 end
135
136 redef class MMSrcLocalClass
137 redef meth accept_class_visitor(v)
138 do
139 for n in nodes do
140 v.visit(n)
141 end
142 end
143
144 # Accept a class visitor (on class properties)
145 redef meth accept_properties_visitor(v)
146 do
147 for n in nodes do
148 v.visit(n)
149 end
150
151 for p in src_local_properties do
152 p.accept_property_visitor(v)
153 end
154 end
155
156 # Introduce or inherit default constructors
157 private meth process_default_constructors(v: PropertyBuilderVisitor)
158 do
159 # Is there already a constructor ?
160 for gp in global_properties do
161 if gp.is_init then
162 # Return if explicit constructor in the class
163 if gp.intro.local_class == self then return
164 end
165 end
166
167 # Collect visible constructors in super stateful classes
168 var super_inits = new ArraySet[MMLocalProperty]
169 var super_constructors = new ArraySet[MMGlobalProperty]
170 for sc in che.direct_greaters do
171 if sc.global.is_universal or sc.global.is_interface then continue
172 for gp in sc.global_properties do
173 if not gp.is_init then continue
174 super_constructors.add(gp)
175 end
176 var initname = once ("init".to_symbol)
177 if sc.has_global_property_by_name(initname) then
178 var gp = sc.get_property_by_name(initname)
179 super_inits.add(self[gp])
180 end
181 end
182
183 # Collect unassigned attributes
184 var unassigned_attributes = new Array[MMSrcAttribute]
185 for a in src_local_properties do
186 if a isa MMSrcAttribute then
187 var n = a.node
188 assert n isa AAttrPropdef
189 if n.n_expr == null then unassigned_attributes.add(a)
190 end
191 end
192
193 if not super_constructors.is_empty then
194 # Select most specific classes introducing inheritable constructors
195 # Mixin classes are skipped
196 var supers = new Array[MMLocalClass]
197 for gp in super_constructors do
198 var sc = gp.local_class
199 if supers.has(sc) then continue
200 if not sc.global.is_mixin then
201 supers.add(sc)
202 end
203 end
204 supers = che.order.select_smallests(supers)
205
206 # A mixin class can only have 0 or 1 most specific non-mixin superclass
207 var superclass: MMLocalClass = null # This most specific non-mixin superclass (if any)
208
209 if supers.length > 1 then
210 v.error(nodes.first, "Error: Explicit constructor required in {self} since multiple inheritance of constructor is forbiden. Conflicting classes are {supers.join(", ")}. Costructors are {super_constructors.join(", ")}.")
211 return
212 else if supers.length == 1 then
213 superclass = supers.first
214 end
215
216 for gp in super_constructors do
217 # Inherit constructors : the one of the non-mixin super class or all from the all mixin super-classes
218 if superclass == null or gp.local_class == superclass then
219 make_visible_an_inherited_global_property(gp)
220 end
221 end
222 global.mixin_of = superclass.global
223 else
224 # v.error(nodes.first, "Error, constructor required in {self} since no anonimous init found in {sc}.")
225
226 # unassigned attributes, then implicit consructors are generated
227 var p = new MMImplicitInit(self, unassigned_attributes, super_inits.to_a)
228 add_src_local_property(v, p)
229 #print("Create implicit init {p} in {self} from {super_inits.join(", ")} + {unassigned_attributes.length} args")
230 end
231 end
232
233 # Add a source property
234 # Register it to the class and attach it to global property
235 private meth add_src_local_property(v: PropertyBuilderVisitor, prop: MMLocalProperty)
236 do
237 var pname = prop.name
238 # Check double definition in the same class
239 if src_local_properties.has_key(pname) then
240 v.error(prop.node, "Error: A property {pname} is already defined in class {name}.")
241 return
242 end
243 src_local_properties[pname] = prop
244
245 # Intro or redefinition ?
246 if has_global_property_by_name(pname) then
247 var globs = properties_by_name[pname]
248 if globs.length > 1 then
249 v.error(prop.node, "Name error: {self} inherits {globs.length} global properties named {pname}.")
250 end
251 var g = globs.first
252 prop.inherit_global(g)
253 end
254
255 if prop.global == null then
256 prop.new_global
257 prop.global.is_init = prop.is_init
258 end
259 end
260 end
261
262 redef class MMLocalProperty
263 private meth accept_property_visitor(v: AbsSyntaxVisitor)
264 do
265 end
266 end
267
268 redef class MMImplicitInit
269 readable attr _super_init: MMLocalProperty = null
270 redef meth accept_property_visitor(v)
271 do
272 var base: MMLocalProperty = null
273 for p in super_inits do
274 if p.signature.arity > 0 then
275 if base == null then
276 base = p
277 else
278 v.error(null, "Error: explicit constructor needed in {local_class} since both super-constructor {base.full_name} and {p.full_name} have paramters")
279 return
280 end
281 end
282 end
283 _super_init = base
284
285 var params = new Array[MMType]
286 if base != null then
287 var sig = base.signature
288 for i in [0..sig.arity[ do
289 params.add(sig[i])
290 end
291 end
292 for a in unassigned_attributes do
293 params.add(a.signature.return_type)
294 end
295 signature = new MMSignature(params, null, local_class.get_type)
296 end
297 end
298
299
300 # Concrete NIT class specialization relation
301 class MMSrcAncestor
302 special MMAncestor
303 # The related AST node
304 readable attr _node: ASuperclass
305 redef readable attr _local_class: MMLocalClass
306
307 init(n: ASuperclass, c: MMLocalClass)
308 do
309 _node = n
310 _local_class = c
311 end
312 end
313
314 ###############################################################################
315
316 # A pass visitor for syntax analysis.
317 # * Build the classes and attach them to global classes
318 # * Collect generic formal parameters.
319 private class ClassBuilderVisitor
320 special AbsSyntaxVisitor
321 # Current class arity
322 readable writable attr _local_class_arity: Int
323
324 # Current class formal parameters
325 readable writable attr _formals: Map[Symbol, MMTypeFormalParameter]
326
327 redef meth visit(n) do n.accept_class_builder(self)
328 init(tc, m) do super
329 end
330
331 # Another pass visitor for syntax analysis.
332 # * Build ancertors (with only class informations not the type one)
333 private class ClassSpecializationBuilderVisitor
334 special AbsSyntaxVisitor
335 redef meth visit(n) do n.accept_class_specialization_builder(self)
336 init(tc, m) do super
337 end
338
339 # Another pass visitor for syntax analysis.
340 # * Compute types in ancestors
341 private class ClassAncestorBuilder
342 special AbsSyntaxVisitor
343 redef meth visit(n) do n.accept_class_ancestor_builder(self)
344 init(tc, m) do super
345 end
346
347 # Another pass visitor for syntax analysis.
348 # * Checks classes in regard to superclasses
349 private class ClassVerifierVisitor
350 special AbsSyntaxVisitor
351 redef meth visit(n) do n.accept_class_verifier(self)
352 init(tc, m) do super
353 end
354
355
356 # Another pass visitor for syntax analysis.
357 # * Build propertie names
358 # * Build local properties and attache them to global properties
359 # * Attach bound to formal types
360 private class PropertyBuilderVisitor
361 special AbsSyntaxVisitor
362 redef meth visit(n) do n.accept_property_builder(self)
363 init(tc, m) do super
364 end
365
366 # Another pass pass visitor for syntax analysis.
367 # * Check property conformance
368 private class PropertyVerifierVisitor
369 special AbsSyntaxVisitor
370
371 # The signature currently build
372 readable writable attr _signature_builder: SignatureBuilder
373
374 redef meth visit(n) do n.accept_property_verifier(self)
375
376 init(tc, m)
377 do
378 super
379 _signature_builder = new SignatureBuilder
380 end
381 end
382
383 # Information about a signature currently build
384 private class SignatureBuilder
385 # Current visited parameter types
386 readable writable attr _params: Array[PParam] = new Array[PParam]
387
388 # Visited parameters without type information added
389 readable writable attr _untyped_params: Array[PParam] = new Array[PParam]
390
391 # Position of the current star parameter
392 readable writable attr _vararg_rank: Int = -1
393
394 # Current closure declarations
395 readable writable attr _closure_decls: Array[AClosureDecl] = new Array[AClosureDecl]
396
397 # Current signature
398 readable writable attr _signature: MMSignature = null
399 end
400
401 ###############################################################################
402
403 redef class PNode
404 private meth accept_class_builder(v: ClassBuilderVisitor) do accept_abs_syntax_visitor(v)
405 private meth accept_class_specialization_builder(v: ClassSpecializationBuilderVisitor) do accept_abs_syntax_visitor(v)
406 private meth accept_class_ancestor_builder(v: ClassAncestorBuilder) do accept_abs_syntax_visitor(v)
407 private meth accept_class_verifier(v: ClassVerifierVisitor) do accept_abs_syntax_visitor(v)
408 private meth accept_property_builder(v: PropertyBuilderVisitor) do accept_abs_syntax_visitor(v)
409 private meth accept_property_verifier(v: PropertyVerifierVisitor) do accept_abs_syntax_visitor(v)
410 end
411
412 redef class AModule
413 # Import supermodules and compute visibility
414 meth import_super_modules(tc: ToolContext, mod: MMSrcModule)
415 do
416 # Import super-modules
417 var module_names_to_import = new Array[Symbol]
418 var module_visibility = new HashMap[Symbol, Int]
419 var no_import: PImport = null
420 for i in n_imports do
421 var n = i.module_name
422 if n != null then
423 module_names_to_import.add(n)
424 module_visibility[n] = i.visibility_level
425 else
426 no_import = i
427 end
428 end
429 if no_import != null then
430 if not module_names_to_import.is_empty then
431 tc.error("{no_import.locate}: Error: Top modules cannot import other modules.")
432 end
433 else if module_names_to_import.is_empty then
434 var stdname = once "standard".to_symbol
435 module_names_to_import.add(stdname)
436 module_visibility[stdname] = 1
437 end
438
439 mod.import_supers_modules(module_names_to_import)
440
441 for mname in module_names_to_import do
442 var level = module_visibility[mname]
443 var m = tc.get_module(mname, mod)
444 mod.add_super_module(m, level)
445 end
446 end
447 end
448
449 redef class APackagedecl
450 redef meth accept_class_builder(v)
451 do
452 if n_id.to_symbol != v.module.name then
453 v.error(n_id, "Error: Package name missmatch between {v.module.name} and {n_id.to_symbol}")
454 end
455 end
456 end
457
458 redef class PImport
459 # Imported module name (or null)
460 meth module_name: Symbol is abstract
461
462 # Visibility level (intrude/public/private)
463 meth visibility_level: Int is abstract
464 end
465 redef class AImport
466 redef meth module_name
467 do
468 return n_id.to_symbol
469 end
470 redef meth visibility_level
471 do
472 return n_visibility.level
473 end
474 end
475 redef class ANoImport
476 redef meth module_name
477 do
478 return null
479 end
480 end
481
482 redef class PVisibility
483 # Visibility level
484 meth level: Int is abstract
485 end
486 redef class APublicVisibility
487 redef meth level do return 1
488 end
489 redef class AProtectedVisibility
490 redef meth level do return 2
491 end
492 redef class APrivateVisibility
493 redef meth level do return 3
494 end
495 redef class AIntrudeVisibility
496 redef meth level do return 0
497 end
498
499
500 redef class PClassdef
501 redef readable attr _local_class: MMSrcLocalClass
502
503 # Name of the class
504 meth name: Symbol is abstract
505
506 # Number of formal parameters
507 meth arity: Int do return 0
508
509 # Visibility of the class
510 meth visibility_level: Int do return 1
511
512 redef meth accept_class_builder(v)
513 do
514 var local_class: MMSrcLocalClass
515 var mod = v.module
516 var local_classes = mod.src_local_classes
517 if (local_classes.has_key(name)) then
518 local_class = local_classes[name]
519 if self isa AClassdef then
520 # If we are not a special implicit class then rant
521 v.error(self, "Error: A class {name} is already defined at line {local_class.nodes.first.first_token.line}.")
522 return
523 end
524 local_class.nodes.add(self)
525 else
526 local_class = new MMSrcLocalClass(name, self, arity)
527 mod.add_local_class(local_class)
528 local_classes[name] = local_class
529 var g = mod.global_class_named(name)
530 if g == null then
531 # Intro
532 local_class.new_global
533 g = local_class.global
534 else
535 local_class.set_global(g)
536 end
537
538 end
539 _local_class = local_class
540 v.local_class_arity = 0
541 v.formals = new HashMap[Symbol, MMTypeFormalParameter]
542
543 #####
544 super
545 #####
546
547 _local_class.formal_dict = v.formals
548 v.formals = null
549 end
550
551 redef meth accept_abs_syntax_visitor(v)
552 do
553 v.local_class = _local_class
554 super
555 v.local_class = null
556 end
557 end
558
559 redef class PClasskind
560 meth is_interface: Bool do return false
561 meth is_universal: Bool do return false
562 meth is_abstract: Bool do return false
563 end
564
565 redef class AInterfaceClasskind
566 redef meth is_interface do return true
567 end
568 redef class AUniversalClasskind
569 redef meth is_universal do return true
570 end
571 redef class AAbstractClasskind
572 redef meth is_abstract do return true
573 end
574
575 redef class AClassdef
576 redef meth name
577 do
578 return n_id.to_symbol
579 end
580 redef meth arity
581 do
582 return n_formaldefs.length
583 end
584 redef meth accept_class_verifier(v)
585 do
586 super
587 var glob = _local_class.global
588 if glob.intro == _local_class then
589 # Intro
590 glob.visibility_level = visibility_level
591 glob.is_interface = n_classkind.is_interface
592 glob.is_abstract = n_classkind.is_abstract
593 glob.is_universal = n_classkind.is_universal
594 if n_kwredef != null then
595 v.error(self, "Redef error: No class {name} is imported. Remove the redef keyword to define a new class.")
596 end
597
598 for c in _local_class.cshe.direct_greaters do
599 var cg = c.global
600 if glob.is_interface then
601 if cg.is_universal then
602 v.error(self, "Special error: Interface {name} try to specialise universal class {c.name}.")
603 else if not cg.is_interface then
604 v.error(self, "Special error: Interface {name} try to specialise class {c.name}.")
605 end
606 else if glob.is_universal then
607 if not cg.is_interface and not cg.is_universal then
608 v.error(self, "Special error: Universal class {name} try to specialise class {c.name}.")
609 end
610 else
611 if cg.is_universal then
612 v.error(self, "Special error: Class {name} try to specialise universal class {c.name}.")
613 end
614 end
615
616 end
617 return
618 end
619
620 # Redef
621
622 glob.check_visibility(v, self, v.module)
623 if n_kwredef == null then
624 v.error(self, "Redef error: {name} is an imported class. Add the redef keyword to refine it.")
625 return
626 end
627
628 if glob.intro.arity != _local_class.arity then
629 v.error(self, "Redef error: Formal parameter arity missmatch; got {_local_class.arity}, expected {glob.intro.arity}.")
630 end
631
632 if
633 not glob.is_interface and n_classkind.is_interface or
634 not glob.is_abstract and n_classkind.is_abstract or
635 not glob.is_universal and n_classkind.is_universal
636 then
637 v.error(self, "Redef error: cannot change kind of class {name}.")
638 end
639 end
640
641 redef meth visibility_level
642 do
643 return n_visibility.level
644 end
645 end
646
647 redef class AMainClassdef
648 redef meth name
649 do
650 return once "Sys".to_symbol
651 end
652 end
653
654 redef class ATopClassdef
655 redef meth name
656 do
657 return once "Object".to_symbol
658 end
659 end
660
661 class MMSrcTypeFormalParameter
662 special MMTypeFormalParameter
663 # The associated node
664 readable attr _node: AFormaldef
665
666 init(name: Symbol, pos: Int, local_class: MMLocalClass, n: AFormaldef)
667 do
668 super(name, pos, local_class)
669 _node = n
670 end
671 end
672
673 redef class AFormaldef
674 # The associated formal generic parameter (MM entity)
675 attr _formal: MMSrcTypeFormalParameter
676
677 redef meth accept_class_builder(v)
678 do
679 var name = n_id.to_symbol
680 var formal_type = new MMSrcTypeFormalParameter(name, v.local_class_arity, v.local_class, self)
681 _formal = formal_type
682 v.local_class_arity = v.local_class_arity + 1
683 v.local_class.register_formal(formal_type)
684 v.formals[name] = formal_type
685 super
686 end
687
688 redef meth accept_class_verifier(v)
689 do
690 super
691 var c = v.local_class
692 var o = c.global.intro
693 if c == o then
694 if n_type == null then
695 _formal.bound = v.module.type_any
696 else
697 _formal.bound = n_type.get_stype(v)
698 end
699 else
700 var ob = o.get_formal(_formal.position).bound.for_module(v.module)
701 if n_type == null then
702 _formal.bound = ob
703 else
704 _formal.bound = n_type.get_stype(v)
705 if _formal.bound != ob then
706 v.error(self, "Redef error: Cannot change formal parameter type of class {c}; got {_formal.bound}, expected {ob}.")
707 end
708 end
709 end
710 end
711 end
712
713 redef class ASuperclass
714 readable attr _ancestor: MMSrcAncestor
715
716 redef meth accept_class_specialization_builder(v)
717 do
718 super
719 var c = n_type.get_local_class(v)
720 var ancestor = new MMSrcAncestor(self, c)
721 _ancestor = ancestor
722 v.local_class.add_direct_parent(ancestor)
723 end
724
725 redef meth accept_class_ancestor_builder(v)
726 do
727 super
728 _ancestor.stype = n_type.get_unchecked_stype(v)
729 _ancestor.inheriter = v.local_class.get_type
730 end
731
732 redef meth accept_class_verifier(v)
733 do
734 super
735 n_type.check_conform(v)
736 end
737 end
738
739 redef class PPropdef
740 # Process and check properties of the property.
741 # * Distinguish inits and methods
742 # * Inherit or check visibility.
743 # * Check redef errors.
744 # * Check forbiden attribute definitions.
745 # * Check signature conformance.
746 private meth process_and_check(v: PropertyVerifierVisitor, prop: MMLocalProperty, has_redef: Bool, visibility_level: Int)
747 do
748 if prop.global.intro == prop then
749 do_and_check_intro(v, prop, has_redef, visibility_level)
750 else
751 do_and_check_redef(v, prop, has_redef, visibility_level)
752 end
753 end
754
755 # The part of process_and_check when prop is an introduction
756 private meth do_and_check_intro(v: PropertyVerifierVisitor, prop: MMLocalProperty, has_redef: Bool, visibility_level: Int)
757 do
758 var glob = prop.global
759 var gbc = prop.local_class.global
760 if v.local_class.global.visibility_level >= 3 then
761 # Method of private classes are private
762 visibility_level = 3
763 end
764 glob.visibility_level = visibility_level
765 if has_redef then
766 v.error(self, "Error: No property {prop.local_class}::{prop} is inherited. Remove the redef keyword to define a new property.")
767 end
768 if glob.is_attribute then
769 if gbc.is_interface then
770 v.error(self, "Error: Attempt to define attribute {prop} in the interface {prop.local_class}.")
771 else if gbc.is_universal then
772 v.error(self, "Error: Attempt to define attribute {prop} in the universal class {prop.local_class}.")
773 end
774 else if glob.is_init then
775 if gbc.is_interface then
776 v.error(self, "Error: Attempt to define a constructor {prop} in the class {prop.local_class}.")
777 else if gbc.is_universal then
778 v.error(self, "Error: Attempt to define a constructor {prop} in the universal {prop.local_class}.")
779 end
780 end
781 if prop.signature == null then
782 if glob.is_init then
783 var supers = prop.local_class.super_methods_named(prop.name)
784 inherit_signature(v, prop, supers)
785 end
786 if prop.signature != null then
787 # ok
788 else if not v.signature_builder.untyped_params.is_empty then
789 v.error(v.signature_builder.untyped_params.first, "Error: Untyped parameter.")
790 else
791 prop.signature = new MMSignature(new Array[MMType], null, v.local_class.get_type)
792 if v.signature_builder.closure_decls != null then
793 for clos in v.signature_builder.closure_decls do
794 prop.signature.closures.add(clos.variable.closure)
795 end
796 end
797 end
798 end
799 end
800
801 private meth inherit_signature(v: PropertyVerifierVisitor, prop: MMLocalProperty, supers: Array[MMLocalProperty])
802 do
803 var s = prop.signature
804 for ip in supers do
805 var isig = ip.signature.adaptation_to(v.local_class.get_type)
806
807 if s == null then
808 if v.signature_builder.params.length != isig.arity then
809 #prop.node.printl("v.params.length {v.params.length} != isig.arity {isig.arity} ; {prop.full_name} vs {ip.full_name}")
810 return
811 end
812 for p in v.signature_builder.params do
813 var t = isig[p.position]
814 p.stype = t
815 if p.position == isig.vararg_rank then
816 t = v.type_array(t)
817 end
818 p.variable.stype = t
819 end
820
821 s = isig
822 prop.signature = s
823 end
824 end
825 end
826
827 # The part of process_and_check when prop is a redefinition
828 private meth do_and_check_redef(v: PropertyVerifierVisitor, prop: MMLocalProperty, has_redef: Bool, visibility_level: Int)
829 do
830 var is_init = self isa AConcreteInitPropdef
831 var glob = prop.global
832
833 if not has_redef then
834 v.error(self, "Redef error: {prop.local_class}::{prop} is an inherited property. To redefine it, add the redef keyword.")
835 return
836 end
837 if glob.is_init and not is_init then
838 v.error(self, "Redef error: A method {prop.local_class}::{prop} cannot redefine a constructor.")
839 else if not glob.is_init and is_init then
840 v.error(self, "Redef error: A constructor {prop.local_class}::{prop} cannot redefine a method.")
841 end
842
843 var s = prop.signature
844 #print "process {prop.local_class.module}::{prop.local_class}::{prop} from global {prop.global.local_property.local_class.module}::{prop.global.local_property.local_class}::{prop.global.local_property}"
845 for i in prop.prhe.direct_greaters do
846 var ip = i.local_class[prop.global]
847 var isig = i.signature.adaptation_to(v.local_class.get_type)
848
849 if s == null then
850 #print "{prop.full_name} inherits signature from {ip.full_name}"
851 if v.signature_builder.params.length != isig.arity then
852 v.error(self, "Redef error: {prop.local_class}::{prop} redefines {ip.local_class}::{ip} with {isig.arity} parameter(s).")
853 return
854 end
855 if v.signature_builder.closure_decls.length != isig.closures.length then
856 v.error(self, "Redef error: {prop.local_class}::{prop} redefines {ip.local_class}::{ip} with {isig.arity} closure(s).")
857 return
858 end
859 for p in v.signature_builder.params do
860 var t = isig[p.position]
861 p.stype = t
862 if p.position == isig.vararg_rank then
863 t = v.type_array(t)
864 end
865 p.variable.stype = t
866 end
867 s = isig
868 prop.signature = s
869 #print "s is null"
870 end
871
872 var nberr = v.tc.error_count
873 #print "Check {prop.local_class}::{prop}{s} vs {ip.local_class}::{ip}{isig}"
874 #print "s={s.object_id} isig={isig.object_id} isigorig={i.signature.object_id}"
875
876 #print "orig signature: {i.signature.recv} . {i.signature}"
877 #print "inh signature: {isig.recv} . {isig}"
878 #print "redef signature: {s.recv} . {s}"
879
880 if s.arity != isig.arity then
881 v.error(self, "Redef error: {prop.local_class}::{prop} redefines {ip.local_class}::{ip} with {isig.arity} parameter(s).")
882 else
883 for i in [0..s.arity[ do
884 if s[i] != isig[i] then
885 v.error(self, "Redef error: Expected {isig[i]} (as in {ip.local_class}::{ip}), got {s[i]} in {prop.local_class}::{prop}.")
886 end
887 end
888 end
889
890 var srt = s.return_type
891 var isrt = isig.return_type
892 if srt == null and isrt != null then
893 v.error(self, "Redef error: The procedure {prop.local_class}::{prop} redefines the function {ip.local_class}::{ip}.")
894 else if srt != null and isrt == null then
895 v.error(self, "Redef error: The function {prop.local_class}::{prop} redefines the procedure {ip.local_class}::{ip}.")
896 else if srt != null and isrt != null and not srt < isrt then
897 v.error(self, "Redef error: Expected {isrt} (as in {ip.local_class}::{ip}), got {srt} in {prop.local_class}::{prop}.")
898 else if not s < isig and nberr == v.tc.error_count then
899 # Systematic fallback for conformance check
900 v.error(self, "Redef error: Incompatible redefinition of {ip.local_class}::{ip} with {prop.local_class}::{prop}")
901 else if srt != null and isrt != null and srt != isrt and prop isa MMAttribute then
902 # FIXME: To remove
903 v.warning(self, "Redef warning: Expected {isrt} (as in {ip.local_class}::{ip}), got {srt} in {prop.local_class}::{prop}.")
904 end
905 end
906
907 if visibility_level != 1 and glob.visibility_level != visibility_level then
908 v.error(self, "Redef error: {prop.local_class}::{prop} redefinition cannot change visibility.")
909 end
910 glob.check_visibility(v, self, v.module, true)
911 end
912 end
913
914 redef class AAttrPropdef
915 redef readable attr _readmethod: MMSrcMethod
916 redef readable attr _writemethod: MMSrcMethod
917 redef readable attr _prop: MMSrcAttribute
918
919 redef meth accept_property_builder(v)
920 do
921 super
922 var name = n_id.to_symbol
923 var prop = new MMSrcAttribute(name, v.local_class, self)
924 _prop = prop
925 v.local_class.add_src_local_property(v, prop)
926
927 if n_readable != null then
928 name = n_id.text.substring_from(1).to_symbol
929 _readmethod = new MMReadImplementationMethod(name, v.local_class, self)
930 v.local_class.add_src_local_property(v, _readmethod)
931 end
932 if n_writable != null then
933 name = (n_id.text.substring_from(1) + "=").to_symbol
934 _writemethod = new MMWriteImplementationMethod(name, v.local_class, self)
935 v.local_class.add_src_local_property(v, _writemethod)
936 end
937 end
938
939 redef meth accept_property_verifier(v)
940 do
941 super
942 var t: MMType
943 if n_type != null then
944 t = n_type.get_stype(v)
945 else
946 v.error(self, "Not yet implemented: Attribute definition {_prop.local_class}::{_prop} requires an explicit type.")
947 return
948 end
949
950 var signature = new MMSignature(new Array[MMType], t, v.local_class.get_type)
951 _prop.signature = signature
952 var visibility_level = n_visibility.level
953 process_and_check(v, _prop, n_kwredef != null, visibility_level)
954 if n_readable != null then
955 _readmethod.signature = signature
956 process_and_check(v, _readmethod, n_readable.n_kwredef != null, visibility_level)
957 n_type.check_visibility(v, _readmethod)
958 end
959 if n_writable != null then
960 _writemethod.signature = new MMSignature(new Array[MMType].with_items(t), null, v.local_class.get_type)
961 process_and_check(v, _writemethod, n_writable.n_kwredef != null, visibility_level)
962 n_type.check_visibility(v, _writemethod)
963 end
964 end
965
966 redef meth accept_abs_syntax_visitor(v)
967 do
968 v.local_property = prop
969 super
970 v.local_property = null
971 end
972 end
973
974 redef class AMethPropdef
975 # Name of the method
976 readable attr _name: Symbol
977
978 redef readable attr _method: MMMethSrcMethod
979
980 redef meth accept_property_builder(v)
981 do
982 super
983 if n_methid == null then
984 if self isa AConcreteInitPropdef then
985 _name = once "init".to_symbol
986 else
987 _name = once "main".to_symbol
988 end
989 else
990 _name = n_methid.name
991 # FIXME: Add the 'unary' keyword
992 if n_methid.name == (once "-".to_symbol) then
993 var ns = n_signature
994 if ns isa ASignature and ns.n_params.length == 0 then
995 _name = once "unary -".to_symbol
996 end
997 end
998 end
999 var prop = new MMMethSrcMethod(_name, v.local_class, self)
1000 _method = prop
1001 v.local_class.add_src_local_property(v, prop)
1002 end
1003
1004 redef meth accept_property_verifier(v)
1005 do
1006 v.signature_builder = new SignatureBuilder
1007 super
1008
1009 if v.signature_builder.signature == null then
1010 #_method.signature = new MMSignature(new Array[MMType], null, v.local_class.get_type)
1011 else
1012 _method.signature = v.signature_builder.signature
1013 end
1014 var visibility_level = 1
1015 if n_visibility != null and n_visibility.level > 1 then
1016 visibility_level = n_visibility.level
1017 end
1018 process_and_check(v, _method, n_kwredef != null, visibility_level)
1019 if n_signature != null then n_signature.check_visibility(v, _method)
1020 end
1021
1022 redef meth accept_abs_syntax_visitor(v)
1023 do
1024 v.local_property = method
1025 super
1026 v.local_property = null
1027 end
1028 end
1029
1030 redef class AMainMethPropdef
1031 redef meth process_and_check(v, prop, has_redef, visibility_level)
1032 do
1033 prop.global.visibility_level = visibility_level
1034 prop.signature = new MMSignature(new Array[MMType], null, v.local_class.get_type)
1035 # Disable all checks for main
1036 end
1037 end
1038
1039 redef class ATypePropdef
1040 redef readable attr _prop: MMSrcTypeProperty
1041
1042 redef meth accept_property_builder(v)
1043 do
1044 super
1045 var name = n_id.to_symbol
1046 var prop = new MMSrcTypeProperty(name, v.local_class, self)
1047 _prop = prop
1048 v.local_class.add_src_local_property(v, prop)
1049 end
1050
1051 redef meth accept_property_verifier(v)
1052 do
1053 super
1054 var signature = new MMSignature(new Array[MMType], n_type.get_stype(v), v.local_class.get_type)
1055 _prop.signature = signature
1056 var visibility_level = n_visibility.level
1057 process_and_check(v, _prop, n_kwredef != null, visibility_level)
1058 end
1059
1060 redef meth accept_abs_syntax_visitor(v)
1061 do
1062 v.local_property = prop
1063 super
1064 v.local_property = null
1065 end
1066 end
1067
1068 # Visitor used to build a full method name from multiple tokens
1069 private class MethidAccumulator
1070 special Visitor
1071 readable attr _name: Buffer = new Buffer
1072 redef meth visit(n)
1073 do
1074 if n isa Token then
1075 _name.append(n.text)
1076 else
1077 n.visit_all(self)
1078 end
1079 end
1080 end
1081
1082 redef class PMethid
1083 # Method name
1084 readable attr _name: Symbol
1085
1086 redef meth accept_property_builder(v)
1087 do
1088 var accumulator = new MethidAccumulator
1089 accumulator.visit(self)
1090 _name = accumulator.name.to_s.to_symbol
1091 super
1092 end
1093 end
1094
1095 redef class PSignature
1096 # Check that visibilities of types in the signature are compatible with the visibility of the property.
1097 meth check_visibility(v: AbsSyntaxVisitor, p: MMLocalProperty) is abstract
1098 end
1099
1100 redef class ASignature
1101 redef meth accept_property_verifier(v)
1102 do
1103 super
1104 if not v.signature_builder.untyped_params.is_empty then
1105 if v.signature_builder.untyped_params.first != v.signature_builder.params.first or n_type != null then
1106 v.error(v.signature_builder.untyped_params.first, "Syntax error: untyped parameter.")
1107 return
1108 end
1109 else if not v.signature_builder.params.is_empty or n_type != null then
1110 var pars = new Array[MMType]
1111 for p in v.signature_builder.params do
1112 pars.add(p.stype)
1113 end
1114 var ret: MMType = null
1115 if n_type != null then
1116 ret = n_type.get_stype(v)
1117 end
1118 v.signature_builder.signature = new MMSignature(pars, ret, v.local_class.get_type)
1119 if v.signature_builder.vararg_rank >= 0 then
1120 v.signature_builder.signature.vararg_rank = v.signature_builder.vararg_rank
1121 end
1122 for clos in v.signature_builder.closure_decls do
1123 v.signature_builder.signature.closures.add(clos.variable.closure)
1124 end
1125 end
1126 end
1127
1128 redef meth check_visibility(v, p)
1129 do
1130 if p.global.visibility_level >= 3 then return
1131 for n in n_params do
1132 if n.n_type != null then n.n_type.check_visibility(v, p)
1133 end
1134 if n_type != null then n_type.check_visibility(v, p)
1135 end
1136 end
1137
1138 redef class PParam
1139 redef readable attr _position: Int
1140
1141 redef readable attr _variable: ParamVariable
1142
1143 # The type of the parameter in signature
1144 readable writable attr _stype: MMType
1145
1146 redef meth accept_property_verifier(v)
1147 do
1148 super
1149 _position = v.signature_builder.params.length
1150 _variable = new ParamVariable(n_id.to_symbol, self)
1151 v.signature_builder.params.add(self)
1152 v.signature_builder.untyped_params.add(self)
1153 if n_type != null then
1154 var stype = n_type.get_stype(v)
1155 for p in v.signature_builder.untyped_params do
1156 p.stype = stype
1157 if is_vararg then
1158 if v.signature_builder.vararg_rank == -1 then
1159 v.signature_builder.vararg_rank = p.position
1160 else
1161 v.error(self, "Error: A vararg parameter is already defined.")
1162 end
1163 stype = v.type_array(stype)
1164 end
1165 p.variable.stype = stype
1166 end
1167 v.signature_builder.untyped_params.clear
1168 end
1169 end
1170
1171 meth is_vararg: Bool is abstract
1172 end
1173
1174 redef class AParam
1175 redef meth is_vararg do return n_dotdotdot != null
1176 end
1177
1178 redef class AClosureDecl
1179 redef readable attr _variable: ClosureVariable
1180
1181 redef meth accept_property_verifier(v)
1182 do
1183 var old_signature_builder = v.signature_builder
1184 v.signature_builder = new SignatureBuilder
1185 super
1186 var sig = v.signature_builder.signature
1187 if sig == null then
1188 sig = new MMSignature(new Array[MMType], null, v.local_class.get_type)
1189 end
1190 if sig.return_type != null and n_kwbreak != null then
1191 v.error(self, "Syntax Error: A break block cannot have a return value.")
1192 end
1193
1194 # Add the finalizer to the closure signature
1195 var finalize_sig = new MMSignature(new Array[MMType], null, null)
1196 var finalizer_clos = new MMClosure(finalize_sig, false, true)
1197 sig.closures.add(finalizer_clos)
1198
1199 var clos = new MMClosure(sig, n_kwbreak != null, n_expr != null)
1200 v.signature_builder = old_signature_builder
1201 old_signature_builder.closure_decls.add(self)
1202 _variable = new ClosureVariable(n_id.to_symbol, self, clos)
1203 end
1204 end
1205
1206 redef class PType
1207 # Check that visibilities of types in the signature are compatible with the visibility of the property.
1208 private meth check_visibility(v: AbsSyntaxVisitor, p: MMLocalProperty) is abstract
1209 end
1210
1211 redef class AType
1212 redef meth check_visibility(v, p)
1213 do
1214 if p.global.visibility_level >= 3 then return
1215 var t = get_stype(v)
1216 if t == null then return
1217 var bc = t.local_class
1218 if bc == null then return
1219 if bc.global.visibility_level >= 3 then
1220 v.error(self, "Access error: Class {bc} is private and cannot be used in the signature of the non-private property {p}.")
1221 end
1222 for n in n_types do
1223 n.check_visibility(v, p)
1224 end
1225 end
1226 end
1227
1228 redef class PExpr
1229 redef meth accept_class_builder(v) do end
1230 redef meth accept_property_builder(v) do end
1231 redef meth accept_property_verifier(v) do end
1232 end