Zachary Turner | 5f3fd80 | 2015-10-16 17:52:32 +0000 | [diff] [blame] | 1 | import sys |
| 2 | if sys.version_info[0] < 3: |
| 3 | import __builtin__ as builtins |
| 4 | else: |
| 5 | import builtins |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 6 | import code |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 7 | import lldb |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 8 | import traceback |
| 9 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 10 | try: |
| 11 | import readline |
| 12 | import rlcompleter |
| 13 | except ImportError: |
| 14 | have_readline = False |
Todd Fiala | 9bb71b7 | 2014-02-26 07:39:20 +0000 | [diff] [blame] | 15 | except AttributeError: |
| 16 | # This exception gets hit by the rlcompleter when Linux is using |
| 17 | # the readline suppression import. |
| 18 | have_readline = False |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 19 | else: |
| 20 | have_readline = True |
| 21 | if 'libedit' in readline.__doc__: |
| 22 | readline.parse_and_bind('bind ^I rl_complete') |
| 23 | else: |
| 24 | readline.parse_and_bind('tab: complete') |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 25 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 26 | g_builtin_override_called = False |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 27 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 28 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 29 | class LLDBQuitter(object): |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 30 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 31 | def __init__(self, name): |
| 32 | self.name = name |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 33 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 34 | def __repr__(self): |
| 35 | self() |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 36 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 37 | def __call__(self, code=None): |
| 38 | global g_builtin_override_called |
| 39 | g_builtin_override_called = True |
| 40 | raise SystemExit(-1) |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 41 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 42 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 43 | def setquit(): |
| 44 | '''Redefine builtin functions 'quit()' and 'exit()' to print a message and raise an EOFError exception.''' |
| 45 | # This function will be called prior to each interactive |
| 46 | # interpreter loop or each single line, so we set the global |
| 47 | # g_builtin_override_called to False so we know if a SystemExit |
| 48 | # is thrown, we can catch it and tell the difference between |
| 49 | # a call to "quit()" or "exit()" and something like |
| 50 | # "sys.exit(123)" |
| 51 | global g_builtin_override_called |
| 52 | g_builtin_override_called = False |
Zachary Turner | 5f3fd80 | 2015-10-16 17:52:32 +0000 | [diff] [blame] | 53 | builtins.quit = LLDBQuitter('quit') |
| 54 | builtins.exit = LLDBQuitter('exit') |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 55 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 56 | # When running one line, we might place the string to run in this string |
| 57 | # in case it would be hard to correctly escape a string's contents |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 58 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 59 | g_run_one_line_str = None |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 60 | |
Chris Lattner | 30fdc8d | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 61 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 62 | def get_terminal_size(fd): |
| 63 | try: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 64 | import fcntl |
| 65 | import termios |
| 66 | import struct |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 67 | hw = struct.unpack('hh', fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234')) |
| 68 | except: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 69 | hw = (0, 0) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 70 | return hw |
Caroline Tice | 2f88aad | 2011-01-14 00:29:16 +0000 | [diff] [blame] | 71 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 72 | |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 73 | def readfunc_stdio(prompt): |
| 74 | sys.stdout.write(prompt) |
Greg Clayton | 48e1757 | 2014-09-15 22:46:25 +0000 | [diff] [blame] | 75 | return sys.stdin.readline().rstrip() |
Caroline Tice | 2f88aad | 2011-01-14 00:29:16 +0000 | [diff] [blame] | 76 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 77 | |
| 78 | def run_python_interpreter(local_dict): |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 79 | # Pass in the dictionary, for continuity from one session to the next. |
| 80 | setquit() |
| 81 | try: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 82 | fd = sys.stdin.fileno() |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 83 | interacted = False |
| 84 | if get_terminal_size(fd)[1] == 0: |
| 85 | try: |
| 86 | import termios |
| 87 | old = termios.tcgetattr(fd) |
| 88 | if old[3] & termios.ECHO: |
| 89 | # Need to turn off echoing and restore |
| 90 | new = termios.tcgetattr(fd) |
| 91 | new[3] = new[3] & ~termios.ECHO |
| 92 | try: |
| 93 | termios.tcsetattr(fd, termios.TCSADRAIN, new) |
| 94 | interacted = True |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 95 | code.interact( |
| 96 | banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()'.", |
| 97 | readfunc=readfunc_stdio, |
| 98 | local=local_dict) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 99 | finally: |
| 100 | termios.tcsetattr(fd, termios.TCSADRAIN, old) |
| 101 | except: |
| 102 | pass |
| 103 | # Don't need to turn off echoing |
| 104 | if not interacted: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 105 | code.interact( |
| 106 | banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.", |
| 107 | readfunc=readfunc_stdio, |
| 108 | local=local_dict) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 109 | else: |
| 110 | # We have a real interactive terminal |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 111 | code.interact( |
| 112 | banner="Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.", |
| 113 | local=local_dict) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 114 | except SystemExit as e: |
| 115 | global g_builtin_override_called |
| 116 | if not g_builtin_override_called: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 117 | print('Script exited with %s' % (e)) |
Caroline Tice | 2f88aad | 2011-01-14 00:29:16 +0000 | [diff] [blame] | 118 | |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 119 | |
| 120 | def run_one_line(local_dict, input_string): |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 121 | global g_run_one_line_str |
| 122 | setquit() |
| 123 | try: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 124 | repl = code.InteractiveConsole(local_dict) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 125 | if input_string: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 126 | repl.runsource(input_string) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 127 | elif g_run_one_line_str: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 128 | repl.runsource(g_run_one_line_str) |
Greg Clayton | 44d9378 | 2014-01-27 23:43:24 +0000 | [diff] [blame] | 129 | |
| 130 | except SystemExit as e: |
| 131 | global g_builtin_override_called |
| 132 | if not g_builtin_override_called: |
Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 133 | print('Script exited with %s' % (e)) |