Skip to content

Commit

Permalink
[IMP] base: "--shell-file" option override for $PYTHONSTARTUP
Browse files Browse the repository at this point in the history
The $PYTHONSTARTUP env variable can contain a python script that is used
by Python shell at the start of any interactive session.

- fix this feature from being broken in python and ptpython
- include a new --shell-file= shell parameter to override the env
  variable $PYTHONSTARTUP
- group the two shell parameters in a new options group
- remove custom python shells' banners from the start of the session
- shell options can now be saved in the configuration file.

Python docs: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP

Documentation PR: odoo/documentation#11334
task-4306704
  • Loading branch information
lordkrandel committed Nov 14, 2024
1 parent 131b043 commit 865f92e
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 31 deletions.
48 changes: 42 additions & 6 deletions odoo/addons/base/tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import contextlib
import os
import re
import sys
import subprocess as sp
import tempfile
import unittest

from odoo.cli.command import commands, load_addons_commands, load_internal_commands
from odoo.tools import config
Expand All @@ -14,21 +18,26 @@ def setUpClass(cls):
super().setUpClass()
cls.odoo_bin = sys.argv[0]
assert 'odoo-bin' in cls.odoo_bin
cls.run_args = (sys.executable, cls.odoo_bin, f'--addons-path={config["addons_path"]}')

def run_command(self, *args, check=True, capture_output=True, text=True, **kwargs):
return sp.run(
[
sys.executable,
self.odoo_bin,
f'--addons-path={config["addons_path"]}',
*args,
],
[*self.run_args, *args],
capture_output=capture_output,
check=check,
text=text,
**kwargs
)

def popen_command(self, *args, capture_output=True, text=True, **kwargs):
if capture_output:
kwargs['stdout'] = kwargs['stderr'] = sp.PIPE
return sp.Popen(
[*self.run_args, *args],
text=text,
**kwargs
)

def test_docstring(self):
load_internal_commands()
load_addons_commands()
Expand Down Expand Up @@ -60,3 +69,30 @@ def test_help(self):
if line.startswith(" ") and (result := re.search(r' (\w+)\s+(\w.*)$', line)):
actual.add(result.groups()[0])
self.assertGreaterEqual(actual, expected, msg="Help is not showing required commands")

@unittest.skipIf(os.name != 'posix', '`os.openpty` only available on POSIX systems')
def test_shell(self):

main, child = os.openpty()

with tempfile.NamedTemporaryFile(mode="w+", encoding="utf-8") as startup_file:
startup_file.write("shell_name = f'Hello from {shell_name}'")
startup_file.flush()

shell = self.popen_command(
'shell',
'--shell-interface=python',
f'--shell-file={startup_file.name}',
stdin=main,
close_fds=True,
)

with os.fdopen(child, 'w', encoding="utf-8") as stdin_file:
stdin_file.write(
'print(shell_name)\n'
'exit()\n'
)
shell.wait()

actual = shell.stdout.readlines()[-2].rstrip()
self.assertEqual(actual, ">>> Hello from python")
2 changes: 0 additions & 2 deletions odoo/addons/base/tests/test_configmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ def test_01_default_config(self):

# advanced
'dev_mode': [],
'shell_interface': None,
'stop_after_init': False,
'osv_memory_count_limit': 0,
'transient_age_limit': 1.0,
Expand Down Expand Up @@ -348,7 +347,6 @@ def test_04_odoo16_config_file(self):
'language': None,
'publisher_warranty_url': 'http://services.odoo.com/publisher-warranty/',
'save': None,
'shell_interface': None,
'stop_after_init': False,
'translate_in': '',
'translate_out': '',
Expand Down
65 changes: 45 additions & 20 deletions odoo/cli/shell.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import code
import logging
import optparse
import os
import signal
import sys
Expand Down Expand Up @@ -39,15 +39,15 @@ def raise_keyboard_interrupt(*a):


