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