loader: update because `ini[]` does return nullable
[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
357 # Attach homonymous `ini` file to the project
358 var inipath = path.dirname / "{pn}.ini"
359 if inipath.file_exists then
360 var ini = new ConfigTree(inipath)
361 mproject.ini = ini
362 end
363 end
364
365 var res = new ModulePath(pn, path, mgroup)
366 mgroup.module_paths.add(res)
367
368 identified_files_by_path[rp] = res
369 identified_files.add(res)
370 return res
371 end
372
373 # Groups by path
374 private var mgroups = new HashMap[String, nullable MGroup]
375
376 # Return the mgroup associated to a directory path.
377 # If the directory is not a group null is returned.
378 #
379 # Note: `paths` is also used to look for mgroups
380 fun get_mgroup(dirpath: String): nullable MGroup
381 do
382 if not dirpath.file_exists then do
383 for p in paths do
384 var try = p / dirpath
385 if try.file_exists then
386 dirpath = try
387 break label
388 end
389 end
390 return null
391 end label
392
393 var rdp = module_absolute_path(dirpath)
394 if mgroups.has_key(rdp) then
395 return mgroups[rdp]
396 end
397
398 # Filter out non-directories
399 var stat = dirpath.file_stat
400 if stat == null or not stat.is_dir then
401 mgroups[rdp] = null
402 return null
403 end
404
405 # By default, the name of the project or group is the base_name of the directory
406 var pn = rdp.basename(".nit")
407
408 # Check `project.ini` that indicate a project
409 var ini = null
410 var parent = null
411 var inipath = dirpath / "project.ini"
412 if inipath.file_exists then
413 ini = new ConfigTree(inipath)
414 end
415
416 if ini == null then
417 # No ini, multiple course of action
418
419 # The root of the directory hierarchy in the file system.
420 if rdp == "/" then
421 mgroups[rdp] = null
422 return null
423 end
424
425 # Special stopper `projects.ini`
426 if (dirpath/"projects.ini").file_exists then
427 # dirpath cannot be a project since it is a project directory
428 mgroups[rdp] = null
429 return null
430 end
431
432 # check the parent directory (if it does not contain the stopper file)
433 var parentpath = dirpath.join_path("..").simplify_path
434 var stopper = parentpath / "projects.ini"
435 if not stopper.file_exists then
436 # Recursively get the parent group
437 parent = get_mgroup(parentpath)
438 if parent == null then
439 # Parent is not a group, thus we are not a group either
440 mgroups[rdp] = null
441 return null
442 end
443 end
444 end
445
446 var mgroup
447 if parent == null then
448 # no parent, thus new project
449 if ini != null then pn = ini["project.name"] or else pn
450 var mproject = new MProject(pn, model)
451 mgroup = new MGroup(pn, mproject, null) # same name for the root group
452 mproject.root = mgroup
453 toolcontext.info("found project `{mproject}` at {dirpath}", 2)
454 mproject.ini = ini
455 else
456 mgroup = new MGroup(pn, parent.mproject, parent)
457 toolcontext.info("found sub group `{mgroup.full_name}` at {dirpath}", 2)
458 end
459
460 # search documentation
461 # in src first so the documentation of the project code can be distinct for the documentation of the project usage
462 var readme = dirpath.join_path("README.md")
463 if not readme.file_exists then readme = dirpath.join_path("README")
464 if readme.file_exists then
465 var mdoc = load_markdown(readme)
466 mgroup.mdoc = mdoc
467 mdoc.original_mentity = mgroup
468 end
469
470 mgroup.filepath = dirpath
471 mgroups[rdp] = mgroup
472 return mgroup
473 end
474
475 # Load a markdown file as a documentation object
476 fun load_markdown(filepath: String): MDoc
477 do
478 var s = new FileReader.open(filepath)
479 var lines = new Array[String]
480 var line_starts = new Array[Int]
481 var len = 1
482 while not s.eof do
483 var line = s.read_line
484 lines.add(line)
485 line_starts.add(len)
486 len += line.length + 1
487 end
488 s.close
489 var source = new SourceFile.from_string(filepath, lines.join("\n"))
490 source.line_starts.add_all line_starts
491 var mdoc = new MDoc(new Location(source, 1, lines.length, 0, 0))
492 mdoc.content.add_all(lines)
493 return mdoc
494 end
495
496 # Force the identification of all ModulePath of the group and sub-groups in the file system.
497 #
498 # When a group is scanned, its sub-groups hierarchy is filled (see `MGroup::in_nesting`)
499 # and the potential modules (and nested modules) are identified (see `MGroup::module_paths`).
500 #
501 # Basically, this recursively call `get_mgroup` and `identify_file` on each directory entry.
502 #
503 # No-op if the group was already scanned (see `MGroup::scanned`).
504 fun scan_group(mgroup: MGroup) do
505 if mgroup.scanned then return
506 mgroup.scanned = true
507 var p = mgroup.filepath
508 # a virtual group has nothing to scan
509 if p == null then return
510 for f in p.files do
511 var fp = p/f
512 var g = get_mgroup(fp)
513 # Recursively scan for groups of the same project
514 if g != null and g.mproject == mgroup.mproject then
515 scan_group(g)
516 end
517 identify_file(fp)
518 end
519 end
520
521 # Transform relative paths (starting with '../') into absolute paths
522 private fun module_absolute_path(path: String): String do
523 return getcwd.join_path(path).simplify_path
524 end
525
526 # Try to load a module AST using a path.
527 # Display an error if there is a problem (IO / lexer / parser) and return null
528 fun load_module_ast(filename: String): nullable AModule
529 do
530 if filename.file_extension != "nit" then
531 self.toolcontext.error(null, "Error: file `{filename}` is not a valid nit module.")
532 return null
533 end
534 if not filename.file_exists then
535 self.toolcontext.error(null, "Error: file `{filename}` not found.")
536 return null
537 end
538
539 self.toolcontext.info("load module {filename}", 2)
540
541 # Load the file
542 var file = new FileReader.open(filename)
543 var lexer = new Lexer(new SourceFile(filename, file))
544 var parser = new Parser(lexer)
545 var tree = parser.parse
546 file.close
547
548 # Handle lexer and parser error
549 var nmodule = tree.n_base
550 if nmodule == null then
551 var neof = tree.n_eof
552 assert neof isa AError
553 error(neof, neof.message)
554 return null
555 end
556
557 return nmodule
558 end
559
560 # Remove Nit source files from a list of arguments.
561 #
562 # Items of `args` that can be loaded as a nit file will be removed from `args` and returned.
563 fun filter_nit_source(args: Array[String]): Array[String]
564 do
565 var keep = new Array[String]
566 var res = new Array[String]
567 for a in args do
568 var l = identify_file(a)
569 if l == null then
570 keep.add a
571 else
572 res.add a
573 end
574 end
575 args.clear
576 args.add_all(keep)
577 return res
578 end
579
580 # Try to load a module using a path.
581 # Display an error if there is a problem (IO / lexer / parser) and return null.
582 # Note: usually, you do not need this method, use `get_mmodule_by_name` instead.
583 #
584 # The MModule is created however, the importation is not performed,
585 # therefore you should call `build_module_importation`.
586 fun load_module(filename: String): nullable AModule
587 do
588 # Look for the module
589 var file = identify_file(filename)
590 if file == null then
591 if filename.file_exists then
592 toolcontext.error(null, "Error: `{filename}` is not a Nit source file.")
593 else
594 toolcontext.error(null, "Error: cannot find module `{filename}`.")
595 end
596 return null
597 end
598
599 # Already known and loaded? then return it
600 var mmodule = file.mmodule
601 if mmodule != null then
602 return mmodule2nmodule[mmodule]
603 end
604
605 # Load it manually
606 var nmodule = load_module_ast(file.filepath)
607 if nmodule == null then return null # forward error
608
609 # build the mmodule and load imported modules
610 mmodule = build_a_mmodule(file.mgroup, file.name, nmodule)
611
612 if mmodule == null then return null # forward error
613
614 # Update the file information
615 file.mmodule = mmodule
616
617 return nmodule
618 end
619
620 # Injection of a new module without source.
621 # Used by the interpreter.
622 fun load_rt_module(parent: nullable MModule, nmodule: AModule, mod_name: String): nullable AModule
623 do
624 # Create the module
625
626 var mgroup = null
627 if parent != null then mgroup = parent.mgroup
628 var mmodule = new MModule(model, mgroup, mod_name, nmodule.location)
629 nmodule.mmodule = mmodule
630 nmodules.add(nmodule)
631 self.mmodule2nmodule[mmodule] = nmodule
632
633 if parent!= null then
634 var imported_modules = new Array[MModule]
635 imported_modules.add(parent)
636 mmodule.set_visibility_for(parent, intrude_visibility)
637 mmodule.set_imported_mmodules(imported_modules)
638 else
639 build_module_importation(nmodule)
640 end
641
642 return nmodule
643 end
644
645 # Visit the AST and create the `MModule` object
646 private fun build_a_mmodule(mgroup: nullable MGroup, mod_name: String, nmodule: AModule): nullable MModule
647 do
648 # Check the module name
649 var decl = nmodule.n_moduledecl
650 if decl != null then
651 var decl_name = decl.n_name.n_id.text
652 if decl_name != mod_name then
653 error(decl.n_name, "Error: module name mismatch; declared {decl_name} file named {mod_name}.")
654 end
655 end
656
657 # Check for conflicting module names in the project
658 if mgroup != null then
659 var others = model.get_mmodules_by_name(mod_name)
660 if others != null then for other in others do
661 if other.mgroup!= null and other.mgroup.mproject == mgroup.mproject then
662 var node: ANode
663 if decl == null then node = nmodule else node = decl.n_name
664 error(node, "Error: a module named `{other.full_name}` already exists at {other.location}.")
665 break
666 end
667 end
668 end
669
670 # Create the module
671 var mmodule = new MModule(model, mgroup, mod_name, nmodule.location)
672 nmodule.mmodule = mmodule
673 nmodules.add(nmodule)
674 self.mmodule2nmodule[mmodule] = nmodule
675
676 var source = nmodule.location.file
677 if source != null then
678 assert source.mmodule == null
679 source.mmodule = mmodule
680 end
681
682 if decl != null then
683 # Extract documentation
684 var ndoc = decl.n_doc
685 if ndoc != null then
686 var mdoc = ndoc.to_mdoc
687 mmodule.mdoc = mdoc
688 mdoc.original_mentity = mmodule
689 else
690 advice(decl, "missing-doc", "Documentation warning: Undocumented module `{mmodule}`")
691 end
692 # Is the module a test suite?
693 mmodule.is_test_suite = not decl.get_annotations("test_suite").is_empty
694 end
695
696 return mmodule
697 end
698
699 # Resolve the module identification for a given `AModuleName`.
700 #
701 # This method handles qualified names as used in `AModuleName`.
702 fun seach_module_by_amodule_name(n_name: AModuleName, mgroup: nullable MGroup): nullable ModulePath
703 do
704 if n_name.n_quad != null then mgroup = null # Start from top level
705 for grp in n_name.n_path do
706 var path = search_mmodule_by_name(grp, mgroup, grp.text)
707 if path == null then return null # Forward error
708 mgroup = path.mgroup
709 end
710 var mod_name = n_name.n_id.text
711 return search_mmodule_by_name(n_name, mgroup, mod_name)
712 end
713
714 # Analyze the module importation and fill the module_importation_hierarchy
715 #
716 # Unless you used `load_module`, the importation is already done and this method does a no-op.
717 fun build_module_importation(nmodule: AModule)
718 do
719 if nmodule.is_importation_done then return
720 nmodule.is_importation_done = true
721 var mmodule = nmodule.mmodule.as(not null)
722 var stdimport = true
723 var imported_modules = new Array[MModule]
724 for aimport in nmodule.n_imports do
725 # Do not imports conditional
726 var atconditionals = aimport.get_annotations("conditional")
727 if atconditionals.not_empty then continue
728
729 stdimport = false
730 if not aimport isa AStdImport then
731 continue
732 end
733
734 # Load the imported module
735 var suppath = seach_module_by_amodule_name(aimport.n_name, mmodule.mgroup)
736 if suppath == null then
737 nmodule.mmodule = null # invalidate the module
738 continue # Skip error
739 end
740 var sup = load_module_path(suppath)
741 if sup == null then
742 nmodule.mmodule = null # invalidate the module
743 continue # Skip error
744 end
745
746 aimport.mmodule = sup
747 imported_modules.add(sup)
748 var mvisibility = aimport.n_visibility.mvisibility
749 if mvisibility == protected_visibility then
750 error(aimport.n_visibility, "Error: only properties can be protected.")
751 nmodule.mmodule = null # invalidate the module
752 return
753 end
754 if sup == mmodule then
755 error(aimport.n_name, "Error: dependency loop in module {mmodule}.")
756 nmodule.mmodule = null # invalidate the module
757 end
758 if sup.in_importation < mmodule then
759 error(aimport.n_name, "Error: dependency loop between modules {mmodule} and {sup}.")
760 nmodule.mmodule = null # invalidate the module
761 return
762 end
763 mmodule.set_visibility_for(sup, mvisibility)
764 end
765 if stdimport then
766 var mod_name = "core"
767 var sup = self.get_mmodule_by_name(nmodule, null, mod_name)
768 if sup == null then
769 nmodule.mmodule = null # invalidate the module
770 else # Skip error
771 imported_modules.add(sup)
772 mmodule.set_visibility_for(sup, public_visibility)
773 end
774 end
775
776 # Declare conditional importation
777 for aimport in nmodule.n_imports do
778 if not aimport isa AStdImport then continue
779 var atconditionals = aimport.get_annotations("conditional")
780 if atconditionals.is_empty then continue
781
782 var suppath = seach_module_by_amodule_name(aimport.n_name, mmodule.mgroup)
783 if suppath == null then continue # skip error
784
785 for atconditional in atconditionals do
786 var nargs = atconditional.n_args
787 if nargs.is_empty then
788 error(atconditional, "Syntax Error: `conditional` expects module identifiers as arguments.")
789 continue
790 end
791
792 # The rule
793 var rule = new Array[Object]
794
795 # First element is the goal, thus
796 rule.add suppath
797
798 # Second element is the first condition, that is to be a client of the current module
799 rule.add mmodule
800
801 # Other condition are to be also a client of each modules indicated as arguments of the annotation
802 for narg in nargs do
803 var id = narg.as_id
804 if id == null then
805 error(narg, "Syntax Error: `conditional` expects module identifier as arguments.")
806 continue
807 end
808
809 var mp = search_mmodule_by_name(narg, mmodule.mgroup, id)
810 if mp == null then continue
811
812 rule.add mp
813 end
814
815 conditional_importations.add rule
816 end
817 end
818
819 mmodule.set_imported_mmodules(imported_modules)
820
821 apply_conditional_importations(mmodule)
822
823 self.toolcontext.info("{mmodule} imports {mmodule.in_importation.direct_greaters.join(", ")}", 3)
824
825 # Force `core` to be public if imported
826 for sup in mmodule.in_importation.greaters do
827 if sup.name == "core" then
828 mmodule.set_visibility_for(sup, public_visibility)
829 end
830 end
831
832 # TODO: Correctly check for useless importation
833 # It is even doable?
834 var directs = mmodule.in_importation.direct_greaters
835 for nim in nmodule.n_imports do
836 if not nim isa AStdImport then continue
837 var im = nim.mmodule
838 if im == null then continue
839 if directs.has(im) then continue
840 # This generates so much noise that it is simpler to just comment it
841 #warning(nim, "Warning: possible useless importation of {im}")
842 end
843 end
844
845 # Global list of conditional importation rules.
846 #
847 # Each rule is a "Horn clause"-like sequence of modules.
848 # It means that the first module is the module to automatically import.
849 # The remaining modules are the conditions of the rule.
850 #
851 # Each module is either represented by a MModule (if the module is already loaded)
852 # or by a ModulePath (if the module is not yet loaded).
853 #
854 # Rules are declared by `build_module_importation` and are applied by `apply_conditional_importations`
855 # (and `build_module_importation` that calls it).
856 #
857 # TODO (when the loader will be rewritten): use a better representation and move up rules in the model.
858 private var conditional_importations = new Array[SequenceRead[Object]]
859
860 # Extends the current importations according to imported rules about conditional importation
861 fun apply_conditional_importations(mmodule: MModule)
862 do
863 # Because a conditional importation may cause additional conditional importation, use a fixed point
864 # The rules are checked naively because we assume that it does not worth to be optimized
865 var check_conditional_importations = true
866 while check_conditional_importations do
867 check_conditional_importations = false
868
869 for ci in conditional_importations do
870 # Check conditions
871 for i in [1..ci.length[ do
872 var rule_element = ci[i]
873 # An element of a rule is either a MModule or a ModulePath
874 # We need the mmodule to resonate on the importation
875 var m
876 if rule_element isa MModule then
877 m = rule_element
878 else if rule_element isa ModulePath then
879 m = rule_element.mmodule
880 # Is loaded?
881 if m == null then continue label
882 else
883 abort
884 end
885 # Is imported?
886 if not mmodule.in_importation.greaters.has(m) then continue label
887 end
888 # Still here? It means that all conditions modules are loaded and imported
889
890 # Identify the module to automatically import
891 var suppath = ci.first.as(ModulePath)
892 var sup = load_module_path(suppath)
893 if sup == null then continue
894
895 # Do nothing if already imported
896 if mmodule.in_importation.greaters.has(sup) then continue label
897
898 # Import it
899 self.toolcontext.info("{mmodule} conditionally imports {sup}", 3)
900 # TODO visibility rules (currently always public)
901 mmodule.set_visibility_for(sup, public_visibility)
902 # TODO linearization rules (currently added at the end in the order of the rules)
903 mmodule.set_imported_mmodules([sup])
904
905 # Prepare to reapply the rules
906 check_conditional_importations = true
907 end label
908 end
909 end
910
911 # All the loaded modules
912 var nmodules = new Array[AModule]
913
914 # Register the nmodule associated to each mmodule
915 #
916 # Public clients need to use `mmodule2node` to access stuff.
917 private var mmodule2nmodule = new HashMap[MModule, AModule]
918
919 # Retrieve the associated AST node of a mmodule.
920 # This method is used to associate model entity with syntactic entities.
921 #
922 # If the module is not associated with a node, returns null.
923 fun mmodule2node(mmodule: MModule): nullable AModule
924 do
925 return mmodule2nmodule.get_or_null(mmodule)
926 end
927 end
928
929 # File-system location of a module (file) that is identified but not always loaded.
930 class ModulePath
931 # The name of the module
932 # (it's the basename of the filepath)
933 var name: String
934
935 # The human path of the module
936 var filepath: String
937
938 # The group (and the project) of the possible module
939 var mgroup: MGroup
940
941 # The loaded module (if any)
942 var mmodule: nullable MModule = null
943
944 redef fun to_s do return filepath
945 end
946
947 redef class MProject
948 # The associated `.ini` file, if any
949 #
950 # The `ini` file is given as is and might contain invalid or missing information.
951 #
952 # Some projects, like stand-alone projects or virtual projects have no `ini` file associated.
953 var ini: nullable ConfigTree = null
954 end
955
956 redef class MGroup
957 # Modules paths associated with the group
958 var module_paths = new Array[ModulePath]
959
960 # Is the group interesting for a final user?
961 #
962 # Groups are mandatory in the model but for simple projects they are not
963 # always interesting.
964 #
965 # A interesting group has, at least, one of the following true:
966 #
967 # * it has 2 modules or more
968 # * it has a subgroup
969 # * it has a documentation
970 fun is_interesting: Bool
971 do
972 return module_paths.length > 1 or
973 mmodules.length > 1 or
974 not in_nesting.direct_smallers.is_empty or
975 mdoc != null or
976 (mmodules.length == 1 and default_mmodule == null)
977 end
978
979 # Are files and directories in self scanned?
980 #
981 # See `ModelBuilder::scan_group`.
982 var scanned = false
983
984 # Return the modules in self and subgroups named `name`.
985 #
986 # If `self` is not scanned (see `ModelBuilder::scan_group`) the
987 # results might be partial.
988 fun mmodule_paths_by_name(name: String): Array[ModulePath]
989 do
990 var res = new Array[ModulePath]
991 for g in in_nesting.smallers do
992 for mp in g.module_paths do
993 if mp.name == name then
994 res.add mp
995 end
996 end
997 end
998 return res
999 end
1000 end
1001
1002 redef class SourceFile
1003 # Associated mmodule, once created
1004 var mmodule: nullable MModule = null
1005 end
1006
1007 redef class AStdImport
1008 # The imported module once determined
1009 var mmodule: nullable MModule = null
1010 end
1011
1012 redef class AModule
1013 # The associated MModule once build by a `ModelBuilder`
1014 var mmodule: nullable MModule
1015 # Flag that indicate if the importation is already completed
1016 var is_importation_done: Bool = false
1017 end