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