loader: load `core` by default
[nit.git] / src / loader.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 # Loading of Nit source files
18 module loader
19
20 import modelbuilder_base
21 import ini
22
23 redef class ToolContext
24 # Option --path
25 var opt_path = new OptionArray("Set include path for loaders (may be used more than once)", "-I", "--path")
26
27 # Option --only-metamodel
28 var opt_only_metamodel = new OptionBool("Stop after meta-model processing", "--only-metamodel")
29
30 # Option --only-parse
31 var opt_only_parse = new OptionBool("Only proceed to parse step of loaders", "--only-parse")
32
33 redef init
34 do
35 super
36 option_context.add_option(opt_path, opt_only_parse, opt_only_metamodel)
37 end
38 end
39
40 redef class ModelBuilder
41 redef init
42 do
43 super
44
45 # Setup the paths value
46 paths.append(toolcontext.opt_path.value)
47
48 var path_env = "NIT_PATH".environ
49 if not path_env.is_empty then
50 paths.append(path_env.split_with(':'))
51 end
52
53 var nit_dir = toolcontext.nit_dir
54 var libname = nit_dir/"lib"
55 if libname.file_exists then paths.add(libname)
56 libname = nit_dir/"contrib"
57 if libname.file_exists then paths.add(libname)
58 end
59
60 # Load a bunch of modules.
61 # `modules` can contains filenames or module names.
62 # Imported modules are automatically loaded and modelized.
63 # The result is the corresponding model elements.
64 # Errors and warnings are printed with the toolcontext.
65 #
66 # Note: class and property model elements are not analysed.
67 fun parse(modules: Sequence[String]): Array[MModule]
68 do
69 var time0 = get_time
70 # Parse and recursively load
71 self.toolcontext.info("*** PARSE ***", 1)
72 var mmodules = new ArraySet[MModule]
73 for a in modules do
74 var nmodule = self.load_module(a)
75 if nmodule == null then continue # Skip error
76 # Load imported module
77 build_module_importation(nmodule)
78 var mmodule = nmodule.mmodule
79 if mmodule == null then continue # skip error
80 mmodules.add mmodule
81 end
82 var time1 = get_time
83 self.toolcontext.info("*** END PARSE: {time1-time0} ***", 2)
84
85 self.toolcontext.check_errors
86
87 if toolcontext.opt_only_parse.value then
88 self.toolcontext.info("*** ONLY PARSE...", 1)
89 exit(0)
90 end
91
92 return mmodules.to_a
93 end
94
95 # Load recursively all modules of the group `mgroup`.
96 # See `parse` for details.
97 fun parse_group(mgroup: MGroup): Array[MModule]
98 do
99 var res = new Array[MModule]
100 scan_group(mgroup)
101 for mg in mgroup.in_nesting.smallers do
102 for mp in mg.module_paths do
103 var nmodule = self.load_module(mp.filepath)
104 if nmodule == null then continue # Skip error
105 # Load imported module
106 build_module_importation(nmodule)
107 var mmodule = nmodule.mmodule
108 if mmodule == null then continue # Skip error
109 res.add mmodule
110 end
111 end
112 return res
113 end
114
115 # Load a bunch of modules and groups.
116 #
117 # Each name can be:
118 #
119 # * a path to a module, a group or a directory of projects.
120 # * a short name of a module or a group that are looked in the `paths` (-I)
121 #
122 # Then, for each entry, if it is:
123 #
124 # * a module, then is it parser and returned.
125 # * a group then recursively all its modules are parsed.
126 # * a directory of projects then all the modules of all projects are parsed.
127 # * else an error is displayed.
128 #
129 # See `parse` for details.
130 fun parse_full(names: Sequence[String]): Array[MModule]
131 do
132 var time0 = get_time
133 # Parse and recursively load
134 self.toolcontext.info("*** PARSE ***", 1)
135 var mmodules = new ArraySet[MModule]
136 for a in names do
137 # Case of a group
138 var mgroup = self.get_mgroup(a)
139 if mgroup != null then
140 mmodules.add_all parse_group(mgroup)
141 continue
142 end
143
144 # Case of a directory that is not a group
145 var stat = a.to_path.stat
146 if stat != null and stat.is_dir then
147 self.toolcontext.info("look in directory {a}", 2)
148 var fs = a.files
149 # Try each entry as a group or a module
150 for f in fs do
151 var af = a/f
152 mgroup = get_mgroup(af)
153 if mgroup != null then
154 mmodules.add_all parse_group(mgroup)
155 continue
156 end
157 var mp = identify_file(af)
158 if mp != null then
159 var nmodule = self.load_module(af)
160 if nmodule == null then continue # Skip error
161 build_module_importation(nmodule)
162 var mmodule = nmodule.mmodule
163 if mmodule == null then continue # Skip error
164 mmodules.add mmodule
165 else
166 self.toolcontext.info("ignore file {af}", 2)
167 end
168 end
169 continue
170 end
171
172 var nmodule = self.load_module(a)
173 if nmodule == null then continue # Skip error
174 # Load imported module
175 build_module_importation(nmodule)
176 var mmodule = nmodule.mmodule
177 if mmodule == null then continue # Skip error
178 mmodules.add mmodule
179 end
180 var time1 = get_time
181 self.toolcontext.info("*** END PARSE: {time1-time0} ***", 2)
182
183 self.toolcontext.check_errors
184
185 if toolcontext.opt_only_parse.value then
186 self.toolcontext.info("*** ONLY PARSE...", 1)
187 exit(0)
188 end
189
190 return mmodules.to_a
191 end
192
193 # The list of directories to search for top level modules
194 # The list is initially set with:
195 #
196 # * the toolcontext --path option
197 # * the NIT_PATH environment variable
198 # * `toolcontext.nit_dir`
199 # Path can be added (or removed) by the client
200 var paths = new Array[String]
201
202 # Like (and used by) `get_mmodule_by_name` but just return the ModulePath
203 fun search_mmodule_by_name(anode: nullable ANode, mgroup: nullable MGroup, name: String): nullable ModulePath
204 do
205 # First, look in groups
206 var c = mgroup
207 if c != null then
208 var r = c.mproject.root
209 assert r != null
210 scan_group(r)
211 var res = r.mmodule_paths_by_name(name)
212 if res.not_empty then return res.first
213 end
214
215 # Look at some known directories
216 var lookpaths = self.paths
217
218 # Look in the directory of the group project also (even if not explicitly in the path)
219 if mgroup != null then
220 # path of the root group
221 var dirname = mgroup.mproject.root.filepath
222 if dirname != null then
223 dirname = dirname.join_path("..").simplify_path
224 if not lookpaths.has(dirname) and dirname.file_exists then
225 lookpaths = lookpaths.to_a
226 lookpaths.add(dirname)
227 end
228 end
229 end
230
231 var candidate = search_module_in_paths(anode.hot_location, name, lookpaths)
232
233 if candidate == null then
234 if mgroup != null then
235 error(anode, "Error: cannot find module `{name}` from `{mgroup.name}`. Tried: {lookpaths.join(", ")}.")
236 else
237 error(anode, "Error: cannot find module `{name}`. Tried: {lookpaths.join(", ")}.")
238 end
239 return null
240 end
241 return candidate
242 end
243
244 # Get a module by its short name; if required, the module is loaded, parsed and its hierarchies computed.
245 # If `mgroup` is set, then the module search starts from it up to the top level (see `paths`);
246 # if `mgroup` is null then the module is searched in the top level only.
247 # If no module exists or there is a name conflict, then an error on `anode` is displayed and null is returned.
248 fun get_mmodule_by_name(anode: nullable ANode, mgroup: nullable MGroup, name: String): nullable MModule
249 do
250 var path = search_mmodule_by_name(anode, mgroup, name)
251 if path == null then return null # Forward error
252 return load_module_path(path)
253 end
254
255 # Load and process importation of a given ModulePath.
256 #
257 # Basically chains `load_module` and `build_module_importation`.
258 fun load_module_path(path: ModulePath): nullable MModule
259 do
260 var res = self.load_module(path.filepath)
261 if res == null then return null # Forward error
262 # Load imported module
263 build_module_importation(res)
264 return res.mmodule
265 end
266
267 # Search a module `name` from path `lookpaths`.
268 # If found, the path of the file is returned
269 private fun search_module_in_paths(location: nullable Location, name: String, lookpaths: Collection[String]): nullable ModulePath
270 do
271 var res = new ArraySet[ModulePath]
272 for dirname in lookpaths do
273 # Try a single module file
274 var mp = identify_file((dirname/"{name}.nit").simplify_path)
275 if mp != null then res.add mp
276 # Try the default module of a group
277 var g = get_mgroup((dirname/name).simplify_path)
278 if g != null then
279 scan_group(g)
280 res.add_all g.mmodule_paths_by_name(name)
281 end
282 end
283 if res.is_empty then return null
284 if res.length > 1 then
285 toolcontext.error(location, "Error: conflicting module files for `{name}`: `{res.join(",")}`")
286 end
287 return res.first
288 end
289
290 # Cache for `identify_file` by realpath
291 private var identified_files_by_path = new HashMap[String, nullable ModulePath]
292
293 # All the currently identified modules.
294 # See `identify_file`.
295 var identified_files = new Array[ModulePath]
296
297 # Identify a source file and load the associated project and groups if required.
298 #
299 # This method does what the user expects when giving an argument to a Nit tool.
300 #
301 # * If `path` is an existing Nit source file (with the `.nit` extension),
302 # then the associated ModulePath is returned
303 # * If `path` is a directory (with a `/`),
304 # then the ModulePath of its default module is returned (if any)
305 # * If `path` is a simple identifier (eg. `digraph`),
306 # then the main module of the project `digraph` is searched in `paths` and returned.
307 #
308 # Silently return `null` if `path` does not exists or cannot be identified.
309 fun identify_file(path: String): nullable ModulePath
310 do
311 # special case for not a nit file
312 if path.file_extension != "nit" then
313 # search dirless files in known -I paths
314 if not path.chars.has('/') then
315 var res = search_module_in_paths(null, path, self.paths)
316 if res != null then return res
317 end
318
319 # Found nothing? maybe it is a group...
320 var candidate = null
321 if path.file_exists then
322 var mgroup = get_mgroup(path)
323 if mgroup != null then
324 var owner_path = mgroup.filepath.join_path(mgroup.name + ".nit")
325 if owner_path.file_exists then candidate = owner_path
326 end
327 end
328
329 if candidate == null then
330 return null
331 end
332 path = candidate
333 end
334
335 # Does the file exists?
336 if not path.file_exists then
337 return null
338 end
339
340 # Fast track, the path is already known
341 var pn = path.basename(".nit")
342 var rp = module_absolute_path(path)
343 if identified_files_by_path.has_key(rp) then return identified_files_by_path[rp]
344
345 # Search for a group
346 var mgrouppath = path.join_path("..").simplify_path
347 var mgroup = get_mgroup(mgrouppath)
348
349 if mgroup == null then
350 # singleton project
351 var mproject = new MProject(pn, model)
352 mgroup = new MGroup(pn, mproject, null) # same name for the root group
353 mgroup.filepath = path
354 mproject.root = mgroup
355 toolcontext.info("found singleton project `{pn}` at {path}", 2)
356 end
357
358 var res = new ModulePath(pn, path, mgroup)
359 mgroup.module_paths.add(res)
360
361 identified_files_by_path[rp] = res
362 identified_files.add(res)
363 return res
364 end
365
366 # Groups by path
367 private var mgroups = new HashMap[String, nullable MGroup]
368
369 # Return the mgroup associated to a directory path.
370 # If the directory is not a group null is returned.
371 #
372 # Note: `paths` is also used to look for mgroups
373 fun get_mgroup(dirpath: String): nullable MGroup
374 do
375 if not dirpath.file_exists then do
376 for p in paths do
377 var try = p / dirpath
378 if try.file_exists then
379 dirpath = try
380 break label
381 end
382 end
383 return null
384 end label
385
386 var rdp = module_absolute_path(dirpath)
387 if mgroups.has_key(rdp) then
388 return mgroups[rdp]
389 end
390
391 # Filter out non-directories
392 var stat = dirpath.file_stat
393 if stat == null or not stat.is_dir then
394 mgroups[rdp] = null
395 return null
396 end
397
398 # By default, the name of the project or group is the base_name of the directory
399 var pn = rdp.basename(".nit")
400
401 # Check `project.ini` that indicate a project
402 var ini = null
403 var parent = null
404 var inipath = dirpath / "project.ini"
405 if inipath.file_exists then
406 ini = new ConfigTree(inipath)
407 end
408
409 if ini == null then
410 # No ini, multiple course of action
411
412 # The root of the directory hierarchy in the file system.
413 if rdp == "/" then
414 mgroups[rdp] = null
415 return null
416 end
417
418 # Special stopper `projects.ini`
419 if (dirpath/"projects.ini").file_exists then
420 # dirpath cannot be a project since it is a project directory
421 mgroups[rdp] = null
422 return null
423 end
424
425 # check the parent directory (if it does not contain the stopper file)
426 var parentpath = dirpath.join_path("..").simplify_path
427 var stopper = parentpath / "projects.ini"
428 if not stopper.file_exists then
429 # Recursively get the parent group
430 parent = get_mgroup(parentpath)
431 if parent == null then
432 # Parent is not a group, thus we are not a group either
433 mgroups[rdp] = null
434 return null
435 end
436 end
437 end
438
439 var mgroup
440 if parent == null then
441 # no parent, thus new project
442 if ini != null and ini.has_key("name") then pn = ini["name"]
443 var mproject = new MProject(pn, model)
444 mgroup = new MGroup(pn, mproject, null) # same name for the root group
445 mproject.root = mgroup
446 toolcontext.info("found project `{mproject}` at {dirpath}", 2)
447 mproject.ini = ini
448 else
449 mgroup = new MGroup(pn, parent.mproject, parent)
450 toolcontext.info("found sub group `{mgroup.full_name}` at {dirpath}", 2)
451 end
452
453 # search documentation
454 # in src first so the documentation of the project code can be distinct for the documentation of the project usage
455 var readme = dirpath.join_path("README.md")
456 if not readme.file_exists then readme = dirpath.join_path("README")
457 if readme.file_exists then
458 var mdoc = load_markdown(readme)
459 mgroup.mdoc = mdoc
460 mdoc.original_mentity = mgroup
461 end
462
463 mgroup.filepath = dirpath
464 mgroups[rdp] = mgroup
465 return mgroup
466 end
467
468 # Load a markdown file as a documentation object
469 fun load_markdown(filepath: String): MDoc
470 do
471 var s = new FileReader.open(filepath)
472 var lines = new Array[String]
473 var line_starts = new Array[Int]
474 var len = 1
475 while not s.eof do
476 var line = s.read_line
477 lines.add(line)
478 line_starts.add(len)
479 len += line.length + 1
480 end
481 s.close
482 var source = new SourceFile.from_string(filepath, lines.join("\n"))
483 source.line_starts.add_all line_starts
484 var mdoc = new MDoc(new Location(source, 1, lines.length, 0, 0))
485 mdoc.content.add_all(lines)
486 return mdoc
487 end
488
489 # Force the identification of all ModulePath of the group and sub-groups in the file system.
490 #
491 # When a group is scanned, its sub-groups hierarchy is filled (see `MGroup::in_nesting`)
492 # and the potential modules (and nested modules) are identified (see `MGroup::module_paths`).
493 #
494 # Basically, this recursively call `get_mgroup` and `identify_file` on each directory entry.
495 #
496 # No-op if the group was already scanned (see `MGroup::scanned`).
497 fun scan_group(mgroup: MGroup) do
498 if mgroup.scanned then return
499 mgroup.scanned = true
500 var p = mgroup.filepath
501 # a virtual group has nothing to scan
502 if p == null then return
503 for f in p.files do
504 var fp = p/f
505 var g = get_mgroup(fp)
506 # Recursively scan for groups of the same project
507 if g != null and g.mproject == mgroup.mproject then
508 scan_group(g)
509 end
510 identify_file(fp)
511 end
512 end
513
514 # Transform relative paths (starting with '../') into absolute paths
515 private fun module_absolute_path(path: String): String do
516 return getcwd.join_path(path).simplify_path
517 end
518
519 # Try to load a module AST using a path.
520 # Display an error if there is a problem (IO / lexer / parser) and return null
521 fun load_module_ast(filename: String): nullable AModule
522 do
523 if filename.file_extension != "nit" then
524 self.toolcontext.error(null, "Error: file `{filename}` is not a valid nit module.")
525 return null
526 end
527 if not filename.file_exists then
528 self.toolcontext.error(null, "Error: file `{filename}` not found.")
529 return null
530 end
531
532 self.toolcontext.info("load module {filename}", 2)
533
534 # Load the file
535 var file = new FileReader.open(filename)
536 var lexer = new Lexer(new SourceFile(filename, file))
537 var parser = new Parser(lexer)
538 var tree = parser.parse
539 file.close
540
541 # Handle lexer and parser error
542 var nmodule = tree.n_base
543 if nmodule == null then
544 var neof = tree.n_eof
545 assert neof isa AError
546 error(neof, neof.message)
547 return null
548 end
549
550 return nmodule
551 end
552
553 # Remove Nit source files from a list of arguments.
554 #
555 # Items of `args` that can be loaded as a nit file will be removed from `args` and returned.
556 fun filter_nit_source(args: Array[String]): Array[String]
557 do
558 var keep = new Array[String]
559 var res = new Array[String]
560 for a in args do
561 var l = identify_file(a)
562 if l == null then
563 keep.add a
564 else
565 res.add a
566 end
567 end
568 args.clear
569 args.add_all(keep)
570 return res
571 end
572
573 # Try to load a module using a path.
574 # Display an error if there is a problem (IO / lexer / parser) and return null.
575 # Note: usually, you do not need this method, use `get_mmodule_by_name` instead.
576 #
577 # The MModule is created however, the importation is not performed,
578 # therefore you should call `build_module_importation`.
579 fun load_module(filename: String): nullable AModule
580 do
581 # Look for the module
582 var file = identify_file(filename)
583 if file == null then
584 if filename.file_exists then
585 toolcontext.error(null, "Error: `{filename}` is not a Nit source file.")
586 else
587 toolcontext.error(null, "Error: cannot find module `{filename}`.")
588 end
589 return null
590 end
591
592 # Already known and loaded? then return it
593 var mmodule = file.mmodule
594 if mmodule != null then
595 return mmodule2nmodule[mmodule]
596 end
597
598 # Load it manually
599 var nmodule = load_module_ast(file.filepath)
600 if nmodule == null then return null # forward error
601
602 # build the mmodule and load imported modules
603 mmodule = build_a_mmodule(file.mgroup, file.name, nmodule)
604
605 if mmodule == null then return null # forward error
606
607 # Update the file information
608 file.mmodule = mmodule
609
610 return nmodule
611 end
612
613 # Injection of a new module without source.
614 # Used by the interpreter.
615 fun load_rt_module(parent: nullable MModule, nmodule: AModule, mod_name: String): nullable AModule
616 do
617 # Create the module
618
619 var mgroup = null
620 if parent != null then mgroup = parent.mgroup
621 var mmodule = new MModule(model, mgroup, mod_name, nmodule.location)
622 nmodule.mmodule = mmodule
623 nmodules.add(nmodule)
624 self.mmodule2nmodule[mmodule] = nmodule
625
626 if parent!= null then
627 var imported_modules = new Array[MModule]
628 imported_modules.add(parent)
629 mmodule.set_visibility_for(parent, intrude_visibility)
630 mmodule.set_imported_mmodules(imported_modules)
631 else
632 build_module_importation(nmodule)
633 end
634
635 return nmodule
636 end
637
638 # Visit the AST and create the `MModule` object
639 private fun build_a_mmodule(mgroup: nullable MGroup, mod_name: String, nmodule: AModule): nullable MModule
640 do
641 # Check the module name
642 var decl = nmodule.n_moduledecl
643 if decl != null then
644 var decl_name = decl.n_name.n_id.text
645 if decl_name != mod_name then
646 error(decl.n_name, "Error: module name mismatch; declared {decl_name} file named {mod_name}.")
647 end
648 end
649
650 # Check for conflicting module names in the project
651 if mgroup != null then
652 var others = model.get_mmodules_by_name(mod_name)
653 if others != null then for other in others do
654 if other.mgroup!= null and other.mgroup.mproject == mgroup.mproject then
655 var node: ANode
656 if decl == null then node = nmodule else node = decl.n_name
657 error(node, "Error: a module named `{other.full_name}` already exists at {other.location}.")
658 break
659 end
660 end
661 end
662
663 # Create the module
664 var mmodule = new MModule(model, mgroup, mod_name, nmodule.location)
665 nmodule.mmodule = mmodule
666 nmodules.add(nmodule)
667 self.mmodule2nmodule[mmodule] = nmodule
668
669 var source = nmodule.location.file
670 if source != null then
671 assert source.mmodule == null
672 source.mmodule = mmodule
673 end
674
675 if decl != null then
676 # Extract documentation
677 var ndoc = decl.n_doc
678 if ndoc != null then
679 var mdoc = ndoc.to_mdoc
680 mmodule.mdoc = mdoc
681 mdoc.original_mentity = mmodule
682 else
683 advice(decl, "missing-doc", "Documentation warning: Undocumented module `{mmodule}`")
684 end
685 # Is the module a test suite?
686 mmodule.is_test_suite = not decl.get_annotations("test_suite").is_empty
687 end
688
689 return mmodule
690 end
691
692 # Resolve the module identification for a given `AModuleName`.
693 #
694 # This method handles qualified names as used in `AModuleName`.
695 fun seach_module_by_amodule_name(n_name: AModuleName, mgroup: nullable MGroup): nullable ModulePath
696 do
697 if n_name.n_quad != null then mgroup = null # Start from top level
698 for grp in n_name.n_path do
699 var path = search_mmodule_by_name(grp, mgroup, grp.text)
700 if path == null then return null # Forward error
701 mgroup = path.mgroup
702 end
703 var mod_name = n_name.n_id.text
704 return search_mmodule_by_name(n_name, mgroup, mod_name)
705 end
706
707 # Analyze the module importation and fill the module_importation_hierarchy
708 #
709 # Unless you used `load_module`, the importation is already done and this method does a no-op.
710 fun build_module_importation(nmodule: AModule)
711 do
712 if nmodule.is_importation_done then return
713 nmodule.is_importation_done = true
714 var mmodule = nmodule.mmodule.as(not null)
715 var stdimport = true
716 var imported_modules = new Array[MModule]
717 for aimport in nmodule.n_imports do
718 # Do not imports conditional
719 var atconditionals = aimport.get_annotations("conditional")
720 if atconditionals.not_empty then continue
721
722 stdimport = false
723 if not aimport isa AStdImport then
724 continue
725 end
726
727 # Load the imported module
728 var suppath = seach_module_by_amodule_name(aimport.n_name, mmodule.mgroup)
729 if suppath == null then
730 nmodule.mmodule = null # invalidate the module
731 continue # Skip error
732 end
733 var sup = load_module_path(suppath)
734 if sup == null then
735 nmodule.mmodule = null # invalidate the module
736 continue # Skip error
737 end
738
739 aimport.mmodule = sup
740 imported_modules.add(sup)
741 var mvisibility = aimport.n_visibility.mvisibility
742 if mvisibility == protected_visibility then
743 error(aimport.n_visibility, "Error: only properties can be protected.")
744 nmodule.mmodule = null # invalidate the module
745 return
746 end
747 if sup == mmodule then
748 error(aimport.n_name, "Error: dependency loop in module {mmodule}.")
749 nmodule.mmodule = null # invalidate the module
750 end
751 if sup.in_importation < mmodule then
752 error(aimport.n_name, "Error: dependency loop between modules {mmodule} and {sup}.")
753 nmodule.mmodule = null # invalidate the module
754 return
755 end
756 mmodule.set_visibility_for(sup, mvisibility)
757 end
758 if stdimport then
759 var mod_name = "core"
760 var sup = self.get_mmodule_by_name(nmodule, null, mod_name)
761 if sup == null then
762 nmodule.mmodule = null # invalidate the module
763 else # Skip error
764 imported_modules.add(sup)
765 mmodule.set_visibility_for(sup, public_visibility)
766 end
767 end
768
769 # Declare conditional importation
770 for aimport in nmodule.n_imports do
771 if not aimport isa AStdImport then continue
772 var atconditionals = aimport.get_annotations("conditional")
773 if atconditionals.is_empty then continue
774
775 var suppath = seach_module_by_amodule_name(aimport.n_name, mmodule.mgroup)
776 if suppath == null then continue # skip error
777
778 for atconditional in atconditionals do
779 var nargs = atconditional.n_args
780 if nargs.is_empty then
781 error(atconditional, "Syntax Error: `conditional` expects module identifiers as arguments.")
782 continue
783 end
784
785 # The rule
786 var rule = new Array[Object]
787
788 # First element is the goal, thus
789 rule.add suppath
790
791 # Second element is the first condition, that is to be a client of the current module
792 rule.add mmodule
793
794 # Other condition are to be also a client of each modules indicated as arguments of the annotation
795 for narg in nargs do
796 var id = narg.as_id
797 if id == null then
798 error(narg, "Syntax Error: `conditional` expects module identifier as arguments.")
799 continue
800 end
801
802 var mp = search_mmodule_by_name(narg, mmodule.mgroup, id)
803 if mp == null then continue
804
805 rule.add mp
806 end
807
808 conditional_importations.add rule
809 end
810 end
811
812 mmodule.set_imported_mmodules(imported_modules)
813
814 apply_conditional_importations(mmodule)
815
816 self.toolcontext.info("{mmodule} imports {mmodule.in_importation.direct_greaters.join(", ")}", 3)
817
818 # Force `core` to be public if imported
819 for sup in mmodule.in_importation.greaters do
820 if sup.name == "core" then
821 mmodule.set_visibility_for(sup, public_visibility)
822 end
823 end
824
825 # TODO: Correctly check for useless importation
826 # It is even doable?
827 var directs = mmodule.in_importation.direct_greaters
828 for nim in nmodule.n_imports do
829 if not nim isa AStdImport then continue
830 var im = nim.mmodule
831 if im == null then continue
832 if directs.has(im) then continue
833 # This generates so much noise that it is simpler to just comment it
834 #warning(nim, "Warning: possible useless importation of {im}")
835 end
836 end
837
838 # Global list of conditional importation rules.
839 #
840 # Each rule is a "Horn clause"-like sequence of modules.
841 # It means that the first module is the module to automatically import.
842 # The remaining modules are the conditions of the rule.
843 #
844 # Each module is either represented by a MModule (if the module is already loaded)
845 # or by a ModulePath (if the module is not yet loaded).
846 #
847 # Rules are declared by `build_module_importation` and are applied by `apply_conditional_importations`
848 # (and `build_module_importation` that calls it).
849 #
850 # TODO (when the loader will be rewritten): use a better representation and move up rules in the model.
851 private var conditional_importations = new Array[SequenceRead[Object]]
852
853 # Extends the current importations according to imported rules about conditional importation
854 fun apply_conditional_importations(mmodule: MModule)
855 do
856 # Because a conditional importation may cause additional conditional importation, use a fixed point
857 # The rules are checked naively because we assume that it does not worth to be optimized
858 var check_conditional_importations = true
859 while check_conditional_importations do
860 check_conditional_importations = false
861
862 for ci in conditional_importations do
863 # Check conditions
864 for i in [1..ci.length[ do
865 var rule_element = ci[i]
866 # An element of a rule is either a MModule or a ModulePath
867 # We need the mmodule to resonate on the importation
868 var m
869 if rule_element isa MModule then
870 m = rule_element
871 else if rule_element isa ModulePath then
872 m = rule_element.mmodule
873 # Is loaded?
874 if m == null then continue label
875 else
876 abort
877 end
878 # Is imported?
879 if not mmodule.in_importation.greaters.has(m) then continue label
880 end
881 # Still here? It means that all conditions modules are loaded and imported
882
883 # Identify the module to automatically import
884 var suppath = ci.first.as(ModulePath)
885 var sup = load_module_path(suppath)
886 if sup == null then continue
887
888 # Do nothing if already imported
889 if mmodule.in_importation.greaters.has(sup) then continue label
890
891 # Import it
892 self.toolcontext.info("{mmodule} conditionally imports {sup}", 3)
893 # TODO visibility rules (currently always public)
894 mmodule.set_visibility_for(sup, public_visibility)
895 # TODO linearization rules (currently added at the end in the order of the rules)
896 mmodule.set_imported_mmodules([sup])
897
898 # Prepare to reapply the rules
899 check_conditional_importations = true
900 end label
901 end
902 end
903
904 # All the loaded modules
905 var nmodules = new Array[AModule]
906
907 # Register the nmodule associated to each mmodule
908 #
909 # Public clients need to use `mmodule2node` to access stuff.
910 private var mmodule2nmodule = new HashMap[MModule, AModule]
911
912 # Retrieve the associated AST node of a mmodule.
913 # This method is used to associate model entity with syntactic entities.
914 #
915 # If the module is not associated with a node, returns null.
916 fun mmodule2node(mmodule: MModule): nullable AModule
917 do
918 return mmodule2nmodule.get_or_null(mmodule)
919 end
920 end
921
922 # File-system location of a module (file) that is identified but not always loaded.
923 class ModulePath
924 # The name of the module
925 # (it's the basename of the filepath)
926 var name: String
927
928 # The human path of the module
929 var filepath: String
930
931 # The group (and the project) of the possible module
932 var mgroup: MGroup
933
934 # The loaded module (if any)
935 var mmodule: nullable MModule = null
936
937 redef fun to_s do return filepath
938 end
939
940 redef class MProject
941 # The associated `.ini` file, if any
942 #
943 # The `ini` file is given as is and might contain invalid or missing information.
944 #
945 # Some projects, like stand-alone projects or virtual projects have no `ini` file associated.
946 var ini: nullable ConfigTree = null
947 end
948
949 redef class MGroup
950 # Modules paths associated with the group
951 var module_paths = new Array[ModulePath]
952
953 # Is the group interesting for a final user?
954 #
955 # Groups are mandatory in the model but for simple projects they are not
956 # always interesting.
957 #
958 # A interesting group has, at least, one of the following true:
959 #
960 # * it has 2 modules or more
961 # * it has a subgroup
962 # * it has a documentation
963 fun is_interesting: Bool
964 do
965 return module_paths.length > 1 or
966 mmodules.length > 1 or
967 not in_nesting.direct_smallers.is_empty or
968 mdoc != null or
969 (mmodules.length == 1 and default_mmodule == null)
970 end
971
972 # Are files and directories in self scanned?
973 #
974 # See `ModelBuilder::scan_group`.
975 var scanned = false
976
977 # Return the modules in self and subgroups named `name`.
978 #
979 # If `self` is not scanned (see `ModelBuilder::scan_group`) the
980 # results might be partial.
981 fun mmodule_paths_by_name(name: String): Array[ModulePath]
982 do
983 var res = new Array[ModulePath]
984 for g in in_nesting.smallers do
985 for mp in g.module_paths do
986 if mp.name == name then
987 res.add mp
988 end
989 end
990 end
991 return res
992 end
993 end
994
995 redef class SourceFile
996 # Associated mmodule, once created
997 var mmodule: nullable MModule = null
998 end
999
1000 redef class AStdImport
1001 # The imported module once determined
1002 var mmodule: nullable MModule = null
1003 end
1004
1005 redef class AModule
1006 # The associated MModule once build by a `ModelBuilder`
1007 var mmodule: nullable MModule
1008 # Flag that indicate if the importation is already completed
1009 var is_importation_done: Bool = false
1010 end