OILS / frontend / option_def.py View on Github | oilshell.org

417 lines, 210 significant
1#!/usr/bin/env python2
2from __future__ import print_function
3
4from typing import List, Dict, Optional, Tuple, Any
5
6
7class Option(object):
8
9 def __init__(self,
10 index,
11 name,
12 short_flag=None,
13 builtin='shopt',
14 default=False,
15 implemented=True,
16 groups=None):
17 # type: (int, str, str, Optional[str], bool, bool, List[str]) -> None
18 self.index = index
19 self.name = name # e.g. 'errexit'
20 self.short_flag = short_flag # 'e' for -e
21
22 if short_flag:
23 self.builtin = 'set'
24 else:
25 # The 'interactive' option is the only one where builtin is None. It has
26 # a cell but you can't change it. Only the shell can.
27 self.builtin = builtin
28
29 self.default = default # default value is True in some cases
30 self.implemented = implemented
31 self.groups = groups or [] # list of groups
32
33 # for optview
34 self.is_parse = (name.startswith('parse_') or
35 name.startswith('strict_parse_') or
36 name == 'expand_aliases')
37 # interactive() is an accessor
38 self.is_exec = implemented and not self.is_parse
39
40
41class _OptionDef(object):
42 """Description of all shell options.
43
44 Similar to id_kind_def.IdSpec
45 """
46
47 def __init__(self):
48 # type: () -> None
49 self.opts = [] # type: List[Option]
50 self.index = 1 # start with 1
51 self.array_size = -1
52
53 def Add(self, *args, **kwargs):
54 # type: (Any, Any) -> None
55 self.opts.append(Option(self.index, *args, **kwargs))
56 self.index += 1
57
58 def DoneWithImplementedOptions(self):
59 # type: () -> None
60 self.array_size = self.index
61
62
63# Used by builtin
64_OTHER_SET_OPTIONS = [
65 # NOTE: set -i and +i is explicitly disallowed. Only osh -i or +i is valid
66 # https://unix.stackexchange.com/questions/339506/can-an-interactive-shell-become-non-interactive-or-vice-versa
67 ('n', 'noexec'),
68 ('x', 'xtrace'),
69 ('v', 'verbose'), # like xtrace, but prints unevaluated commands
70 ('f', 'noglob'),
71 ('C', 'noclobber'),
72 ('E', 'errtrace'),
73
74 # A no-op for modernish.
75 (None, 'posix'),
76 (None, 'vi'),
77 (None, 'emacs'),
78]
79
80_STRICT_OPTS = [
81 # $a{[@]::} is not allowed, you need ${a[@]::0} or ${a[@]::n}
82 'strict_parse_slice',
83
84 # These are RUNTIME strict options.
85 'strict_argv', # empty argv not allowed
86 'strict_arith', # string to integer conversions, e.g. x=foo; echo $(( x ))
87
88 # No implicit conversions between string and array.
89 # - foo="$@" not allowed because it decays. Should be foo=( "$@" ).
90 # - ${a} not ${a[0]} (not implemented)
91 # sane-array? compare arrays like [[ "$@" == "${a[@]}" ]], which is
92 # incompatible because bash coerces
93 # default: do not allow
94 'strict_array',
95 'strict_control_flow', # break/continue at top level is fatal
96 # 'return $empty' and return "" are NOT accepted
97 'strict_errexit', # errexit can't be disabled in compound commands
98 'strict_nameref', # trap invalid variable names
99 'strict_word_eval', # negative slices, unicode
100 'strict_tilde', # ~nonexistent is an error (like zsh)
101
102 # Not implemented
103 'strict_glob', # glob_.py GlobParser has warnings
104]
105
106# These will break some programs, but the fix should be simple.
107
108# command_sub_errexit makes 'local foo=$(false)' and echo $(false) fail.
109# By default, we have mimic bash's undesirable behavior of ignoring
110# these failures, since ash copied it, and Alpine's abuild relies on it.
111#
112# Note that inherit_errexit is a strict option.
113
114_UPGRADE_RUNTIME_OPTS = [
115 ('simple_word_eval', False), # No splitting; arity isn't data-dependent
116 # Don't reparse program data as globs
117 ('dashglob', True), # do globs return files starting with - ?
118
119 # TODO: Should these be in strict mode?
120 # The logic was that strict_errexit improves your bash programs, but these
121 # would lead you to remove error handling. But the same could be said for
122 # strict_array?
123 ('command_sub_errexit', False), # check after command sub
124 ('process_sub_fail', False), # like pipefail, but for <(sort foo.txt)
125 ('xtrace_rich', False), # Hierarchical trace with PIDs
126 ('xtrace_details', True), # Legacy set -x stuff
127
128 # Whether status 141 in pipelines is turned into 0
129 ('sigpipe_status_ok', False),
130]
131
132# TODO: Add strict_arg_parse? For example, 'trap 1 2 3' shouldn't be
133# valid, because it has an extra argument. Builtins are inconsistent about
134# checking this.
135
136_YSH_RUNTIME_OPTS = [
137 ('simple_echo', False), # echo takes 0 or 1 arguments
138 ('simple_eval_builtin', False), # eval takes exactly 1 argument
139
140 # only file tests (no strings), remove [, status 2
141 ('simple_test_builtin', False),
142
143 # TODO: simple_trap
144
145 # Turn aliases off so we can statically parse. bash has it off
146 # non-interactively, sothis shouldn't break much.
147 ('expand_aliases', True),
148]
149
150# Stuff that doesn't break too many programs.
151_UPGRADE_PARSE_OPTS = [
152 'parse_at', # @array, @[expr]
153 'parse_proc', # proc p { ... }
154 'parse_func', # func f(x) { ... }
155 'parse_brace', # cd /bin { ... }
156 'parse_bracket', # assert [42 === x]
157
158 # bare assignment 'x = 42' is allowed in Hay { } blocks, but disallowed
159 # everywhere else. It's not a command 'x' with arg '='.
160 'parse_equals',
161 'parse_paren', # if (x > 0) ...
162 'parse_ysh_string', # r'' u'' b'' and multi-line versions
163 'parse_triple_quote', # for ''' and """
164]
165
166# Extra stuff that breaks too many programs.
167_YSH_PARSE_OPTS = [
168 ('parse_at_all', False), # @ starting any word, e.g. @[] @{} @@ @_ @-
169
170 # Legacy syntax that is removed. These options are distinct from strict_*
171 # because they don't help you avoid bugs in bash programs. They just makes
172 # the language more consistent.
173 ('parse_backslash', True),
174 ('parse_backticks', True),
175 ('parse_dollar', True),
176 ('parse_ignored', True),
177 ('parse_sh_arith', True), # disallow all shell arithmetic, $(( )) etc.
178 ('parse_dparen', True), # disallow bash's ((
179 ('parse_dbracket', True), # disallow bash's [[
180 ('parse_bare_word', True), # 'case bare' and 'for x in bare'
181]
182
183# No-ops for bash compatibility
184_NO_OPS = [
185 # Handled one by one
186 'progcomp',
187 'histappend', # stubbed out for issue #218
188 'hostcomplete', # complete words with '@' ?
189 'cmdhist', # multi-line commands in history
190
191 # Copied from https://www.gnu.org/software/bash/manual/bash.txt
192 # except 'compat*' because they were deemed too ugly
193 'assoc_expand_once',
194 'autocd',
195 'cdable_vars',
196 'cdspell',
197 'checkhash',
198 'checkjobs',
199 'checkwinsize',
200 'complete_fullquote', # Set by default
201 # If set, Bash quotes all shell metacharacters in filenames and
202 # directory names when performing completion. If not set, Bash
203 # removes metacharacters such as the dollar sign from the set of
204 # characters that will be quoted in completed filenames when
205 # these metacharacters appear in shell variable references in
206 # words to be completed. This means that dollar signs in
207 # variable names that expand to directories will not be quoted;
208 # however, any dollar signs appearing in filenames will not be
209 # quoted, either. This is active only when bash is using
210 # backslashes to quote completed filenames. This variable is
211 # set by default, which is the default Bash behavior in versions
212 # through 4.2.
213 'direxpand',
214 'dirspell',
215 'dotglob',
216 'execfail',
217 'extdebug', # for --debugger?
218 'extquote',
219 'force_fignore',
220 'globasciiranges',
221 'globstar', # TODO: implement **
222 'gnu_errfmt',
223 'histreedit',
224 'histverify',
225 'huponexit',
226 'interactive_comments',
227 'lithist',
228 'localvar_inherit',
229 'localvar_unset',
230 'login_shell',
231 'mailwarn',
232 'no_empty_cmd_completion',
233 'nocaseglob',
234 'progcomp_alias',
235 'promptvars',
236 'restricted_shell',
237 'shift_verbose',
238 'sourcepath',
239 'xpg_echo',
240]
241
242
243def _Init(opt_def):
244 # type: (_OptionDef) -> None
245
246 opt_def.Add('errexit',
247 short_flag='e',
248 builtin='set',
249 groups=['ysh:upgrade', 'ysh:all'])
250 opt_def.Add('nounset',
251 short_flag='u',
252 builtin='set',
253 groups=['ysh:upgrade', 'ysh:all'])
254 opt_def.Add('pipefail', builtin='set', groups=['ysh:upgrade', 'ysh:all'])
255
256 opt_def.Add('inherit_errexit', groups=['ysh:upgrade', 'ysh:all'])
257 # Hm is this subsumed by simple_word_eval?
258 opt_def.Add('nullglob', groups=['ysh:upgrade', 'ysh:all'])
259 opt_def.Add('verbose_errexit', groups=['ysh:upgrade', 'ysh:all'])
260
261 # set -o noclobber, etc.
262 for short_flag, name in _OTHER_SET_OPTIONS:
263 opt_def.Add(name, short_flag=short_flag, builtin='set')
264
265 # The only one where builtin=None. Only the shell can change it.
266 opt_def.Add('interactive', builtin=None)
267
268 # bash --norc -c 'set -o' shows this is on by default
269 opt_def.Add('hashall', short_flag='h', builtin='set', default=True)
270
271 # This option is always on
272 opt_def.Add('lastpipe', default=True)
273
274 #
275 # shopt
276 # (bash uses $BASHOPTS rather than $SHELLOPTS)
277 #
278
279 # shopt options that aren't in any groups.
280 opt_def.Add('failglob')
281 opt_def.Add('extglob')
282 opt_def.Add('nocasematch')
283
284 # Should we copy the environment in to the global stack frame?
285 # TODO: This may be off in YSH
286 opt_def.Add('no_copy_env')
287
288 # recursive parsing and evaluation - for compatibility, ble.sh, etc.
289 opt_def.Add('eval_unsafe_arith')
290
291 opt_def.Add('ignore_flags_not_impl')
292 opt_def.Add('ignore_shopt_not_impl')
293
294 # For implementing strict_errexit
295 # TODO: could be _no_command_sub / _no_process_sub, if we had to discourage
296 # "default True" options
297 opt_def.Add('_allow_command_sub', default=True)
298 opt_def.Add('_allow_process_sub', default=True)
299
300 # For implementing 'proc'
301 opt_def.Add('dynamic_scope', default=True)
302
303 # On in interactive shell
304 opt_def.Add('redefine_const', default=False)
305 opt_def.Add('redefine_source', default=False)
306
307 # For disabling strict_errexit while running traps. Because we run in the
308 # main loop, the value can be "off". Prefix with _ because it's undocumented
309 # and users shouldn't fiddle with it. We need a stack so this is a
310 # convenient place.
311 opt_def.Add('_running_trap')
312 opt_def.Add('_running_hay')
313
314 # For fixing lastpipe / job control / DEBUG trap interaction
315 opt_def.Add('_no_debug_trap')
316 # To implement ERR trap semantics - it's only run for the WHOLE pipeline,
317 # not each part (even the last part)
318 opt_def.Add('_no_err_trap')
319
320 # shopt -s strict_arith, etc.
321 for name in _STRICT_OPTS:
322 opt_def.Add(name, groups=['strict:all', 'ysh:all'])
323
324 #
325 # Options that enable YSH features
326 #
327
328 for name in _UPGRADE_PARSE_OPTS:
329 opt_def.Add(name, groups=['ysh:upgrade', 'ysh:all'])
330 # shopt -s simple_word_eval, etc.
331 for name, default in _UPGRADE_RUNTIME_OPTS:
332 opt_def.Add(name, default=default, groups=['ysh:upgrade', 'ysh:all'])
333
334 for name, default in _YSH_PARSE_OPTS:
335 opt_def.Add(name, default=default, groups=['ysh:all'])
336 for name, default in _YSH_RUNTIME_OPTS:
337 opt_def.Add(name, default=default, groups=['ysh:all'])
338
339 opt_def.DoneWithImplementedOptions()
340
341 # NO_OPS
342
343 # Stubs for shopt -s xpg_echo, etc.
344 for name in _NO_OPS:
345 opt_def.Add(name, implemented=False)
346
347
348def All():
349 # type: () -> List[Option]
350 """Return a list of options with metadata.
351
352 - Used by osh/builtin_pure.py to construct the arg spec.
353 - Used by frontend/lexer_gen.py to construct the lexer/matcher
354 """
355 return _OPTION_DEF.opts
356
357
358def ArraySize():
359 # type: () -> int
360 """Unused now, since we use opt_num::ARRAY_SIZE.
361
362 We could get rid of unimplemented options and shrink the array.
363 """
364 return _OPTION_DEF.array_size
365
366
367def OptionDict():
368 # type: () -> Dict[str, Tuple[int, bool]]
369 """Implemented options.
370
371 For the slow path in frontend/consts.py
372 """
373 d = {}
374 for opt in _OPTION_DEF.opts:
375 d[opt.name] = (opt.index, opt.implemented)
376 return d
377
378
379def ParseOptNames():
380 # type: () -> List[str]
381 """Used by core/optview*.py."""
382 return [opt.name for opt in _OPTION_DEF.opts if opt.is_parse]
383
384
385def ExecOptNames():
386 # type: () -> List[str]
387 """Used by core/optview*.py."""
388 return [opt.name for opt in _OPTION_DEF.opts if opt.is_exec]
389
390
391_OPTION_DEF = _OptionDef()
392
393_Init(_OPTION_DEF)
394
395# Sort by name because we print options.
396# TODO: for MEMBERSHIP queries, we could sort by the most common? errexit
397# first?
398_SORTED = sorted(_OPTION_DEF.opts, key=lambda opt: opt.name)
399
400PARSE_OPTION_NUMS = [opt.index for opt in _SORTED if opt.is_parse]
401
402# Sorted because 'shopt -o -p' should be sorted, etc.
403VISIBLE_SHOPT_NUMS = [
404 opt.index for opt in _SORTED if opt.builtin == 'shopt' and opt.implemented
405]
406
407YSH_UPGRADE = [opt.index for opt in _SORTED if 'ysh:upgrade' in opt.groups]
408YSH_ALL = [opt.index for opt in _SORTED if 'ysh:all' in opt.groups]
409STRICT_ALL = [opt.index for opt in _SORTED if 'strict:all' in opt.groups]
410DEFAULT_TRUE = [opt.index for opt in _SORTED if opt.default]
411#print([opt.name for opt in _SORTED if opt.default])
412
413META_OPTIONS = ['strict:all', 'ysh:upgrade',
414 'ysh:all'] # Passed to flag parser
415
416# For printing option names to stdout. Wrapped by frontend/consts.
417OPTION_NAMES = dict((opt.index, opt.name) for opt in _SORTED)