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