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