class Console(code.InteractiveConsole):
def __init__(self, locals=None, filename="<console>"):
code.InteractiveConsole.__init__(self, locals, filename)
def __init__(self, local_vars=None, filename="<console>"):
code.InteractiveConsole.__init__(self, locals=local_vars, filename=filename)
try:
import readline
import rlcompleter
except ImportError:
print('readline or rlcompleter not available, autocomplete disabled.')
else:
readline.set_completer(rlcompleter.Completer(locals).complete)
readline.set_completer(rlcompleter.Completer(local_vars).complete)
readline.parse_and_bind("tab: complete")


Expand All @@ -57,6 +57,19 @@ class Shell(Command):

def init(self, args):
config.parser.prog = f'{Path(sys.argv[0]).name} {self.name}'

group = optparse.OptionGroup(config.parser, "Shell options")
group.add_option(
'--shell-file', dest='shell_file', type="string", default='', my_default='',
help="Specify a python script to be run after the start of the shell. "
"Overrides the env variable PYTHONSTARTUP."
)
group.add_option(
'--shell-interface', dest='shell_interface', type="string",
help="Specify a preferred REPL to use in shell mode. "
"Supported REPLs are: [ipython|ptpython|bpython|python]"
)
config.parser.add_option_group(group)
config.parse_config(args, setup_logging=True)
cli_server.report_configuration()
server.start(preload=[], stop=True)
Expand All @@ -72,6 +85,8 @@ def console(self, local_vars):
for i in sorted(local_vars):
print('%s: %s' % (i, local_vars[i]))

pythonstartup = config.options.get('shell_file') or os.environ.get('PYTHONSTARTUP')

preferred_interface = config.options.get('shell_interface')
if preferred_interface:
shells_to_try = [preferred_interface, 'python']
Expand All @@ -80,27 +95,37 @@ def console(self, local_vars):

for shell in shells_to_try:
try:
return getattr(self, shell)(local_vars)
local_vars['shell_name'] = shell
shell_func = getattr(self, shell)
return shell_func(local_vars, pythonstartup)
except ImportError:
pass
except Exception:
_logger.warning("Could not start '%s' shell." % shell)
_logger.warning("Could not start '%s' shell.", shell)
_logger.debug("Shell error:", exc_info=True)

def ipython(self, local_vars):
from IPython import start_ipython
start_ipython(argv=[], user_ns=local_vars)

def ptpython(self, local_vars):
from ptpython.repl import embed
embed({}, local_vars)

def bpython(self, local_vars):
from bpython import embed
embed(local_vars)

def python(self, local_vars):
Console(locals=local_vars).interact()
def ipython(self, local_vars, pythonstartup=None):
from IPython import start_ipython # noqa: PLC0415
argv = (
["--TerminalIPythonApp.display_banner=False"]
+ [f"--TerminalIPythonApp.exec_files={pythonstartup}"] if pythonstartup else []
)
start_ipython(argv=argv, user_ns=local_vars)

def ptpython(self, local_vars, pythonstartup=None):
from ptpython.repl import embed # noqa: PLC0415
embed({}, local_vars, startup_paths=[pythonstartup] if pythonstartup else False)

def bpython(self, local_vars, pythonstartup=None):
from bpython import embed # noqa: PLC0415
embed(local_vars, args=['-q', '-i', pythonstartup] if pythonstartup else None)

def python(self, local_vars, pythonstartup=None):
console = Console(local_vars)
if pythonstartup:
with open(pythonstartup, encoding="utf-8") as f:
console.runsource(f.read(), filename=pythonstartup, symbol="exec")
console.interact(banner='')

def shell(self, dbname):
local_vars = {
Expand Down
3 changes: 0 additions & 3 deletions odoo/tools/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,6 @@ def _build_cli(self):
group.add_option('--dev', dest='dev_mode', type="string", file_exportable=False,
help="Enable developer mode. Param: List of options separated by comma. "
"Options : all, reload, qweb, xml")
group.add_option('--shell-interface', dest='shell_interface', type="string", file_exportable=False,
help="Specify a preferred REPL to use in shell mode. Supported REPLs are: "
"[ipython|ptpython|bpython|python]")
group.add_option("--stop-after-init", action="store_true", dest="stop_after_init", my_default=False, file_exportable=False,
help="stop the server after its initialization")
group.add_option("--osv-memory-count-limit", dest="osv_memory_count_limit", my_default=0,
Expand Down

0 comments on commit 865f92e

Please sign in to comment.