toolcontext: also register messages to the source-files
[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 --help
378 var opt_help = new OptionBool("Show Help (This screen)", "-h", "-?", "--help")
379
380 # Option --version
381 var opt_version = new OptionBool("Show version and exit", "--version")
382
383 # Option --set-dummy-tool
384 var opt_set_dummy_tool = new OptionBool("Set toolname and version to DUMMY. Useful for testing", "--set-dummy-tool")
385
386 # Option --verbose
387 var opt_verbose = new OptionCount("Additional messages from the tool", "-v", "--verbose")
388
389 # Option --stop-on-first-error
390 var opt_stop_on_first_error = new OptionBool("Just display the first encountered error then stop", "--stop-on-first-error")
391
392 # Option --keep-going
393 var opt_keep_going = new OptionBool("Continue after errors, whatever the consequences", "--keep-going")
394
395 # Option --no-color
396 var opt_no_color = new OptionBool("Do not use color to display errors and warnings", "--no-color")
397
398 # Option --bash-completion
399 var opt_bash_completion = new OptionBool("Generate bash_completion file for this program", "--bash-completion")
400
401 # Option --stub-man
402 var opt_stub_man = new OptionBool("Generate a stub manpage in pandoc markdown format", "--stub-man")
403
404 # Verbose level
405 var verbose_level: Int = 0
406
407 init
408 do
409 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)
410
411 # Hide some internal options
412 opt_stub_man.hidden = true
413 opt_bash_completion.hidden = true
414 opt_set_dummy_tool.hidden = true
415 end
416
417 # Name, usage and synopsis of the tool.
418 # It is mainly used in `usage`.
419 # Should be correctly set by the client before calling `process_options`
420 # A multi-line string is recommmended.
421 #
422 # eg. `"Usage: tool [OPTION]... [FILE]...\nDo some things."`
423 var tooldescription: String = "Usage: [OPTION]... [ARG]..." is writable
424
425 # Does `process_options` should accept an empty sequence of arguments.
426 # ie. nothing except options.
427 # Is `false` by default.
428 #
429 # If required, if should be set by the client before calling `process_options`
430 var accept_no_arguments = false is writable
431
432 # print the full usage of the tool.
433 # Is called by `process_option` on `--help`.
434 # It also could be called by the client.
435 fun usage
436 do
437 print tooldescription
438 option_context.usage
439 end
440
441 # Parse and process the options given on the command line
442 fun process_options(args: Sequence[String])
443 do
444 self.opt_warn.value = 1
445
446 # init options
447 option_context.parse(args)
448
449 if opt_help.value then
450 usage
451 exit 0
452 end
453
454 if opt_version.value then
455 print version
456 exit 0
457 end
458
459 if opt_bash_completion.value then
460 var bash_completion = new BashCompletion(self)
461 bash_completion.write_to(sys.stdout)
462 exit 0
463 end
464
465 if opt_stub_man.value then
466 print """
467 # NAME
468
469 {{{tooldescription.split("\n")[1]}}}
470
471 # SYNOPSYS
472
473 # OPTIONS
474 """
475 for o in option_context.options do
476 var first = true
477 printn "### "
478 for n in o.names do
479 if first then first = false else printn ", "
480 printn "`{n}`"
481 end
482 print ""
483 print "{o.helptext}."
484 print ""
485 end
486 print """
487 # SEE ALSO
488
489 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>"""
490 exit 0
491 end
492
493 var errors = option_context.errors
494 if not errors.is_empty then
495 for e in errors do print "Error: {e}"
496 print tooldescription
497 print "Use --help for help"
498 exit 1
499 end
500
501 nit_dir = compute_nit_dir
502
503 if option_context.rest.is_empty and not accept_no_arguments then
504 print tooldescription
505 print "Use --help for help"
506 exit 1
507 end
508
509 # Set verbose level
510 verbose_level = opt_verbose.value
511
512 if opt_keep_going.value then keep_going = true
513
514 if self.opt_quiet.value then self.opt_warn.value = 0
515
516 if opt_log_dir.value != null then log_directory = opt_log_dir.value.as(not null)
517 if opt_log.value then
518 # Make sure the output directory exists
519 log_directory.mkdir
520
521 # Redirect the verbose messages
522 log_info = (log_directory/"info.txt").to_path.open_wo
523 end
524 end
525
526 # Get the current `nit_version` or "DUMMY_VERSION" if `--set-dummy-tool` is set.
527 fun version: String do
528 if opt_set_dummy_tool.value then
529 return "DUMMY_VERSION"
530 end
531 return nit_version
532 end
533
534 # Get the name of the tool or "DUMMY_TOOL" id `--set-dummy-tool` is set.
535 fun toolname: String do
536 if opt_set_dummy_tool.value then
537 return "DUMMY_TOOL"
538 end
539 return sys.program_name.basename
540 end
541
542 # The identified root directory of the Nit package
543 var nit_dir: String is noinit
544
545 private fun compute_nit_dir: String
546 do
547 # the option has precedence
548 var res = opt_nit_dir.value
549 if res != null then
550 if not check_nit_dir(res) then
551 fatal_error(null, "Fatal Error: the value of --nit-dir does not seem to be a valid base Nit directory: {res}.")
552 end
553 return res
554 end
555
556 # then the environ variable has precedence
557 res = "NIT_DIR".environ
558 if not res.is_empty then
559 if not check_nit_dir(res) then
560 fatal_error(null, "Fatal Error: the value of NIT_DIR does not seem to be a valid base Nit directory: {res}.")
561 end
562 return res
563 end
564
565 # find the runpath of the program from argv[0]
566 res = "{sys.program_name.dirname}/.."
567 if check_nit_dir(res) then return res.simplify_path
568
569 # find the runpath of the process from /proc
570 var exe = "/proc/self/exe"
571 if exe.file_exists then
572 res = exe.realpath
573 res = res.dirname.join_path("..")
574 if check_nit_dir(res) then return res.simplify_path
575 end
576
577 # search in the PATH
578 var ps = "PATH".environ.split(":")
579 for p in ps do
580 res = p/".."
581 if check_nit_dir(res) then return res.simplify_path
582 end
583
584 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.")
585 abort
586 end
587
588 private fun check_nit_dir(res: String): Bool
589 do
590 return res.file_exists and "{res}/src/nit.nit".file_exists
591 end
592 end
593
594 # This class generates a compatible `bash_completion` script file.
595 #
596 # On some Linux systems `bash_completion` allow the program to control command line behaviour.
597 #
598 # ~~~sh
599 # $ nitls [TAB][TAB]
600 # file1.nit file2.nit file3.nit
601 #
602 # $ nitls --[TAB][TAB]
603 # --bash-toolname --keep --path --tree
604 # --depends --log --package --verbose
605 # --disable-phase --log-dir --quiet --version
606 # --gen-bash-completion --no-color --recursive --warn
607 # --help --only-metamodel --source
608 # --ignore-visibility --only-parse --stop-on-first-error
609 # ~~~
610 #
611 # Generated file can be placed in system bash_completion directory `/etc/bash_completion.d/`
612 # or source it in `~/.bash_completion`.
613 class BashCompletion
614 super Template
615
616 var toolcontext: ToolContext
617
618 private fun extract_options_names: Array[String] do
619 var names = new Array[String]
620 for option in toolcontext.option_context.options do
621 for name in option.names do
622 if name.has_prefix("--") then names.add name
623 end
624 end
625 return names
626 end
627
628 redef fun rendering do
629 var name = toolcontext.toolname
630 var option_names = extract_options_names
631 addn "# generated bash completion file for {name} {toolcontext.version}"
632 addn "_{name}()"
633 addn "\{"
634 addn " local cur prev opts"
635 addn " COMPREPLY=()"
636 addn " cur=\"$\{COMP_WORDS[COMP_CWORD]\}\""
637 addn " prev=\"$\{COMP_WORDS[COMP_CWORD-1]\}\""
638 if not option_names.is_empty then
639 addn " opts=\"{option_names.join(" ")}\""
640 addn " if [[ $\{cur\} == -* ]] ; then"
641 addn " COMPREPLY=( $(compgen -W \"$\{opts\}\" -- $\{cur\}) )"
642 addn " return 0"
643 addn " fi"
644 end
645 addn "\} &&"
646 addn "complete -o default -F _{name} {name}"
647 end
648 end