OILS / core / shell.py View on Github | oils.pub

1290 lines, 825 significant
1"""
2core/shell.py -- Entry point for the shell interpreter.
3"""
4from __future__ import print_function
5
6from errno import ENOENT
7import time as time_
8
9from _devbuild.gen import arg_types
10from _devbuild.gen.option_asdl import option_i, builtin_i
11from _devbuild.gen.syntax_asdl import (loc, source, source_t, IntParamBox,
12 debug_frame, debug_frame_t)
13from _devbuild.gen.value_asdl import (value, value_e, value_t, value_str, Obj)
14from core import alloc
15from core import comp_ui
16from core import dev
17from core import error
18from core import executor
19from core import completion
20from core import main_loop
21from core import optview
22from core import process
23from core import pyutil
24from core import sh_init
25from core import state
26from display import ui
27from core import util
28from core import vm
29
30from frontend import args
31from frontend import flag_def # side effect: flags are defined!
32
33unused1 = flag_def
34from frontend import flag_util
35from frontend import reader
36from frontend import parse_lib
37
38from builtin import assign_osh
39from builtin import bracket_osh
40from builtin import completion_osh
41from builtin import completion_ysh
42from builtin import dirs_osh
43from builtin import error_ysh
44from builtin import hay_ysh
45from builtin import io_osh
46from builtin import io_ysh
47from builtin import json_ysh
48from builtin import meta_oils
49from builtin import misc_osh
50from builtin import module_ysh
51from builtin import printf_osh
52from builtin import process_osh
53from builtin import pure_osh
54from builtin import pure_ysh
55from builtin import readline_osh
56from builtin import read_osh
57from builtin import trap_osh
58
59from builtin import func_eggex
60from builtin import func_hay
61from builtin import func_misc
62from builtin import func_reflect
63
64from builtin import method_dict
65from builtin import method_io
66from builtin import method_list
67from builtin import method_other
68from builtin import method_str
69from builtin import method_type
70
71from osh import cmd_eval
72from osh import glob_
73from osh import history
74from osh import prompt
75from osh import sh_expr_eval
76from osh import split
77from osh import word_eval
78
79from mycpp import iolib
80from mycpp import mops
81from mycpp import mylib
82from mycpp.mylib import NewDict, print_stderr, log
83from pylib import os_path
84from tools import deps
85from tools import fmt
86from tools import ysh_ify
87from ysh import expr_eval
88
89unused2 = log
90
91import libc
92import posix_ as posix
93
94from typing import List, Dict, Optional, TYPE_CHECKING
95if TYPE_CHECKING:
96 from frontend.py_readline import Readline
97
98if mylib.PYTHON:
99 try:
100 from _devbuild.gen import help_meta # type: ignore
101 except ImportError:
102 help_meta = None
103
104
105def _InitDefaultCompletions(cmd_ev, complete_builtin, comp_lookup):
106 # type: (cmd_eval.CommandEvaluator, completion_osh.Complete, completion.Lookup) -> None
107
108 # register builtins and words
109 complete_builtin.Run(cmd_eval.MakeBuiltinArgv(['-E', '-A', 'command']))
110 # register path completion
111 # Add -o filenames? Or should that be automatic?
112 complete_builtin.Run(cmd_eval.MakeBuiltinArgv(['-D', '-A', 'file']))
113
114
115def _CompletionDemo(comp_lookup):
116 # type: (completion.Lookup) -> None
117
118 # Something for fun, to show off. Also: test that you don't repeatedly hit
119 # the file system / network / coprocess.
120 A1 = completion.TestAction(['foo.py', 'foo', 'bar.py'], 0.0)
121 l = [] # type: List[str]
122 for i in xrange(0, 5):
123 l.append('m%d' % i)
124
125 A2 = completion.TestAction(l, 0.1)
126 C1 = completion.UserSpec([A1, A2], [], [], completion.DefaultPredicate(),
127 '', '')
128 comp_lookup.RegisterName('slowc', {}, C1)
129
130
131def SourceStartupFile(
132 fd_state, # type: process.FdState
133 rc_path, # type: str
134 lang, # type: str
135 parse_ctx, # type: parse_lib.ParseContext
136 cmd_ev, # type: cmd_eval.CommandEvaluator
137 errfmt, # type: ui.ErrorFormatter
138):
139 # type: (...) -> None
140
141 # Right now this is called when the shell is interactive. (Maybe it should
142 # be called on login_shel too.)
143 #
144 # Terms:
145 # - interactive shell: Roughly speaking, no args or -c, and isatty() is true
146 # for stdin and stdout.
147 # - login shell: Started from the top level, e.g. from init or ssh.
148 #
149 # We're not going to copy everything bash does because it's too complex, but
150 # for reference:
151 # https://www.gnu.org/software/bash/manual/bash.html#Bash-Startup-Files
152 # Bash also has --login.
153
154 try:
155 f = fd_state.Open(rc_path)
156 except (IOError, OSError) as e:
157 # TODO: Could warn about nonexistent explicit --rcfile?
158 if e.errno != ENOENT:
159 raise # Goes to top level. Handle this better?
160 return
161
162 arena = parse_ctx.arena
163 rc_line_reader = reader.FileLineReader(f, arena)
164 rc_c_parser = parse_ctx.MakeOshParser(rc_line_reader)
165
166 with alloc.ctx_SourceCode(arena, source.MainFile(rc_path)):
167 # Note: bash keep going after parse error in startup file. Should we
168 # have a strict mode for this?
169 unused = main_loop.Batch(cmd_ev, rc_c_parser, errfmt)
170
171 f.close()
172
173
174class ShellOptHook(state.OptHook):
175
176 def __init__(self, readline):
177 # type: (Optional[Readline]) -> None
178 self.readline = readline
179
180 def OnChange(self, opt0_array, opt_name, b):
181 # type: (List[bool], str, bool) -> bool
182 """This method is called whenever an option is changed.
183
184 Returns success or failure.
185 """
186 if opt_name == 'vi' or opt_name == 'emacs':
187 # TODO: Replace with a hook? Just like setting LANG= can have a hook.
188 if self.readline:
189 self.readline.parse_and_bind("set editing-mode " + opt_name)
190 else:
191 print_stderr(
192 "Warning: Can't set option %r because shell wasn't compiled with GNU readline"
193 % opt_name)
194 return False
195
196 # Invert: they are mutually exclusive!
197 if opt_name == 'vi':
198 opt0_array[option_i.emacs] = not b
199 elif opt_name == 'emacs':
200 opt0_array[option_i.vi] = not b
201
202 return True
203
204
205def _AddBuiltinFunc(mem, name, func):
206 # type: (state.Mem, str, vm._Callable) -> None
207 assert isinstance(func, vm._Callable), func
208 mem.AddBuiltin(name, value.BuiltinFunc(func))
209
210
211def InitAssignmentBuiltins(
212 mem, # type: state.Mem
213 procs, # type: state.Procs
214 exec_opts, # type: optview.Exec
215 arith_ev, # type: sh_expr_eval.ArithEvaluator
216 errfmt, # type: ui.ErrorFormatter
217):
218 # type: (...) -> Dict[int, vm._AssignBuiltin]
219
220 assign_b = {} # type: Dict[int, vm._AssignBuiltin]
221
222 new_var = assign_osh.NewVar(mem, procs, exec_opts, arith_ev, errfmt)
223 assign_b[builtin_i.declare] = new_var
224 assign_b[builtin_i.typeset] = new_var
225 assign_b[builtin_i.local] = new_var
226
227 assign_b[builtin_i.export_] = assign_osh.Export(mem, arith_ev, errfmt)
228 assign_b[builtin_i.readonly] = assign_osh.Readonly(mem, arith_ev, errfmt)
229
230 return assign_b
231
232
233def Main(
234 lang, # type: str
235 arg_r, # type: args.Reader
236 environ, # type: Dict[str, str]
237 login_shell, # type: bool
238 loader, # type: pyutil._ResourceLoader
239 readline, # type: Optional[Readline]
240):
241 # type: (...) -> int
242 """The full shell lifecycle. Used by bin/osh and bin/ysh.
243
244 Args:
245 lang: 'osh' or 'ysh'
246 login_shell: Was - on argv[0]?
247 loader: to get help, version, grammar, etc.
248 readline: optional GNU readline
249 """
250 # Differences between osh and ysh:
251 # - oshrc vs yshrc
252 # - shopt -s ysh:all
253 # - Prompt
254 # - --help
255
256 argv0 = arg_r.Peek()
257 assert argv0 is not None
258 arg_r.Next()
259
260 assert lang in ('osh', 'ysh'), lang
261
262 try:
263 attrs = flag_util.ParseMore('main', arg_r)
264 except error.Usage as e:
265 print_stderr('%s usage error: %s' % (lang, e.msg))
266 return 2
267 flag = arg_types.main(attrs.attrs)
268
269 arena = alloc.Arena()
270 errfmt = ui.ErrorFormatter()
271
272 if flag.help:
273 util.HelpFlag(loader, '%s-usage' % lang, mylib.Stdout())
274 return 0
275 if flag.version:
276 util.VersionFlag(loader, mylib.Stdout())
277 return 0
278
279 if flag.tool == 'cat-em':
280 paths = arg_r.Rest()
281
282 status = 0
283 for p in paths:
284 try:
285 contents = loader.Get(p)
286 print(contents)
287 except (OSError, IOError):
288 print_stderr("cat-em: %r not found" % p)
289 status = 1
290 return status
291
292 script_name = arg_r.Peek() # type: Optional[str]
293 arg_r.Next()
294
295 if script_name is None:
296 dollar0 = argv0
297 # placeholder for -c or stdin (depending on flag.c)
298 frame0 = debug_frame.Dummy # type: debug_frame_t
299 else:
300 dollar0 = script_name
301 frame0 = debug_frame.MainFile(script_name)
302
303 debug_stack = [frame0]
304
305 argv = arg_r.Rest()
306 env_dict = NewDict() # type: Dict[str, value_t]
307 defaults = NewDict() # type: Dict[str, value_t]
308 mem = state.Mem(dollar0,
309 argv,
310 arena,
311 debug_stack,
312 env_dict,
313 defaults=defaults)
314
315 opt_hook = ShellOptHook(readline)
316 # Note: only MutableOpts needs mem, so it's not a true circular dep.
317 parse_opts, exec_opts, mutable_opts = state.MakeOpts(
318 mem, environ, opt_hook)
319 mem.exec_opts = exec_opts # circular dep
320
321 # Set these BEFORE processing flags, so they can be overridden.
322 if lang == 'ysh':
323 mutable_opts.SetAnyOption('ysh:all', True)
324
325 pure_osh.SetOptionsFromFlags(mutable_opts, attrs.opt_changes,
326 attrs.shopt_changes)
327
328 version_str = pyutil.GetVersion(loader)
329 sh_init.InitBuiltins(mem, version_str, defaults)
330 sh_init.InitDefaultVars(mem, argv)
331
332 sh_init.CopyVarsFromEnv(exec_opts, environ, mem)
333
334 # PATH PWD, etc. must be set after CopyVarsFromEnv()
335 # Also mutate options from SHELLOPTS, if set
336 sh_init.InitVarsAfterEnv(mem, mutable_opts)
337
338 if attrs.show_options: # special case: sh -o
339 pure_osh.ShowOptions(mutable_opts, [])
340 return 0
341
342 # feedback between runtime and parser
343 aliases = NewDict() # type: Dict[str, str]
344
345 ysh_grammar = pyutil.LoadYshGrammar(loader)
346
347 if flag.do_lossless and not exec_opts.noexec():
348 raise error.Usage('--one-pass-parse requires noexec (-n)', loc.Missing)
349
350 # Tools always use one pass parse
351 # Note: osh --tool syntax-tree is like osh -n --one-pass-parse
352 do_lossless = True if len(flag.tool) else flag.do_lossless
353
354 parse_ctx = parse_lib.ParseContext(arena,
355 parse_opts,
356 aliases,
357 ysh_grammar,
358 do_lossless=do_lossless)
359
360 # Three ParseContext instances SHARE aliases.
361 comp_arena = alloc.Arena()
362 comp_arena.PushSource(source.Unused('completion'))
363 trail1 = parse_lib.Trail()
364 # do_lossless needs to be turned on to complete inside backticks. TODO:
365 # fix the issue where ` gets erased because it's not part of
366 # set_completer_delims().
367 comp_ctx = parse_lib.ParseContext(comp_arena,
368 parse_opts,
369 aliases,
370 ysh_grammar,
371 do_lossless=True)
372 comp_ctx.Init_Trail(trail1)
373
374 hist_arena = alloc.Arena()
375 hist_arena.PushSource(source.Unused('history'))
376 trail2 = parse_lib.Trail()
377 hist_ctx = parse_lib.ParseContext(hist_arena, parse_opts, aliases,
378 ysh_grammar)
379 hist_ctx.Init_Trail(trail2)
380
381 # Deps helps manages dependencies. These dependencies are circular:
382 # - cmd_ev and word_ev, arith_ev -- for command sub, arith sub
383 # - arith_ev and word_ev -- for $(( ${a} )) and $x$(( 1 ))
384 # - cmd_ev and builtins (which execute code, like eval)
385 # - prompt_ev needs word_ev for $PS1, which needs prompt_ev for @P
386 cmd_deps = cmd_eval.Deps()
387 cmd_deps.mutable_opts = mutable_opts
388
389 job_control = process.JobControl()
390 job_list = process.JobList()
391 fd_state = process.FdState(errfmt, job_control, job_list, mem, None, None,
392 exec_opts)
393
394 my_pid = posix.getpid()
395
396 debug_path = ''
397 debug_dir = environ.get('OILS_DEBUG_DIR')
398 if flag.debug_file is not None:
399 # --debug-file takes precedence over OSH_DEBUG_DIR
400 debug_path = flag.debug_file
401 elif debug_dir is not None:
402 debug_path = os_path.join(debug_dir, '%d-osh.log' % my_pid)
403
404 if len(debug_path):
405 # This will be created as an empty file if it doesn't exist, or it could be
406 # a pipe.
407 try:
408 debug_f = util.DebugFile(
409 fd_state.OpenForWrite(debug_path)) # type: util._DebugFile
410 except (IOError, OSError) as e:
411 print_stderr("%s: Couldn't open %r: %s" %
412 (lang, debug_path, posix.strerror(e.errno)))
413 return 2
414 else:
415 debug_f = util.NullDebugFile()
416
417 if flag.xtrace_to_debug_file:
418 trace_f = debug_f
419 else:
420 trace_f = util.DebugFile(mylib.Stderr())
421
422 trace_dir = environ.get('OILS_TRACE_DIR', '')
423 dumps = environ.get('OILS_TRACE_DUMPS', '')
424 streams = environ.get('OILS_TRACE_STREAMS', '')
425 multi_trace = dev.MultiTracer(my_pid, trace_dir, dumps, streams, fd_state)
426
427 tracer = dev.Tracer(parse_ctx, exec_opts, mutable_opts, mem, trace_f,
428 multi_trace)
429 fd_state.tracer = tracer # circular dep
430
431 signal_safe = iolib.InitSignalSafe()
432 trap_state = trap_osh.TrapState(signal_safe)
433
434 waiter = process.Waiter(job_list, exec_opts, signal_safe, tracer)
435 fd_state.waiter = waiter
436
437 cmd_deps.debug_f = debug_f
438
439 cflow_builtin = cmd_eval.ControlFlowBuiltin(mem, exec_opts, tracer, errfmt)
440 cmd_deps.cflow_builtin = cflow_builtin
441
442 now = time_.time()
443 iso_stamp = time_.strftime("%Y-%m-%d %H:%M:%S", time_.localtime(now))
444
445 argv_buf = mylib.BufWriter()
446 dev.PrintShellArgv(arg_r.argv, argv_buf)
447
448 debug_f.writeln('%s [%d] Oils started with argv %s' %
449 (iso_stamp, my_pid, argv_buf.getvalue()))
450 if len(debug_path):
451 debug_f.writeln('Writing logs to %r' % debug_path)
452
453 interp = environ.get('OILS_HIJACK_SHEBANG', '')
454 search_path = executor.SearchPath(mem, exec_opts)
455 ext_prog = process.ExternalProgram(interp, fd_state, errfmt, debug_f)
456
457 splitter = split.SplitContext(mem)
458 # TODO: This is instantiation is duplicated in osh/word_eval.py
459 globber = glob_.Globber(exec_opts)
460
461 # This could just be OILS_TRACE_DUMPS='crash:argv0'
462 crash_dump_dir = environ.get('OILS_CRASH_DUMP_DIR', '')
463 cmd_deps.dumper = dev.CrashDumper(crash_dump_dir, fd_state)
464
465 comp_lookup = completion.Lookup()
466
467 # Various Global State objects to work around readline interfaces
468 compopt_state = completion.OptionState()
469
470 comp_ui_state = comp_ui.State()
471 prompt_state = comp_ui.PromptState()
472
473 # The login program is supposed to set $HOME
474 # https://superuser.com/questions/271925/where-is-the-home-environment-variable-set
475 # state.InitMem(mem) must happen first
476 tilde_ev = word_eval.TildeEvaluator(mem, exec_opts)
477 home_dir = tilde_ev.GetMyHomeDir()
478 if home_dir is None:
479 # TODO: print errno from getpwuid()
480 print_stderr("%s: Failed to get home dir from $HOME or getpwuid()" %
481 lang)
482 return 1
483
484 sh_files = sh_init.ShellFiles(lang, home_dir, mem, flag)
485
486 #
487 # Executor and Evaluators (are circularly dependent)
488 #
489
490 # Global proc namespace. Funcs are defined in the common variable
491 # namespace.
492 procs = state.Procs(mem) # type: state.Procs
493
494 builtins = {} # type: Dict[int, vm._Builtin]
495 internals = {} # type: Dict[int, vm._Builtin]
496
497 # e.g. s.startswith()
498 methods = {} # type: Dict[int, Dict[str, vm._Callable]]
499
500 hay_state = hay_ysh.HayState()
501
502 shell_ex = executor.ShellExecutor(mem, exec_opts, mutable_opts, procs,
503 hay_state, builtins, internals, tracer,
504 errfmt, search_path, ext_prog, waiter,
505 job_control, job_list, fd_state,
506 trap_state)
507
508 pure_ex = executor.PureExecutor(mem, exec_opts, mutable_opts, procs,
509 hay_state, builtins, internals, tracer,
510 errfmt)
511
512 arith_ev = sh_expr_eval.ArithEvaluator(mem, exec_opts, mutable_opts,
513 parse_ctx, errfmt)
514 bool_ev = sh_expr_eval.BoolEvaluator(mem, exec_opts, mutable_opts,
515 parse_ctx, errfmt)
516 expr_ev = expr_eval.ExprEvaluator(mem, mutable_opts, methods, splitter,
517 errfmt)
518 word_ev = word_eval.NormalWordEvaluator(mem, exec_opts, mutable_opts,
519 tilde_ev, splitter, errfmt)
520
521 assign_b = InitAssignmentBuiltins(mem, procs, exec_opts, arith_ev, errfmt)
522 cmd_ev = cmd_eval.CommandEvaluator(mem, exec_opts, errfmt, procs, assign_b,
523 arena, cmd_deps, trap_state,
524 signal_safe)
525
526 # PromptEvaluator rendering is needed in non-interactive shells for @P.
527 prompt_ev = prompt.Evaluator(lang, version_str, parse_ctx, mem)
528
529 io_methods = NewDict() # type: Dict[str, value_t]
530 io_methods['promptVal'] = value.BuiltinFunc(method_io.PromptVal(prompt_ev))
531
532 # The M/ prefix means it's io->eval()
533 io_methods['M/eval'] = value.BuiltinFunc(
534 method_io.Eval(mem, cmd_ev, None, method_io.EVAL_NULL))
535 io_methods['M/evalExpr'] = value.BuiltinFunc(
536 method_io.EvalExpr(expr_ev, None, None))
537
538 # Identical to command sub
539 io_methods['captureStdout'] = value.BuiltinFunc(
540 method_io.CaptureStdout(mem, shell_ex))
541 # Like captureStdout but capture stderr, too
542 io_methods['captureAll'] = value.BuiltinFunc(
543 method_io.CaptureAll(mem, shell_ex))
544
545 # TODO: remove these 2 deprecated methods
546 io_methods['M/evalToDict'] = value.BuiltinFunc(
547 method_io.Eval(mem, cmd_ev, None, method_io.EVAL_DICT))
548 io_methods['M/evalInFrame'] = value.BuiltinFunc(
549 method_io.EvalInFrame(mem, cmd_ev))
550
551 # TODO:
552 io_methods['time'] = value.BuiltinFunc(method_io.Time())
553 io_methods['strftime'] = value.BuiltinFunc(method_io.Strftime())
554 io_methods['glob'] = value.BuiltinFunc(method_io.Glob())
555
556 io_props = {'stdin': value.Stdin} # type: Dict[str, value_t]
557 io_obj = Obj(Obj(None, io_methods), io_props)
558
559 vm_methods = NewDict() # type: Dict[str, value_t]
560 # These are methods, not free functions, because they reflect VM state
561 vm_methods['getFrame'] = value.BuiltinFunc(func_reflect.GetFrame(mem))
562 vm_methods['getDebugStack'] = value.BuiltinFunc(
563 func_reflect.GetDebugStack(mem))
564 vm_methods['id'] = value.BuiltinFunc(func_reflect.Id())
565
566 vm_props = NewDict() # type: Dict[str, value_t]
567 vm_obj = Obj(Obj(None, vm_methods), vm_props)
568
569 # Add basic type objects for flag parser
570 # flag -v --verbose (Bool, help='foo')
571 #
572 # TODO:
573 # - Add other types like Dict, CommandFlag
574 # - Obj(first, rest)
575 # - List() Dict() Obj() can do shallow copy with __call__
576
577 # - type(x) should return these Obj, or perhaps typeObj(x)
578 # - __str__ method for echo $[type(x)] ?
579
580 # TODO: List and Dict could be the only ones with __index__?
581 i_func = method_type.Index__()
582 type_m = NewDict() # type: Dict[str, value_t]
583 type_m['__index__'] = value.BuiltinFunc(i_func)
584 type_obj_methods = Obj(None, type_m)
585
586 # Note: Func[Int -> Int] is something we should do?
587 for tag in [
588 value_e.Bool,
589 value_e.Int,
590 value_e.Float,
591 value_e.Str,
592 value_e.List,
593 value_e.Dict,
594 ]:
595 type_name = value_str(tag, dot=False)
596 #log('%s %s' , type_name, tag)
597 type_obj = Obj(type_obj_methods, {'name': value.Str(type_name)})
598 mem.AddBuiltin(type_name, type_obj)
599
600 # Initialize Obj
601 tag = value_e.Obj
602 type_name = value_str(tag, dot=False)
603
604 # TODO: change Obj.new to __call__
605 type_props = NewDict() # type: Dict[str, value_t]
606 type_props['name'] = value.Str(type_name)
607 type_props['new'] = value.BuiltinFunc(func_misc.Obj_call())
608 type_obj = Obj(type_obj_methods, type_props)
609
610 mem.AddBuiltin(type_name, type_obj)
611
612 # Wire up circular dependencies.
613 vm.InitCircularDeps(arith_ev, bool_ev, expr_ev, word_ev, cmd_ev, shell_ex,
614 pure_ex, prompt_ev, io_obj, tracer)
615
616 unsafe_arith = sh_expr_eval.UnsafeArith(mem, exec_opts, mutable_opts,
617 parse_ctx, arith_ev, errfmt)
618 vm.InitUnsafeArith(mem, word_ev, unsafe_arith)
619
620 #
621 # Initialize Built-in Procs
622 #
623
624 b = builtins # short alias for initialization
625
626 if mylib.PYTHON:
627 if help_meta:
628 help_data = help_meta.TopicMetadata()
629 else:
630 help_data = NewDict() # minimal build
631 else:
632 help_data = help_meta.TopicMetadata()
633 b[builtin_i.help] = misc_osh.Help(lang, loader, help_data, errfmt)
634
635 # Control flow
636 b[builtin_i.break_] = cflow_builtin
637 b[builtin_i.continue_] = cflow_builtin
638 b[builtin_i.return_] = cflow_builtin
639 b[builtin_i.exit] = cflow_builtin
640
641 # Interpreter state
642 b[builtin_i.set] = pure_osh.Set(mutable_opts, mem)
643 b[builtin_i.shopt] = pure_osh.Shopt(exec_opts, mutable_opts, cmd_ev, mem,
644 environ)
645
646 b[builtin_i.hash] = pure_osh.Hash(search_path) # not really pure
647 b[builtin_i.trap] = trap_osh.Trap(trap_state, parse_ctx, tracer, errfmt)
648
649 b[builtin_i.shvar] = pure_ysh.Shvar(mem, search_path, cmd_ev)
650 b[builtin_i.ctx] = pure_ysh.Ctx(mem, cmd_ev)
651 b[builtin_i.push_registers] = pure_ysh.PushRegisters(mem, cmd_ev)
652
653 # Hay
654 b[builtin_i.hay] = hay_ysh.Hay(hay_state, mutable_opts, mem, cmd_ev)
655 b[builtin_i.haynode] = hay_ysh.HayNode_(hay_state, mem, cmd_ev)
656
657 # Interpreter introspection
658 b[builtin_i.type] = meta_oils.Type(procs, aliases, search_path, errfmt)
659 b[builtin_i.builtin] = meta_oils.Builtin(shell_ex, errfmt)
660 b[builtin_i.command] = meta_oils.Command(shell_ex, procs, aliases,
661 search_path)
662 # Part of YSH, but similar to builtin/command
663 b[builtin_i.runproc] = meta_oils.RunProc(shell_ex, procs, errfmt)
664 b[builtin_i.invoke] = meta_oils.Invoke(shell_ex, procs, errfmt)
665 b[builtin_i.extern_] = meta_oils.Extern(shell_ex, procs, errfmt)
666
667 # Meta builtins
668 module_invoke = module_ysh.ModuleInvoke(cmd_ev, tracer, errfmt)
669 b[builtin_i.use] = meta_oils.ShellFile(parse_ctx,
670 search_path,
671 cmd_ev,
672 fd_state,
673 tracer,
674 errfmt,
675 loader,
676 module_invoke=module_invoke)
677 source_builtin = meta_oils.ShellFile(parse_ctx, search_path, cmd_ev,
678 fd_state, tracer, errfmt, loader)
679 b[builtin_i.source] = source_builtin
680 b[builtin_i.dot] = source_builtin
681 eval_builtin = meta_oils.Eval(parse_ctx, exec_opts, cmd_ev, tracer, errfmt,
682 mem)
683 b[builtin_i.eval] = eval_builtin
684
685 # Module builtins
686 guards = NewDict() # type: Dict[str, bool]
687 b[builtin_i.source_guard] = module_ysh.SourceGuard(guards, exec_opts,
688 errfmt)
689 b[builtin_i.is_main] = module_ysh.IsMain(mem)
690
691 # Errors
692 b[builtin_i.error] = error_ysh.Error()
693 b[builtin_i.failed] = error_ysh.Failed(mem)
694 b[builtin_i.boolstatus] = error_ysh.BoolStatus(shell_ex, errfmt)
695 b[builtin_i.try_] = error_ysh.Try(mutable_opts, mem, cmd_ev, shell_ex,
696 errfmt)
697 b[builtin_i.assert_] = error_ysh.Assert(expr_ev, errfmt)
698
699 # Pure builtins
700 true_ = pure_osh.Boolean(0)
701 b[builtin_i.colon] = true_ # a "special" builtin
702 b[builtin_i.true_] = true_
703 b[builtin_i.false_] = pure_osh.Boolean(1)
704
705 b[builtin_i.alias] = pure_osh.Alias(aliases, errfmt)
706 b[builtin_i.unalias] = pure_osh.UnAlias(aliases, errfmt)
707
708 b[builtin_i.getopts] = pure_osh.GetOpts(mem, errfmt)
709
710 b[builtin_i.shift] = assign_osh.Shift(mem)
711 b[builtin_i.unset] = assign_osh.Unset(mem, procs, unsafe_arith, errfmt)
712
713 b[builtin_i.append] = pure_ysh.Append(mem, errfmt)
714
715 # test / [ differ by need_right_bracket
716 b[builtin_i.test] = bracket_osh.Test(False, exec_opts, mem, errfmt)
717 b[builtin_i.bracket] = bracket_osh.Test(True, exec_opts, mem, errfmt)
718
719 # Output
720 b[builtin_i.echo] = io_osh.Echo(exec_opts)
721 b[builtin_i.printf] = printf_osh.Printf(mem, parse_ctx, unsafe_arith,
722 errfmt)
723 b[builtin_i.write] = io_ysh.Write(mem, errfmt)
724 redir_builtin = io_ysh.RunBlock(mem, cmd_ev) # used only for redirects
725 b[builtin_i.redir] = redir_builtin
726 b[builtin_i.fopen] = redir_builtin # alias for backward compatibility
727
728 # (pp output format isn't stable)
729 b[builtin_i.pp] = io_ysh.Pp(expr_ev, mem, errfmt, procs, arena)
730
731 # Input
732 cat = io_osh.Cat() # for $(<file)
733 b[builtin_i.cat] = cat
734 b[builtin_i.read] = read_osh.Read(splitter, mem, parse_ctx, cmd_ev, errfmt)
735
736 internals[builtin_i.cat] = cat
737 internals[builtin_i.sleep] = io_osh.Sleep()
738
739 mapfile = io_osh.MapFile(mem, errfmt, cmd_ev)
740 b[builtin_i.mapfile] = mapfile
741 b[builtin_i.readarray] = mapfile
742
743 # Dirs
744 dir_stack = dirs_osh.DirStack()
745 b[builtin_i.cd] = dirs_osh.Cd(mem, dir_stack, cmd_ev, errfmt)
746 b[builtin_i.pushd] = dirs_osh.Pushd(mem, dir_stack, errfmt)
747 b[builtin_i.popd] = dirs_osh.Popd(mem, dir_stack, errfmt)
748 b[builtin_i.dirs] = dirs_osh.Dirs(mem, dir_stack, errfmt)
749 b[builtin_i.pwd] = dirs_osh.Pwd(mem, errfmt)
750
751 b[builtin_i.times] = misc_osh.Times()
752
753 b[builtin_i.json] = json_ysh.Json(mem, errfmt, False)
754 b[builtin_i.json8] = json_ysh.Json(mem, errfmt, True)
755
756 ### Process builtins
757 b[builtin_i.exec_] = process_osh.Exec(mem, ext_prog, fd_state, search_path,
758 errfmt)
759 b[builtin_i.umask] = process_osh.Umask()
760 b[builtin_i.ulimit] = process_osh.Ulimit()
761 b[builtin_i.wait] = process_osh.Wait(waiter, job_list, mem, tracer, errfmt)
762
763 b[builtin_i.jobs] = process_osh.Jobs(job_list)
764 b[builtin_i.fg] = process_osh.Fg(job_control, job_list, waiter)
765 b[builtin_i.bg] = process_osh.Bg(job_list)
766
767 # Could be in process_ysh
768 b[builtin_i.fork] = process_osh.Fork(shell_ex)
769 b[builtin_i.forkwait] = process_osh.ForkWait(shell_ex)
770
771 # Interactive builtins depend on readline
772 bindx_cb = readline_osh.BindXCallback(eval_builtin, mem, errfmt)
773 b[builtin_i.bind] = readline_osh.Bind(readline, errfmt, bindx_cb)
774 b[builtin_i.history] = readline_osh.History(readline, sh_files, errfmt,
775 mylib.Stdout())
776
777 # Completion
778 spec_builder = completion_osh.SpecBuilder(cmd_ev, parse_ctx, word_ev,
779 splitter, comp_lookup, help_data,
780 errfmt)
781 complete_builtin = completion_osh.Complete(spec_builder, comp_lookup)
782 b[builtin_i.complete] = complete_builtin
783 b[builtin_i.compgen] = completion_osh.CompGen(spec_builder)
784 b[builtin_i.compopt] = completion_osh.CompOpt(compopt_state, errfmt)
785 b[builtin_i.compadjust] = completion_osh.CompAdjust(mem)
786
787 comp_ev = word_eval.CompletionWordEvaluator(mem, exec_opts, mutable_opts,
788 tilde_ev, splitter, errfmt)
789
790 comp_ev.arith_ev = arith_ev
791 comp_ev.expr_ev = expr_ev
792 comp_ev.prompt_ev = prompt_ev
793 comp_ev.CheckCircularDeps()
794
795 root_comp = completion.RootCompleter(comp_ev, mem, comp_lookup,
796 compopt_state, comp_ui_state,
797 comp_ctx, debug_f)
798 b[builtin_i.compexport] = completion_ysh.CompExport(root_comp)
799
800 #
801 # Initialize Builtin-in Methods
802 #
803
804 methods[value_e.Str] = {
805 'startsWith': method_str.HasAffix(method_str.START),
806 'endsWith': method_str.HasAffix(method_str.END),
807 'trim': method_str.Trim(method_str.START | method_str.END),
808 'trimStart': method_str.Trim(method_str.START),
809 'trimEnd': method_str.Trim(method_str.END),
810 'upper': method_str.Upper(),
811 'lower': method_str.Lower(),
812 'split': method_str.Split(),
813 'lines': method_str.Lines(),
814
815 # finds a substring, optional position to start at
816 'find': None,
817
818 # replace substring, OR an eggex
819 # takes count=3, the max number of replacements to do.
820 'replace': method_str.Replace(mem, expr_ev),
821
822 # Like Python's re.search, except we put it on the string object
823 # It's more consistent with Str->find(substring, pos=0)
824 # It returns value.Match() rather than an integer
825 'search': method_str.SearchMatch(method_str.SEARCH),
826
827 # like Python's re.match()
828 'leftMatch': method_str.SearchMatch(method_str.LEFT_MATCH),
829
830 # like Python's re.fullmatch(), not sure if we really need it
831 'fullMatch': None,
832 }
833 methods[value_e.Dict] = {
834 # keys() values() get() are FREE functions, not methods
835 # I think items() isn't as necessary because dicts are ordered? YSH
836 # code shouldn't use the List of Lists representation.
837 'M/erase': method_dict.Erase(),
838 # could be d->tally() or d->increment(), but inc() is short
839 #
840 # call d->inc('mycounter')
841 # call d->inc('mycounter', 3)
842 'M/inc': None,
843
844 # call d->accum('mygroup', 'value')
845 'M/accum': None,
846
847 # DEPRECATED - use free functions
848 'get': method_dict.Get(),
849 'keys': method_dict.Keys(),
850 'values': method_dict.Values(),
851 }
852 methods[value_e.List] = {
853 'M/reverse': method_list.Reverse(),
854 'M/append': method_list.Append(),
855 'M/clear': method_list.Clear(),
856 'M/extend': method_list.Extend(),
857 'M/pop': method_list.Pop(),
858 'M/insert': method_list.Insert(),
859 'M/remove': method_list.Remove(),
860 'indexOf': method_list.IndexOf(), # return first index of value, or -1
861 # Python list() has index(), which raises ValueError
862 # But this is consistent with Str->find(), and doesn't
863 # use exceptions
864 'lastIndexOf': method_list.LastIndexOf(),
865 'join': func_misc.Join(), # both a method and a func
866 }
867
868 methods[value_e.Match] = {
869 'group': func_eggex.MatchMethod(func_eggex.G, expr_ev),
870 'start': func_eggex.MatchMethod(func_eggex.S, None),
871 'end': func_eggex.MatchMethod(func_eggex.E, None),
872 }
873
874 methods[value_e.Place] = {
875 # __mut_setValue()
876
877 # instead of setplace keyword
878 'M/setValue': method_other.SetValue(mem),
879 }
880
881 methods[value_e.Command] = {
882 # var x = ^(echo hi)
883 # p { echo hi }
884 # Export source code and location
885 # Useful for test frameworks, built systems and so forth
886 'sourceCode': method_other.SourceCode(),
887 }
888
889 methods[value_e.DebugFrame] = {
890 'toString': func_reflect.DebugFrameToString(),
891 }
892
893 #
894 # Initialize Built-in Funcs
895 #
896
897 # Pure functions
898 _AddBuiltinFunc(mem, 'eval',
899 method_io.Eval(mem, cmd_ev, pure_ex, method_io.EVAL_NULL))
900 _AddBuiltinFunc(mem, 'evalExpr',
901 method_io.EvalExpr(expr_ev, pure_ex, cmd_ev))
902
903 parse_hay = func_hay.ParseHay(fd_state, parse_ctx, mem, errfmt)
904 eval_hay = func_hay.EvalHay(hay_state, mutable_opts, mem, cmd_ev)
905 hay_func = func_hay.HayFunc(hay_state)
906
907 _AddBuiltinFunc(mem, 'parseHay', parse_hay)
908 _AddBuiltinFunc(mem, 'evalHay', eval_hay)
909 _AddBuiltinFunc(mem, '_hay', hay_func)
910
911 _AddBuiltinFunc(mem, 'len', func_misc.Len())
912 _AddBuiltinFunc(mem, 'type', func_misc.Type())
913
914 g = func_eggex.MatchFunc(func_eggex.G, expr_ev, mem)
915 _AddBuiltinFunc(mem, '_group', g)
916 _AddBuiltinFunc(mem, '_match',
917 g) # TODO: remove this backward compat alias
918 _AddBuiltinFunc(mem, '_start',
919 func_eggex.MatchFunc(func_eggex.S, None, mem))
920 _AddBuiltinFunc(mem, '_end', func_eggex.MatchFunc(func_eggex.E, None, mem))
921
922 # TODO: should this be parseCommandStr() vs. parseFile() for Hay?
923 _AddBuiltinFunc(mem, 'parseCommand',
924 func_reflect.ParseCommand(parse_ctx, mem, errfmt))
925 _AddBuiltinFunc(mem, 'parseExpr',
926 func_reflect.ParseExpr(parse_ctx, errfmt))
927
928 _AddBuiltinFunc(mem, 'shvarGet', func_reflect.Shvar_get(mem))
929 _AddBuiltinFunc(mem, 'getVar', func_reflect.GetVar(mem))
930 _AddBuiltinFunc(mem, 'setVar', func_reflect.SetVar(mem))
931
932 # TODO: implement bindFrame() to turn CommandFrag -> Command
933 # Then parseCommand() and parseHay() will not depend on mem; they will not
934 # bind a frame yet
935 #
936 # what about newFrame() and globalFrame()?
937 _AddBuiltinFunc(mem, 'bindFrame', func_reflect.BindFrame())
938
939 _AddBuiltinFunc(mem, 'Object', func_misc.Object())
940
941 _AddBuiltinFunc(mem, 'rest', func_misc.Prototype())
942 _AddBuiltinFunc(mem, 'first', func_misc.PropView())
943
944 # TODO: remove these aliases
945 _AddBuiltinFunc(mem, 'prototype', func_misc.Prototype())
946 _AddBuiltinFunc(mem, 'propView', func_misc.PropView())
947
948 # type conversions
949 _AddBuiltinFunc(mem, 'bool', func_misc.Bool())
950 _AddBuiltinFunc(mem, 'int', func_misc.Int())
951 _AddBuiltinFunc(mem, 'float', func_misc.Float())
952 _AddBuiltinFunc(mem, 'str', func_misc.Str_())
953 _AddBuiltinFunc(mem, 'list', func_misc.List_())
954 _AddBuiltinFunc(mem, 'dict', func_misc.DictFunc())
955
956 # Dict functions
957 _AddBuiltinFunc(mem, 'get', method_dict.Get())
958 _AddBuiltinFunc(mem, 'keys', method_dict.Keys())
959 _AddBuiltinFunc(mem, 'values', method_dict.Values())
960
961 _AddBuiltinFunc(mem, 'runes', func_misc.Runes())
962 _AddBuiltinFunc(mem, 'encodeRunes', func_misc.EncodeRunes())
963 _AddBuiltinFunc(mem, 'bytes', func_misc.Bytes())
964 _AddBuiltinFunc(mem, 'encodeBytes', func_misc.EncodeBytes())
965
966 # Str
967 #_AddBuiltinFunc(mem, 'strcmp', None)
968 # TODO: This should be Python style splitting
969 _AddBuiltinFunc(mem, 'split', func_misc.Split(splitter))
970 _AddBuiltinFunc(mem, 'shSplit', func_misc.Split(splitter))
971
972 # Float
973 _AddBuiltinFunc(mem, 'floatsEqual', func_misc.FloatsEqual())
974
975 # List
976 _AddBuiltinFunc(mem, 'join', func_misc.Join())
977 _AddBuiltinFunc(mem, 'maybe', func_misc.Maybe())
978 _AddBuiltinFunc(mem, 'glob', func_misc.Glob(globber))
979
980 # Serialize
981 _AddBuiltinFunc(mem, 'toJson8', func_misc.ToJson8(True))
982 _AddBuiltinFunc(mem, 'toJson', func_misc.ToJson8(False))
983
984 _AddBuiltinFunc(mem, 'fromJson8', func_misc.FromJson8(True))
985 _AddBuiltinFunc(mem, 'fromJson', func_misc.FromJson8(False))
986
987 mem.AddBuiltin('io', io_obj)
988 mem.AddBuiltin('vm', vm_obj)
989
990 # Special case for testing
991 mem.AddBuiltin('module-invoke', value.BuiltinProc(module_invoke))
992
993 # First, process --eval flags. In interactive mode, this comes before --rcfile.
994 # (It could be used for the headless shell. Although terminals have a bootstrap process.)
995 # Note that --eval
996
997 for path, is_pure in attrs.eval_flags:
998 ex = pure_ex if is_pure else None
999 with vm.ctx_MaybePure(ex, cmd_ev):
1000 try:
1001 ok, status = main_loop.EvalFile(path, fd_state, parse_ctx,
1002 cmd_ev, lang)
1003 except util.UserExit as e:
1004 # Doesn't seem like we need this, and verbose_errexit isn't the right option
1005 #if exec_opts.verbose_errexit():
1006 # print-stderr('oils: --eval exit')
1007 return e.status
1008
1009 # I/O error opening file, parse error. Message was # already printed.
1010 if not ok:
1011 return 1
1012
1013 # YSH will stop on errors. OSH keep going, a bit like 'source'.
1014 if status != 0 and exec_opts.errexit():
1015 return status
1016
1017 #
1018 # Is the shell interactive?
1019 #
1020
1021 # History evaluation is a no-op if readline is None.
1022 hist_ev = history.Evaluator(readline, hist_ctx, debug_f)
1023
1024 if flag.c is not None:
1025 src = source.CFlag # type: source_t
1026 line_reader = reader.StringLineReader(flag.c,
1027 arena) # type: reader._Reader
1028 if flag.i: # -c and -i can be combined
1029 mutable_opts.set_interactive()
1030
1031 elif flag.i: # force interactive
1032 src = source.Stdin(' -i')
1033 line_reader = reader.InteractiveLineReader(arena, prompt_ev, hist_ev,
1034 readline, prompt_state)
1035 mutable_opts.set_interactive()
1036
1037 else:
1038 if script_name is None:
1039 if flag.headless:
1040 src = source.Headless
1041 line_reader = None # unused!
1042 # Not setting '-i' flag for now. Some people's bashrc may want it?
1043 else:
1044 stdin_ = mylib.Stdin()
1045 # --tool never starts a prompt
1046 if len(flag.tool) == 0 and stdin_.isatty():
1047 src = source.Interactive
1048 line_reader = reader.InteractiveLineReader(
1049 arena, prompt_ev, hist_ev, readline, prompt_state)
1050 mutable_opts.set_interactive()
1051 else:
1052 src = source.Stdin('')
1053 line_reader = reader.FileLineReader(stdin_, arena)
1054 else:
1055 src = source.MainFile(script_name)
1056 try:
1057 f = fd_state.Open(script_name)
1058 except (IOError, OSError) as e:
1059 print_stderr("%s: Couldn't open %r: %s" %
1060 (lang, script_name, posix.strerror(e.errno)))
1061 return 1
1062 line_reader = reader.FileLineReader(f, arena)
1063
1064 # Pretend it came from somewhere else
1065 if flag.location_str is not None:
1066 src = source.Synthetic(flag.location_str)
1067 assert line_reader is not None
1068 location_start_line = mops.BigTruncate(flag.location_start_line)
1069 if location_start_line != -1:
1070 line_reader.SetLineOffset(location_start_line)
1071
1072 arena.PushSource(src)
1073
1074 # Calculate ~/.config/oils/oshrc or yshrc. Used for both -i and --headless
1075 # We avoid cluttering the user's home directory. Some users may want to ln
1076 # -s ~/.config/oils/oshrc ~/oshrc or ~/.oshrc.
1077
1078 # https://unix.stackexchange.com/questions/24347/why-do-some-applications-use-config-appname-for-their-config-data-while-other
1079
1080 config_dir = '.config/oils'
1081 rc_paths = [] # type: List[str]
1082 if flag.headless or exec_opts.interactive():
1083 if flag.norc:
1084 # bash doesn't have this warning, but it's useful
1085 if flag.rcfile is not None:
1086 print_stderr('%s warning: --rcfile ignored with --norc' % lang)
1087 if flag.rcdir is not None:
1088 print_stderr('%s warning: --rcdir ignored with --norc' % lang)
1089 else:
1090 # User's rcfile comes FIRST. Later we can add an 'after-rcdir' hook
1091 rc_path = flag.rcfile
1092 if rc_path is None:
1093 rc_paths.append(
1094 os_path.join(home_dir, '%s/%src' % (config_dir, lang)))
1095 else:
1096 rc_paths.append(rc_path)
1097
1098 # Load all files in ~/.config/oils/oshrc.d or oilrc.d
1099 # This way "installers" can avoid mutating oshrc directly
1100
1101 rc_dir = flag.rcdir
1102 if rc_dir is None:
1103 rc_dir = os_path.join(home_dir,
1104 '%s/%src.d' % (config_dir, lang))
1105
1106 rc_paths.extend(libc.glob(os_path.join(rc_dir, '*'), 0))
1107
1108 # Initialize even in non-interactive shell, for 'compexport'
1109 _InitDefaultCompletions(cmd_ev, complete_builtin, comp_lookup)
1110
1111 if flag.headless:
1112 sh_init.InitInteractive(mem, sh_files, lang)
1113 mutable_opts.set_redefine_const()
1114 mutable_opts.set_redefine_source()
1115
1116 # NOTE: rc files loaded AFTER _InitDefaultCompletions.
1117 for rc_path in rc_paths:
1118 with state.ctx_ThisDir(mem, rc_path):
1119 try:
1120 SourceStartupFile(fd_state, rc_path, lang, parse_ctx,
1121 cmd_ev, errfmt)
1122 except util.UserExit as e:
1123 return e.status
1124
1125 loop = main_loop.Headless(cmd_ev, parse_ctx, errfmt)
1126 try:
1127 # TODO: What other exceptions happen here?
1128 status = loop.Loop()
1129 except util.UserExit as e:
1130 status = e.status
1131
1132 # Same logic as interactive shell
1133 mut_status = IntParamBox(status)
1134 cmd_ev.RunTrapsOnExit(mut_status)
1135 status = mut_status.i
1136
1137 return status
1138
1139 # Note: headless mode above doesn't use c_parser
1140 assert line_reader is not None
1141 c_parser = parse_ctx.MakeOshParser(line_reader)
1142
1143 if exec_opts.interactive():
1144 sh_init.InitInteractive(mem, sh_files, lang)
1145 # bash: 'set -o emacs' is the default only in the interactive shell
1146 mutable_opts.set_emacs()
1147 mutable_opts.set_redefine_const()
1148 mutable_opts.set_redefine_source()
1149
1150 # NOTE: rc files loaded AFTER _InitDefaultCompletions.
1151 for rc_path in rc_paths:
1152 with state.ctx_ThisDir(mem, rc_path):
1153 try:
1154 SourceStartupFile(fd_state, rc_path, lang, parse_ctx,
1155 cmd_ev, errfmt)
1156 except util.UserExit as e:
1157 return e.status
1158
1159 completion_display = state.MaybeString(mem, 'OILS_COMP_UI')
1160 if completion_display is None:
1161 completion_display = flag.completion_display
1162
1163 if readline:
1164 if completion_display == 'nice':
1165 display = comp_ui.NiceDisplay(
1166 comp_ui_state, prompt_state, debug_f, readline,
1167 signal_safe) # type: comp_ui._IDisplay
1168 else:
1169 display = comp_ui.MinimalDisplay(comp_ui_state, prompt_state,
1170 debug_f, signal_safe)
1171
1172 comp_ui.InitReadline(readline, sh_files.HistoryFile(), root_comp,
1173 display, debug_f)
1174
1175 if flag.completion_demo:
1176 _CompletionDemo(comp_lookup)
1177
1178 else: # Without readline module
1179 display = comp_ui.MinimalDisplay(comp_ui_state, prompt_state,
1180 debug_f, signal_safe)
1181
1182 process.InitInteractiveShell(signal_safe) # Set signal handlers
1183 # The interactive shell leads a process group which controls the terminal.
1184 # It MUST give up the terminal afterward, otherwise we get SIGTTIN /
1185 # SIGTTOU bugs.
1186 with process.ctx_TerminalControl(job_control, errfmt):
1187
1188 assert line_reader is not None
1189 line_reader.Reset() # After sourcing startup file, render $PS1
1190
1191 prompt_plugin = prompt.UserPlugin(mem, parse_ctx, cmd_ev, errfmt)
1192 try:
1193 status = main_loop.Interactive(flag, cmd_ev, c_parser, display,
1194 prompt_plugin, waiter, errfmt)
1195 except util.UserExit as e:
1196 status = e.status
1197
1198 mut_status = IntParamBox(status)
1199 cmd_ev.RunTrapsOnExit(mut_status)
1200 status = mut_status.i
1201
1202 if readline:
1203 hist_file = sh_files.HistoryFile()
1204 if hist_file is not None:
1205 try:
1206 readline.write_history_file(hist_file)
1207 except (IOError, OSError):
1208 pass
1209
1210 return status
1211
1212 if flag.rcfile is not None: # bash doesn't have this warning, but it's useful
1213 print_stderr('%s warning: --rcfile ignored in non-interactive shell' %
1214 lang)
1215 if flag.rcdir is not None:
1216 print_stderr('%s warning: --rcdir ignored in non-interactive shell' %
1217 lang)
1218
1219 #
1220 # Tools that use the OSH/YSH parsing mode, etc.
1221 #
1222
1223 # flag.tool is '' if nothing is passed
1224 # osh --tool syntax-tree is equivalent to osh -n --one-pass-parse
1225 tool_name = 'syntax-tree' if exec_opts.noexec() else flag.tool
1226
1227 if len(tool_name):
1228 # Don't save tokens because it's slow
1229 if tool_name != 'syntax-tree':
1230 arena.SaveTokens()
1231
1232 try:
1233 node = main_loop.ParseWholeFile(c_parser)
1234 except error.Parse as e:
1235 errfmt.PrettyPrintError(e)
1236 return 2
1237
1238 if tool_name == 'syntax-tree':
1239 ui.PrintAst(node, flag)
1240
1241 elif tool_name == 'tokens':
1242 ysh_ify.PrintTokens(arena)
1243
1244 elif tool_name == 'find-lhs-array':
1245 ysh_ify.TreeFind(arena, node, errfmt)
1246
1247 elif tool_name == 'lossless-cat': # for test/lossless.sh
1248 ysh_ify.LosslessCat(arena)
1249
1250 elif tool_name == 'fmt':
1251 fmt.Format(arena, node)
1252
1253 elif tool_name == 'test':
1254 # Do we need this? Couldn't this just be a YSH script?
1255 raise AssertionError('TODO')
1256
1257 elif tool_name == 'ysh-ify':
1258 ysh_ify.Ysh_ify(arena, node)
1259
1260 elif tool_name == 'deps':
1261 if mylib.PYTHON:
1262 deps.Deps(node)
1263
1264 else:
1265 raise AssertionError(tool_name) # flag parser validated it
1266
1267 return 0
1268
1269 #
1270 # Batch mode: shell script or -c
1271 #
1272
1273 with state.ctx_ThisDir(mem, script_name):
1274 try:
1275 status = main_loop.Batch(cmd_ev,
1276 c_parser,
1277 errfmt,
1278 cmd_flags=cmd_eval.IsMainProgram)
1279 except util.UserExit as e:
1280 status = e.status
1281 except KeyboardInterrupt:
1282 # The interactive shell handles this in main_loop.Interactive
1283 status = 130 # 128 + 2
1284 mut_status = IntParamBox(status)
1285 cmd_ev.RunTrapsOnExit(mut_status)
1286
1287 multi_trace.WriteDumps()
1288
1289 # NOTE: We haven't closed the file opened with fd_state.Open
1290 return mut_status.i