toolcontext: introduce --share-dir
[nit.git] / src / toolcontext.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2006-2008 Floréal Morandat <morandat@lirmm.fr>
4 # Copyright 2008-2012 Jean Privat <jean@pryen.org>
5 # Copyright 2009 Jean-Sebastien Gelinas <calestar@gmail.com>
6 # Copyright 2014 Alexandre Terrasa <alexandre@moz-code.org>
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19
20 # Common command-line tool infrastructure than handle options and error messages
21 module toolcontext
22
23 import opts
24 import location
25 import version
26 import template
27 import more_collections
28
29 # A warning or an error
30 class Message
31 super Comparable
32 redef type OTHER: Message
33
34 # The origin of the message in the source code, if any.
35 var location: nullable Location
36
37 # The category of the message.
38 #
39 # Used by quality-control tool for statistics or to enable/disable things individually.
40 var tag: nullable String
41
42 # The human-readable description of the message.
43 #
44 # eg. "Error: cannot find method `foo`."
45 #
46 # A good message should:
47 #
48 # * start with a message type like "Error:", "Syntax Error:", "Warning:".
49 # The type is capitalized and terminated by a column.
50 # The rest on the message starts with a lowercase letter and is terminated with a dot.
51 #
52 # * be short and fit on a single line.
53 #
54 # * have meaningful information first.
55 # This helps the reader and remain usable
56 # when truncated, by an IDE for instance.
57 #
58 # * enclose identifiers, keywords and pieces of code with back-quotes.
59 var text: String
60
61 # The severity level
62 #
63 # * 0 is advices (see `ToolContext::advice`)
64 # * 1 is warnings (see `ToolContext::warning`)
65 # * 2 is errors (see `ToolContext::error`)
66 var level: Int
67
68 # Comparisons are made on message locations.
69 redef fun <(other: OTHER): Bool do
70 if location == null then return true
71 if other.location == null then return false
72
73 return location.as(not null) < other.location.as(not null)
74 end
75
76 redef fun ==(other): Bool do
77 if not other isa Message then return false
78 return location == other.location and tag == other.tag and text == other.text
79 end
80
81 redef fun to_s: String
82 do
83 var l = location
84 if l == null then
85 return text
86 else
87 return "{l}: {text}"
88 end
89 end
90
91 # A colored version of the message including the original source line
92 fun to_color_string: String
93 do
94 var esc = 27.code_point
95 #var red = "{esc}[0;31m"
96 #var bred = "{esc}[1;31m"
97 #var green = "{esc}[0;32m"
98 var yellow = "{esc}[0;33m"
99 var def = "{esc}[0m"
100
101 var tag = tag
102 if tag != null then
103 tag = " ({tag})"
104 else
105 tag = ""
106 end
107 var l = location
108 if l == null then
109 return "{text}{tag}"
110 else if l.file == null then
111 return "{yellow}{l}{def}: {text}{tag}"
112 else
113 return "{yellow}{l}{def}: {text}{tag}\n{l.colored_line("1;31")}"
114 end
115 end
116 end
117
118 redef class Location
119 # Errors and warnings associated to this location.
120 var messages: nullable Array[Message]
121
122 # Add a message to `self`
123 #
124 # See `messages`
125 private fun add_message(m: Message)
126 do
127 var ms = messages
128 if ms == null then
129 ms = new Array[Message]
130 messages = ms
131 end
132 ms.add m
133 var s = file
134 if s != null then s.messages.add m
135 end
136 end
137
138 redef class SourceFile
139 # Errors and warnings associated to the whole source.
140 var messages = new Array[Message]
141 end
142
143 # Global context for tools
144 class ToolContext
145 # Number of errors
146 var error_count: Int = 0
147
148 # Number of warnings
149 var warning_count: Int = 0
150
151 # Directory where to generate log files
152 var log_directory: String = "logs"
153
154 # Stream in `log_directory` where all info messages are written
155 var log_info: nullable Writer = null
156
157 # Messages
158 private var messages = new Array[Message]
159 private var message_sorter: Comparator = default_comparator
160
161 # Does an error prevent the program to stop at `check_errors`?
162 #
163 # Default to false.
164 # Set this value to `true` if you need to keep the program going in case of error.
165 var keep_going = false is writable
166
167 # List of tags per source-file whose warnings are not displayed.
168 #
169 # Initially empty, it is up to the toll to fill it.
170 # The tag "all" means all warnings and advices.
171 var warning_blacklist = new MultiHashMap[SourceFile, String]
172
173 # Is the source-file of `l` associated with `tag` in `warning_blacklist`?
174 #
175 # currently returns `false` if `l` is null or does not have a source-file.
176 fun is_warning_blacklisted(l: nullable Location, tag: String): Bool
177 do
178 if l == null then return false
179 var f = l.file
180 if f == null then return false
181 var tags = warning_blacklist.get_or_null(f)
182 if tags == null then return false
183 return tags.has("all") or tags.has(tag)
184 end
185
186 # Output all current stacked messages, total and exit the program
187 #
188 # If there is no error, exit with 0, else exit with 1.
189 fun quit
190 do
191 check_errors
192 errors_info
193 if error_count > 0 then exit(1) else exit(0)
194 end
195
196 # Output all current stacked messages
197 #
198 # Return true if no errors occurred.
199 #
200 # If some errors occurred, the behavior depends on the value of `keep_going`.
201 # If `keep_going` is false, then the total error informations is displayed and the program exits.
202 # Else, false is returned.
203 fun check_errors: Bool
204 do
205 if messages.length > 0 then
206 message_sorter.sort(messages)
207
208 for m in messages do
209 if opt_no_color.value then
210 sys.stderr.write("{m}\n")
211 else
212 sys.stderr.write("{m.to_color_string}\n")
213 end
214 end
215
216 messages.clear
217 end
218
219 if error_count > 0 then
220 if not keep_going then
221 errors_info
222 exit(1)
223 end
224 return false
225 end
226 return true
227 end
228
229 # Display total error informations
230 fun errors_info
231 do
232 if error_count == 0 and warning_count == 0 then return
233 if opt_no_color.value then return
234 sys.stderr.write "Errors: {error_count}. Warnings: {warning_count}.\n"
235 end
236
237 # Display an error
238 #
239 # Return the message (to add information)
240 fun error(l: nullable Location, s: String): Message
241 do
242 var m = new Message(l, null, s, 2)
243 if messages.has(m) then return m
244 if l != null then l.add_message m
245 messages.add m
246 error_count = error_count + 1
247 if opt_stop_on_first_error.value then check_errors
248 return m
249 end
250
251 # Add an error, show errors and quit
252 #
253 # Because the program will quit, nothing is returned.
254 fun fatal_error(l: nullable Location, s: String)
255 do
256 error(l,s)
257 check_errors
258 end
259
260 # Display a first-level warning.
261 #
262 # First-level warnings are warnings that SHOULD be corrected,
263 # and COULD usually be immediately corrected.
264 #
265 # * There is a simple correction
266 # * There is no reason to let the code this way (no reasonable @supresswarning-like annotation)
267 # * They always are real issues (no false positive)
268 #
269 # First-level warnings are displayed by default (except if option `-q` is given).
270 #
271 # Return the message (to add information) or null if the warning is disabled
272 fun warning(l: nullable Location, tag: String, text: String): nullable Message
273 do
274 if is_warning_blacklisted(l, tag) then return null
275 var m = new Message(l, tag, text, 1)
276 if messages.has(m) then return null
277 if l != null then l.add_message m
278 if opt_warning.value.has("no-{tag}") then return null
279 if not opt_warning.value.has(tag) and opt_warn.value == 0 then return null
280 messages.add m
281 warning_count = warning_count + 1
282 if opt_stop_on_first_error.value then check_errors
283 return m
284 end
285
286 # Display a second-level warning.
287 #
288 # Second-level warnings are warnings that should require investigation,
289 # but cannot always be immediately corrected.
290 #
291 # * The correction could be complex. e.g. require a refactorisation or an API change.
292 # * The correction cannot be done. e.g. Code that use a deprecated API for some compatibility reason.
293 # * There is not a real issue (false positive). Note that this should be unlikely.
294 # * Transitional: While a real warning, it fires a lot in current code, so a transition is needed
295 # in order to fix them before promoting the advice to a warning.
296 #
297 # In order to prevent warning inflation à la Java, second-level warnings are not displayed by
298 # default and require an additional option `-W`.
299 #
300 # Return the message (to add information) or null if the warning is disabled
301 fun advice(l: nullable Location, tag: String, text: String): nullable Message
302 do
303 if is_warning_blacklisted(l, tag) then return null
304 var m = new Message(l, tag, text, 0)
305 if messages.has(m) then return null
306 if l != null then l.add_message m
307 if opt_warning.value.has("no-{tag}") then return null
308 if not opt_warning.value.has(tag) and opt_warn.value <= 1 then return null
309 messages.add m
310 warning_count = warning_count + 1
311 if opt_stop_on_first_error.value then check_errors
312 return m
313 end
314
315 # Display an info
316 fun info(s: String, level: Int)
317 do
318 if level <= verbose_level then
319 print "{s}"
320 end
321 if log_info != null then
322 log_info.write s
323 log_info.write "\n"
324 end
325 end
326
327 # Executes a program while checking if it's available and if the execution ended correctly
328 #
329 # Stops execution and prints errors if the program isn't available or didn't end correctly
330 fun exec_and_check(args: Array[String], error: String)
331 do
332 info("+ {args.join(" ")}", 2)
333
334 var prog = args.first
335 args.remove_at 0
336
337 # Is the wanted program available?
338 var proc_which = new ProcessReader.from_a("which", [prog])
339 proc_which.wait
340 var res = proc_which.status
341 if res != 0 then
342 print "{error}: executable \"{prog}\" not found"
343 exit 1
344 end
345
346 # Execute the wanted program
347 var proc = new Process.from_a(prog, args)
348 proc.wait
349 res = proc.status
350 if res != 0 then
351 print "{error}: execution of \"{prog} {args.join(" ")}\" failed"
352 exit 1
353 end
354 end
355
356 # Global OptionContext
357 var option_context = new OptionContext
358
359 # Option --warn
360 var opt_warn = new OptionCount("Show additional warnings (advices)", "-W", "--warn")
361
362 # Option --warning
363 var opt_warning = new OptionArray("Show/hide a specific warning", "-w", "--warning")
364
365 # Option --quiet
366 var opt_quiet = new OptionBool("Do not show warnings", "-q", "--quiet")
367
368 # Option --log
369 var opt_log = new OptionBool("Generate various log files", "--log")
370
371 # Option --log-dir
372 var opt_log_dir = new OptionString("Directory where to generate log files", "--log-dir")
373
374 # Option --nit-dir
375 var opt_nit_dir = new OptionString("Base directory of the Nit installation", "--nit-dir")
376
377 # Option --share-dir
378 var opt_share_dir = new OptionString("Directory containing tools assets", "--share-dir")
379
380 # Option --help
381 var opt_help = new OptionBool("Show Help (This screen)", "-h", "-?", "--help")
382
383 # Option --version
384 var opt_version = new OptionBool("Show version and exit", "--version")
385
386 # Option --set-dummy-tool
387 var opt_set_dummy_tool = new OptionBool("Set toolname and version to DUMMY. Useful for testing", "--set-dummy-tool")
388
389 # Option --verbose
390 var opt_verbose = new OptionCount("Additional messages from the tool", "-v", "--verbose")
391
392 # Option --stop-on-first-error
393 var opt_stop_on_first_error = new OptionBool("Just display the first encountered error then stop", "--stop-on-first-error")
394
395 # Option --keep-going
396 var opt_keep_going = new OptionBool("Continue after errors, whatever the consequences", "--keep-going")
397
398 # Option --no-color
399 var opt_no_color = new OptionBool("Do not use color to display errors and warnings", "--no-color")
400
401 # Option --bash-completion
402 var opt_bash_completion = new OptionBool("Generate bash_completion file for this program", "--bash-completion")
403
404 # Option --stub-man
405 var opt_stub_man = new OptionBool("Generate a stub manpage in pandoc markdown format", "--stub-man")
406
407 # Verbose level
408 var verbose_level: Int = 0
409
410 init
411 do
412 option_context.add_option(opt_warn, opt_warning, opt_quiet, opt_stop_on_first_error, opt_keep_going, opt_no_color, opt_log, opt_log_dir, opt_nit_dir, opt_help, opt_version, opt_set_dummy_tool, opt_verbose, opt_bash_completion, opt_stub_man)
413
414 # Hide some internal options
415 opt_stub_man.hidden = true
416 opt_bash_completion.hidden = true
417 opt_set_dummy_tool.hidden = true
418 end
419
420 # Name, usage and synopsis of the tool.
421 # It is mainly used in `usage`.
422 # Should be correctly set by the client before calling `process_options`
423 # A multi-line string is recommmended.
424 #
425 # eg. `"Usage: tool [OPTION]... [FILE]...\nDo some things."`
426 var tooldescription: String = "Usage: [OPTION]... [ARG]..." is writable
427
428 # Does `process_options` should accept an empty sequence of arguments.
429 # ie. nothing except options.
430 # Is `false` by default.
431 #
432 # If required, if should be set by the client before calling `process_options`
433 var accept_no_arguments = false is writable
434
435 # print the full usage of the tool.
436 # Is called by `process_option` on `--help`.
437 # It also could be called by the client.
438 fun usage
439 do
440 print tooldescription
441 option_context.usage
442 end
443
444 # Parse and process the options given on the command line
445 fun process_options(args: Sequence[String])
446 do
447 self.opt_warn.value = 1
448
449 # init options
450 option_context.parse(args)
451
452 if opt_help.value then
453 usage
454 exit 0
455 end
456
457 if opt_version.value then
458 print version
459 exit 0
460 end
461
462 if opt_bash_completion.value then
463 var bash_completion = new BashCompletion(self)
464 bash_completion.write_to(sys.stdout)
465 exit 0
466 end
467
468 if opt_stub_man.value then
469 print """
470 # NAME
471
472 {{{tooldescription.split("\n")[1]}}}
473
474 # SYNOPSYS
475
476 # OPTIONS
477 """
478 for o in option_context.options do
479 var first = true
480 printn "### "
481 for n in o.names do
482 if first then first = false else printn ", "
483 printn "`{n}`"
484 end
485 print ""
486 print "{o.helptext}."
487 print ""
488 end
489 print """
490 # SEE ALSO
491
492 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>"""
493 exit 0
494 end
495
496 var errors = option_context.errors
497 if not errors.is_empty then
498 for e in errors do print "Error: {e}"
499 print tooldescription
500 print "Use --help for help"
501 exit 1
502 end
503
504 nit_dir = compute_nit_dir
505
506 if option_context.rest.is_empty and not accept_no_arguments then
507 print tooldescription
508 print "Use --help for help"
509 exit 1
510 end
511
512 # Set verbose level
513 verbose_level = opt_verbose.value
514
515 if opt_keep_going.value then keep_going = true
516
517 if self.opt_quiet.value then self.opt_warn.value = 0
518
519 if opt_log_dir.value != null then log_directory = opt_log_dir.value.as(not null)
520 if opt_log.value then
521 # Make sure the output directory exists
522 log_directory.mkdir
523
524 # Redirect the verbose messages
525 log_info = (log_directory/"info.txt").to_path.open_wo
526 end
527 end
528
529 # Get the current `nit_version` or "DUMMY_VERSION" if `--set-dummy-tool` is set.
530 fun version: String do
531 if opt_set_dummy_tool.value then
532 return "DUMMY_VERSION"
533 end
534 return nit_version
535 end
536
537 # Get the name of the tool or "DUMMY_TOOL" id `--set-dummy-tool` is set.
538 fun toolname: String do
539 if opt_set_dummy_tool.value then
540 return "DUMMY_TOOL"
541 end
542 return sys.program_name.basename
543 end
544
545 # The identified root directory of the Nit package
546 var nit_dir: String is noinit
547
548 # Shared files directory.
549 #
550 # Most often `nit/share/`.
551 var share_dir: String is lazy do
552 var sharedir = opt_share_dir.value
553 if sharedir == null then
554 sharedir = nit_dir / "share"
555 if not sharedir.file_exists then
556 fatal_error(null, "Fatal Error: cannot locate shared files directory in {sharedir}. Uses --share-dir to define it's location.")
557 end
558 end
559 return sharedir
560 end
561
562 private fun compute_nit_dir: String
563 do
564 # the option has precedence
565 var res = opt_nit_dir.value
566 if res != null then
567 if not check_nit_dir(res) then
568 fatal_error(null, "Fatal Error: the value of --nit-dir does not seem to be a valid base Nit directory: {res}.")
569 end
570 return res
571 end
572
573 # then the environ variable has precedence
574 res = "NIT_DIR".environ
575 if not res.is_empty then
576 if not check_nit_dir(res) then
577 fatal_error(null, "Fatal Error: the value of NIT_DIR does not seem to be a valid base Nit directory: {res}.")
578 end
579 return res
580 end
581
582 # find the runpath of the program from argv[0]
583 res = "{sys.program_name.dirname}/.."
584 if check_nit_dir(res) then return res.simplify_path
585
586 # find the runpath of the process from /proc
587 var exe = "/proc/self/exe"
588 if exe.file_exists then
589 res = exe.realpath
590 res = res.dirname.join_path("..")
591 if check_nit_dir(res) then return res.simplify_path
592 end
593
594 # search in the PATH
595 var ps = "PATH".environ.split(":")
596 for p in ps do
597 res = p/".."
598 if check_nit_dir(res) then return res.simplify_path
599 end
600
601 fatal_error(null, "Fatal Error: cannot locate a valid base Nit directory. It is quite unexpected. Try to set the environment variable `NIT_DIR` or to use the `--nit-dir` option.")
602 abort
603 end
604
605 private fun check_nit_dir(res: String): Bool
606 do
607 return res.file_exists and "{res}/src/nit.nit".file_exists
608 end
609 end
610
611 # This class generates a compatible `bash_completion` script file.
612 #
613 # On some Linux systems `bash_completion` allow the program to control command line behaviour.
614 #
615 # ~~~sh
616 # $ nitls [TAB][TAB]
617 # file1.nit file2.nit file3.nit
618 #
619 # $ nitls --[TAB][TAB]
620 # --bash-toolname --keep --path --tree
621 # --depends --log --package --verbose
622 # --disable-phase --log-dir --quiet --version
623 # --gen-bash-completion --no-color --recursive --warn
624 # --help --only-metamodel --source
625 # --ignore-visibility --only-parse --stop-on-first-error
626 # ~~~
627 #
628 # Generated file can be placed in system bash_completion directory `/etc/bash_completion.d/`
629 # or source it in `~/.bash_completion`.
630 class BashCompletion
631 super Template
632
633 var toolcontext: ToolContext
634
635 private fun extract_options_names: Array[String] do
636 var names = new Array[String]
637 for option in toolcontext.option_context.options do
638 for name in option.names do
639 if name.has_prefix("--") then names.add name
640 end
641 end
642 return names
643 end
644
645 redef fun rendering do
646 var name = toolcontext.toolname
647 var option_names = extract_options_names
648 addn "# generated bash completion file for {name} {toolcontext.version}"
649 addn "_{name}()"
650 addn "\{"
651 addn " local cur prev opts"
652 addn " COMPREPLY=()"
653 addn " cur=\"$\{COMP_WORDS[COMP_CWORD]\}\""
654 addn " prev=\"$\{COMP_WORDS[COMP_CWORD-1]\}\""
655 if not option_names.is_empty then
656 addn " opts=\"{option_names.join(" ")}\""
657 addn " if [[ $\{cur\} == -* ]] ; then"
658 addn " COMPREPLY=( $(compgen -W \"$\{opts\}\" -- $\{cur\}) )"
659 addn " return 0"
660 addn " fi"
661 end
662 addn "\} &&"
663 addn "complete -o default -F _{name} {name}"
664 end
665 end