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