toolcontext: attach errors message to their location
[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 # It should be short and fit on a single line.
45 # It should also have meaningful information first in case
46 # on truncation by an IDE for instance.
47 var text: String
48
49 # Comparisons are made on message locations.
50 redef fun <(other: OTHER): Bool do
51 if location == null then return true
52 if other.location == null then return false
53
54 return location.as(not null) < other.location.as(not null)
55 end
56
57 redef fun to_s: String
58 do
59 var l = location
60 if l == null then
61 return text
62 else
63 return "{l}: {text}"
64 end
65 end
66
67 # A colored version of the message including the original source line
68 fun to_color_string: String
69 do
70 var esc = 27.ascii
71 #var red = "{esc}[0;31m"
72 #var bred = "{esc}[1;31m"
73 #var green = "{esc}[0;32m"
74 var yellow = "{esc}[0;33m"
75 var def = "{esc}[0m"
76
77 var tag = tag
78 if tag != null then
79 tag = " ({tag})"
80 else
81 tag = ""
82 end
83 var l = location
84 if l == null then
85 return "{text}{tag}"
86 else if l.file == null then
87 return "{yellow}{l}{def}: {text}{tag}"
88 else
89 return "{yellow}{l}{def}: {text}{tag}\n{l.colored_line("1;31")}"
90 end
91 end
92 end
93
94 redef class Location
95 # Errors and warnings associated to this location.
96 var messages: nullable Array[Message]
97
98 # Add a message to `self`
99 #
100 # See `messages`
101 private fun add_message(m: Message)
102 do
103 var ms = messages
104 if ms == null then
105 ms = new Array[Message]
106 messages = ms
107 end
108 ms.add m
109 end
110 end
111
112 # Global context for tools
113 class ToolContext
114 # Number of errors
115 var error_count: Int = 0
116
117 # Number of warnings
118 var warning_count: Int = 0
119
120 # Directory where to generate log files
121 var log_directory: String = "logs"
122
123 # Stream in `log_directory` where all info messages are written
124 var log_info: nullable Writer = null
125
126 # Messages
127 private var messages = new Array[Message]
128 private var message_sorter: Comparator = default_comparator
129
130 # Does an error prevent the program to stop at `check_errors`?
131 #
132 # Default to false.
133 # Set this value to `true` if you need to keep the program going in case of error.
134 var keep_going = false is writable
135
136 # List of tags per source-file whose warnings are not displayed.
137 #
138 # Initially empty, it is up to the toll to fill it.
139 # The tag "all" means all warnings and advices.
140 var warning_blacklist = new MultiHashMap[SourceFile, String]
141
142 # Is the source-file of `l` associated with `tag` in `warning_blacklist`?
143 #
144 # currently returns `false` if `l` is null or does not have a source-file.
145 fun is_warning_blacklisted(l: nullable Location, tag: String): Bool
146 do
147 if l == null then return false
148 var f = l.file
149 if f == null then return false
150 var tags = warning_blacklist.get_or_null(f)
151 if tags == null then return false
152 return tags.has("all") or tags.has(tag)
153 end
154
155 # Output all current stacked messages
156 #
157 # Return true if no errors occurred.
158 #
159 # If some errors occurred, the behavior depends on the value of `keep_going`.
160 # If `keep_going` is false, then the total error informations is displayed and the program exits.
161 # Else, false is returned.
162 fun check_errors: Bool
163 do
164 if messages.length > 0 then
165 message_sorter.sort(messages)
166
167 for m in messages do
168 if opt_no_color.value then
169 sys.stderr.write("{m}\n")
170 else
171 sys.stderr.write("{m.to_color_string}\n")
172 end
173 end
174
175 messages.clear
176 end
177
178 if error_count > 0 then
179 if not keep_going then
180 errors_info
181 exit(1)
182 end
183 return false
184 end
185 return true
186 end
187
188 # Display total error informations
189 fun errors_info
190 do
191 if error_count == 0 and warning_count == 0 then return
192 if opt_no_color.value then return
193 sys.stderr.write "Errors: {error_count}. Warnings: {warning_count}.\n"
194 end
195
196 # Display an error
197 fun error(l: nullable Location, s: String)
198 do
199 var m = new Message(l,null,s)
200 if l != null then l.add_message m
201 messages.add m
202 error_count = error_count + 1
203 if opt_stop_on_first_error.value then check_errors
204 end
205
206 # Add an error, show errors and quit
207 fun fatal_error(l: nullable Location, s: String)
208 do
209 error(l,s)
210 check_errors
211 end
212
213 # Display a first-level warning.
214 #
215 # First-level warnings are warnings that SHOULD be corrected,
216 # and COULD usually be immediately corrected.
217 #
218 # * There is a simple correction
219 # * There is no reason to let the code this way (no reasonable @supresswarning-like annotation)
220 # * They always are real issues (no false positive)
221 #
222 # First-level warnings are displayed by default (except if option `-q` is given).
223 fun warning(l: nullable Location, tag: String, text: String)
224 do
225 if opt_warning.value.has("no-{tag}") then return
226 if not opt_warning.value.has(tag) and opt_warn.value == 0 then return
227 if is_warning_blacklisted(l, tag) then return
228 var m = new Message(l, tag, text)
229 if l != null then l.add_message m
230 messages.add m
231 warning_count = warning_count + 1
232 if opt_stop_on_first_error.value then check_errors
233 end
234
235 # Display a second-level warning.
236 #
237 # Second-level warnings are warnings that should require investigation,
238 # but cannot always be immediately corrected.
239 #
240 # * The correction could be complex. e.g. require a refactorisation or an API change.
241 # * The correction cannot be done. e.g. Code that use a deprecated API for some compatibility reason.
242 # * There is not a real issue (false positive). Note that this should be unlikely.
243 # * Transitional: While a real warning, it fires a lot in current code, so a transition is needed
244 # in order to fix them before promoting the advice to a warning.
245 #
246 # In order to prevent warning inflation à la Java, second-level warnings are not displayed by
247 # default and require an additional option `-W`.
248 fun advice(l: nullable Location, tag: String, text: String)
249 do
250 if opt_warning.value.has("no-{tag}") then return
251 if not opt_warning.value.has(tag) and opt_warn.value <= 1 then return
252 if is_warning_blacklisted(l, tag) then return
253 var m = new Message(l, tag, text)
254 if l != null then l.add_message m
255 messages.add m
256 warning_count = warning_count + 1
257 if opt_stop_on_first_error.value then check_errors
258 end
259
260 # Display an info
261 fun info(s: String, level: Int)
262 do
263 if level <= verbose_level then
264 print "{s}"
265 end
266 if log_info != null then
267 log_info.write s
268 log_info.write "\n"
269 end
270 end
271
272 # Executes a program while checking if it's available and if the execution ended correctly
273 #
274 # Stops execution and prints errors if the program isn't available or didn't end correctly
275 fun exec_and_check(args: Array[String], error: String)
276 do
277 info("+ {args.join(" ")}", 2)
278
279 var prog = args.first
280 args.remove_at 0
281
282 # Is the wanted program available?
283 var proc_which = new ProcessReader.from_a("which", [prog])
284 proc_which.wait
285 var res = proc_which.status
286 if res != 0 then
287 print "{error}: executable \"{prog}\" not found"
288 exit 1
289 end
290
291 # Execute the wanted program
292 var proc = new Process.from_a(prog, args)
293 proc.wait
294 res = proc.status
295 if res != 0 then
296 print "{error}: execution of \"{prog} {args.join(" ")}\" failed"
297 exit 1
298 end
299 end
300
301 # Global OptionContext
302 var option_context = new OptionContext
303
304 # Option --warn
305 var opt_warn = new OptionCount("Show more warnings", "-W", "--warn")
306
307 # Option --warning
308 var opt_warning = new OptionArray("Show/hide a specific warning", "-w", "--warning")
309
310 # Option --quiet
311 var opt_quiet = new OptionBool("Do not show warnings", "-q", "--quiet")
312
313 # Option --log
314 var opt_log = new OptionBool("Generate various log files", "--log")
315
316 # Option --log-dir
317 var opt_log_dir = new OptionString("Directory where to generate log files", "--log-dir")
318
319 # Option --nit-dir
320 var opt_nit_dir = new OptionString("Base directory of the Nit installation", "--nit-dir")
321
322 # Option --help
323 var opt_help = new OptionBool("Show Help (This screen)", "-h", "-?", "--help")
324
325 # Option --version
326 var opt_version = new OptionBool("Show version and exit", "--version")
327
328 # Option --set-dummy-tool
329 var opt_set_dummy_tool = new OptionBool("Set toolname and version to DUMMY. Useful for testing", "--set-dummy-tool")
330
331 # Option --verbose
332 var opt_verbose = new OptionCount("Verbose", "-v", "--verbose")
333
334 # Option --stop-on-first-error
335 var opt_stop_on_first_error = new OptionBool("Stop on first error", "--stop-on-first-error")
336
337 # Option --no-color
338 var opt_no_color = new OptionBool("Do not use color to display errors and warnings", "--no-color")
339
340 # Option --bash-completion
341 var opt_bash_completion = new OptionBool("Generate bash_completion file for this program", "--bash-completion")
342
343 # Option --stub-man
344 var opt_stub_man = new OptionBool("Generate a stub manpage in pandoc markdown format", "--stub-man")
345
346 # Verbose level
347 var verbose_level: Int = 0
348
349 init
350 do
351 option_context.add_option(opt_warn, opt_warning, opt_quiet, opt_stop_on_first_error, 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)
352
353 # Hide some internal options
354 opt_stub_man.hidden = true
355 opt_bash_completion.hidden = true
356 opt_set_dummy_tool.hidden = true
357 end
358
359 # Name, usage and synopsis of the tool.
360 # It is mainly used in `usage`.
361 # Should be correctly set by the client before calling `process_options`
362 # A multi-line string is recommmended.
363 #
364 # eg. `"Usage: tool [OPTION]... [FILE]...\nDo some things."`
365 var tooldescription: String = "Usage: [OPTION]... [ARG]..." is writable
366
367 # Does `process_options` should accept an empty sequence of arguments.
368 # ie. nothing except options.
369 # Is `false` by default.
370 #
371 # If required, if should be set by the client before calling `process_options`
372 var accept_no_arguments = false is writable
373
374 # print the full usage of the tool.
375 # Is called by `process_option` on `--help`.
376 # It also could be called by the client.
377 fun usage
378 do
379 print tooldescription
380 option_context.usage
381 end
382
383 # Parse and process the options given on the command line
384 fun process_options(args: Sequence[String])
385 do
386 self.opt_warn.value = 1
387
388 # init options
389 option_context.parse(args)
390
391 if opt_help.value then
392 usage
393 exit 0
394 end
395
396 if opt_version.value then
397 print version
398 exit 0
399 end
400
401 if opt_bash_completion.value then
402 var bash_completion = new BashCompletion(self)
403 bash_completion.write_to(sys.stdout)
404 exit 0
405 end
406
407 if opt_stub_man.value then
408 print """
409 % {{{toolname.to_upper}}}(1)
410
411 # NAME
412
413 {{{tooldescription.split("\n")[1]}}}
414
415 # SYNOPSYS
416
417 {{{toolname}}} [*options*]...
418
419 # OPTIONS
420 """
421 for o in option_context.options do
422 var first = true
423 for n in o.names do
424 if first then first = false else printn ", "
425 printn "`{n}`"
426 end
427 print ""
428 print ": {o.helptext}"
429 print ""
430 end
431 print """
432 # SEE ALSO
433
434 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>"""
435 exit 0
436 end
437
438 var errors = option_context.get_errors
439 if not errors.is_empty then
440 for e in errors do print "Error: {e}"
441 print tooldescription
442 print "Use --help for help"
443 exit 1
444 end
445
446 nit_dir = compute_nit_dir
447
448 if option_context.rest.is_empty and not accept_no_arguments then
449 print tooldescription
450 print "Use --help for help"
451 exit 1
452 end
453
454 # Set verbose level
455 verbose_level = opt_verbose.value
456
457 if self.opt_quiet.value then self.opt_warn.value = 0
458
459 if opt_log_dir.value != null then log_directory = opt_log_dir.value.as(not null)
460 if opt_log.value then
461 # Make sure the output directory exists
462 log_directory.mkdir
463
464 # Redirect the verbose messages
465 log_info = (log_directory/"info.txt").to_path.open_wo
466 end
467 end
468
469 # Get the current `nit_version` or "DUMMY_VERSION" if `--set-dummy-tool` is set.
470 fun version: String do
471 if opt_set_dummy_tool.value then
472 return "DUMMY_VERSION"
473 end
474 return nit_version
475 end
476
477 # Get the name of the tool or "DUMMY_TOOL" id `--set-dummy-tool` is set.
478 fun toolname: String do
479 if opt_set_dummy_tool.value then
480 return "DUMMY_TOOL"
481 end
482 return sys.program_name.basename("")
483 end
484
485 # The identified root directory of the Nit project
486 var nit_dir: String is noinit
487
488 private fun compute_nit_dir: String
489 do
490 # the option has precedence
491 var res = opt_nit_dir.value
492 if res != null then
493 if not check_nit_dir(res) then
494 fatal_error(null, "Fatal Error: the value of --nit-dir does not seem to be a valid base Nit directory: {res}")
495 end
496 return res
497 end
498
499 # then the environ variable has precedence
500 res = "NIT_DIR".environ
501 if not res.is_empty then
502 if not check_nit_dir(res) then
503 fatal_error(null, "Fatal Error: the value of NIT_DIR does not seem to be a valid base Nit directory: {res}")
504 end
505 return res
506 end
507
508 # find the runpath of the program from argv[0]
509 res = "{sys.program_name.dirname}/.."
510 if check_nit_dir(res) then return res.simplify_path
511
512 # find the runpath of the process from /proc
513 var exe = "/proc/self/exe"
514 if exe.file_exists then
515 res = exe.realpath
516 res = res.dirname.join_path("..")
517 if check_nit_dir(res) then return res.simplify_path
518 end
519
520 # search in the PATH
521 var ps = "PATH".environ.split(":")
522 for p in ps do
523 res = p/".."
524 if check_nit_dir(res) then return res.simplify_path
525 end
526
527 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.")
528 abort
529 end
530
531 private fun check_nit_dir(res: String): Bool
532 do
533 return res.file_exists and "{res}/src/nit.nit".file_exists
534 end
535 end
536
537 # This class generates a compatible `bash_completion` script file.
538 #
539 # On some Linux systems `bash_completion` allow the program to control command line behaviour.
540 #
541 # $ nitls [TAB][TAB]
542 # file1.nit file2.nit file3.nit
543 #
544 # $ nitls --[TAB][TAB]
545 # --bash-toolname --keep --path --tree
546 # --depends --log --project --verbose
547 # --disable-phase --log-dir --quiet --version
548 # --gen-bash-completion --no-color --recursive --warn
549 # --help --only-metamodel --source
550 # --ignore-visibility --only-parse --stop-on-first-error
551 #
552 # Generated file can be placed in system bash_completion directory `/etc/bash_completion.d/`
553 # or source it in `~/.bash_completion`.
554 class BashCompletion
555 super Template
556
557 var toolcontext: ToolContext
558
559 private fun extract_options_names: Array[String] do
560 var names = new Array[String]
561 for option in toolcontext.option_context.options do
562 for name in option.names do
563 if name.has_prefix("--") then names.add name
564 end
565 end
566 return names
567 end
568
569 redef fun rendering do
570 var name = toolcontext.toolname
571 var option_names = extract_options_names
572 addn "# generated bash completion file for {name} {toolcontext.version}"
573 addn "_{name}()"
574 addn "\{"
575 addn " local cur prev opts"
576 addn " COMPREPLY=()"
577 addn " cur=\"$\{COMP_WORDS[COMP_CWORD]\}\""
578 addn " prev=\"$\{COMP_WORDS[COMP_CWORD-1]\}\""
579 if not option_names.is_empty then
580 addn " opts=\"{option_names.join(" ")}\""
581 addn " if [[ $\{cur\} == -* ]] ; then"
582 addn " COMPREPLY=( $(compgen -W \"$\{opts\}\" -- $\{cur\}) )"
583 addn " return 0"
584 addn " fi"
585 end
586 addn "\} &&"
587 addn "complete -o default -F _{name} {name}"
588 end
589 end