toolcontext: make compute_nit_dir more robust
[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 --help
250 var opt_help = new OptionBool("Show Help (This screen)", "-h", "-?", "--help")
251
252 # Option --version
253 var opt_version = new OptionBool("Show version and exit", "--version")
254
255 # Option --set-dummy-tool
256 var opt_set_dummy_tool = new OptionBool("Set toolname and version to DUMMY. Useful for testing", "--set-dummy-tool")
257
258 # Option --verbose
259 var opt_verbose = new OptionCount("Verbose", "-v", "--verbose")
260
261 # Option --stop-on-first-error
262 var opt_stop_on_first_error = new OptionBool("Stop on first error", "--stop-on-first-error")
263
264 # Option --no-color
265 var opt_no_color = new OptionBool("Do not use color to display errors and warnings", "--no-color")
266
267 # Option --bash-completion
268 var opt_bash_completion = new OptionBool("Generate bash_completion file for this program", "--bash-completion")
269
270 # Option --stub-man
271 var opt_stub_man = new OptionBool("Generate a stub manpage in pandoc markdown format", "--stub-man")
272
273 # Verbose level
274 var verbose_level: Int = 0
275
276 init
277 do
278 option_context.add_option(opt_warn, opt_warning, opt_quiet, opt_stop_on_first_error, opt_no_color, opt_log, opt_log_dir, opt_help, opt_version, opt_set_dummy_tool, opt_verbose, opt_bash_completion, opt_stub_man)
279 end
280
281 # Name, usage and synopsis of the tool.
282 # It is mainly used in `usage`.
283 # Should be correctly set by the client before calling `process_options`
284 # A multi-line string is recommmended.
285 #
286 # eg. `"Usage: tool [OPTION]... [FILE]...\nDo some things."`
287 var tooldescription: String = "Usage: [OPTION]... [ARG]..." is writable
288
289 # Does `process_options` should accept an empty sequence of arguments.
290 # ie. nothing except options.
291 # Is `false` by default.
292 #
293 # If required, if should be set by the client before calling `process_options`
294 var accept_no_arguments = false is writable
295
296 # print the full usage of the tool.
297 # Is called by `process_option` on `--help`.
298 # It also could be called by the client.
299 fun usage
300 do
301 print tooldescription
302 option_context.usage
303 end
304
305 # Parse and process the options given on the command line
306 fun process_options(args: Sequence[String])
307 do
308 self.opt_warn.value = 1
309
310 # init options
311 option_context.parse(args)
312
313 if opt_help.value then
314 usage
315 exit 0
316 end
317
318 if opt_version.value then
319 print version
320 exit 0
321 end
322
323 if opt_bash_completion.value then
324 var bash_completion = new BashCompletion(self)
325 bash_completion.write_to(sys.stdout)
326 exit 0
327 end
328
329 if opt_stub_man.value then
330 print """
331 % {{{toolname.to_upper}}}(1)
332
333 # NAME
334
335 {{{tooldescription.split("\n")[1]}}}
336
337 # SYNOPSYS
338
339 {{{toolname}}} [*options*]...
340
341 # OPTIONS
342 """
343 for o in option_context.options do
344 var first = true
345 for n in o.names do
346 if first then first = false else printn ", "
347 printn "`{n}`"
348 end
349 print ""
350 print ": {o.helptext}"
351 print ""
352 end
353 print """
354 # SEE ALSO
355
356 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>"""
357 exit 0
358 end
359
360 var errors = option_context.get_errors
361 if not errors.is_empty then
362 for e in errors do print "Error: {e}"
363 print tooldescription
364 print "Use --help for help"
365 exit 1
366 end
367
368 if option_context.rest.is_empty and not accept_no_arguments then
369 print tooldescription
370 print "Use --help for help"
371 exit 1
372 end
373
374 # Set verbose level
375 verbose_level = opt_verbose.value
376
377 if self.opt_quiet.value then self.opt_warn.value = 0
378
379 if opt_log_dir.value != null then log_directory = opt_log_dir.value.as(not null)
380 if opt_log.value then
381 # Make sure the output directory exists
382 log_directory.mkdir
383 end
384
385 nit_dir = compute_nit_dir
386 end
387
388 # Get the current `nit_version` or "DUMMY_VERSION" if `--set-dummy-tool` is set.
389 fun version: String do
390 if opt_set_dummy_tool.value then
391 return "DUMMY_VERSION"
392 end
393 return nit_version
394 end
395
396 # Get the name of the tool or "DUMMY_TOOL" id `--set-dummy-tool` is set.
397 fun toolname: String do
398 if opt_set_dummy_tool.value then
399 return "DUMMY_TOOL"
400 end
401 return sys.program_name.basename("")
402 end
403
404 # The identified root directory of the Nit project
405 var nit_dir: nullable String = null
406
407 private fun compute_nit_dir: String
408 do
409 # a environ variable has precedence
410 var res = "NIT_DIR".environ
411 if not res.is_empty then
412 if not check_nit_dir(res) then
413 fatal_error(null, "Fatal Error: the value of NIT_DIR does not seem to be a valid base Nit directory: {res}")
414 end
415 return res
416 end
417
418 # find the runpath of the program from argv[0]
419 res = "{sys.program_name.dirname}/.."
420 if check_nit_dir(res) then return res.simplify_path
421
422 # find the runpath of the process from /proc
423 var exe = "/proc/self/exe"
424 if exe.file_exists then
425 res = exe.realpath
426 res = res.dirname.join_path("..")
427 if check_nit_dir(res) then return res.simplify_path
428 end
429
430 # search in the PATH
431 var ps = "PATH".environ.split(":")
432 for p in ps do
433 res = p/".."
434 if check_nit_dir(res) then return res.simplify_path
435 end
436
437 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.")
438 abort
439 end
440
441 private fun check_nit_dir(res: String): Bool
442 do
443 return res.file_exists and "{res}/src/nit.nit".file_exists
444 end
445 end
446
447 # This class generates a compatible `bash_completion` script file.
448 #
449 # On some Linux systems `bash_completion` allow the program to control command line behaviour.
450 #
451 # $ nitls [TAB][TAB]
452 # file1.nit file2.nit file3.nit
453 #
454 # $ nitls --[TAB][TAB]
455 # --bash-toolname --keep --path --tree
456 # --depends --log --project --verbose
457 # --disable-phase --log-dir --quiet --version
458 # --gen-bash-completion --no-color --recursive --warn
459 # --help --only-metamodel --source
460 # --ignore-visibility --only-parse --stop-on-first-error
461 #
462 # Generated file can be placed in system bash_completion directory `/etc/bash_completion.d/`
463 # or source it in `~/.bash_completion`.
464 class BashCompletion
465 super Template
466
467 var toolcontext: ToolContext
468
469 init(toolcontext: ToolContext) do
470 self.toolcontext = toolcontext
471 end
472
473 private fun extract_options_names: Array[String] do
474 var names = new Array[String]
475 for option in toolcontext.option_context.options do
476 for name in option.names do
477 if name.has_prefix("--") then names.add name
478 end
479 end
480 return names
481 end
482
483 redef fun rendering do
484 var name = toolcontext.toolname
485 var option_names = extract_options_names
486 addn "# generated bash completion file for {name} {toolcontext.version}"
487 addn "_{name}()"
488 addn "\{"
489 addn " local cur prev opts"
490 addn " COMPREPLY=()"
491 addn " cur=\"$\{COMP_WORDS[COMP_CWORD]\}\""
492 addn " prev=\"$\{COMP_WORDS[COMP_CWORD-1]\}\""
493 if not option_names.is_empty then
494 addn " opts=\"{option_names.join(" ")}\""
495 addn " if [[ $\{cur\} == -* ]] ; then"
496 addn " COMPREPLY=( $(compgen -W \"$\{opts\}\" -- $\{cur\}) )"
497 addn " return 0"
498 addn " fi"
499 end
500 addn "\} &&"
501 addn "complete -o default -F _{name} {name}"
502 end
503 end