Browse Source

Moved readline import and shell history handling to rconshell.py.

pull/2/head
Richard Neumann 4 years ago
parent
commit
ae37a862a0
  1. 3
      rcon/console.py
  2. 4
      rcon/rconshell.py

3
rcon/console.py

@ -3,9 +3,6 @@
from getpass import getpass from getpass import getpass
from typing import Union from typing import Union
# For CLI history, etc.
import readline # pylint: disable=W0611
from rcon.config import Config from rcon.config import Config
from rcon.exceptions import RequestIdMismatch, WrongPassword from rcon.exceptions import RequestIdMismatch, WrongPassword
from rcon.proto import Client from rcon.proto import Client

4
rcon/rconshell.py

@ -3,6 +3,7 @@
from argparse import ArgumentParser, Namespace from argparse import ArgumentParser, Namespace
from logging import INFO, basicConfig, getLogger from logging import INFO, basicConfig, getLogger
from pathlib import Path from pathlib import Path
from readline import read_history_file, write_history_file
from socket import timeout from socket import timeout
from sys import exit # pylint: disable=W0622 from sys import exit # pylint: disable=W0622
@ -21,6 +22,7 @@ ERRORS = (
(RequestIdMismatch, 'Unexpected request ID mismatch.', 5) (RequestIdMismatch, 'Unexpected request ID mismatch.', 5)
) )
LOGGER = getLogger('rconshell') LOGGER = getLogger('rconshell')
HIST_FILE = Path.home().joinpath('.rconshell_history')
def get_args() -> Namespace: def get_args() -> Namespace:
@ -40,6 +42,7 @@ def main():
args = get_args() args = get_args()
basicConfig(level=INFO, format=LOG_FORMAT) basicConfig(level=INFO, format=LOG_FORMAT)
read_history_file(HIST_FILE)
if args.server: if args.server:
host, port, passwd = get_credentials(args) host, port, passwd = get_credentials(args)
@ -49,4 +52,5 @@ def main():
with ErrorHandler(ERRORS, LOGGER): with ErrorHandler(ERRORS, LOGGER):
exit_code = rconcmd(host, port, passwd, prompt=args.prompt) exit_code = rconcmd(host, port, passwd, prompt=args.prompt)
write_history_file(HIST_FILE)
exit(exit_code) exit(exit_code)

Loading…
Cancel
Save