From 2f2f874fdbbd0884d0605482a2d3a56f1f2bf3f0 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Fri, 25 Dec 2020 23:33:34 +0100 Subject: [PATCH] Fixed command history loading. --- rcon/readline.py | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/rcon/readline.py b/rcon/readline.py index 50a86d5..6938afc 100644 --- a/rcon/readline.py +++ b/rcon/readline.py @@ -1,5 +1,6 @@ """Wrapper for readline support.""" +from logging import Logger from os import name from pathlib import Path @@ -16,15 +17,33 @@ if name == 'posix': class CommandHistory: """Context manager for the command line history.""" + def __init__(self, logger: Logger): + self.logger = logger + def __enter__(self): - read_history_file() + try: + read_history_file() + except FileNotFoundError: + self.logger.warning('Could not find history file: %s', + HIST_FILE) + except PermissionError: + self.logger.error('Insufficient permissions to read: %s', + HIST_FILE) + return self def __exit__(self, *_): - write_history_file(HIST_FILE) + try: + write_history_file(HIST_FILE) + except PermissionError: + self.logger.error('Insufficient permissions to write: %s', + HIST_FILE) else: class CommandHistory: - """Context manager for the command line history.""" + """Context manager mockup for non-posix systems.""" + + def __init__(self, logger: Logger): + logger.warning('Command line history unavailable on this system.') def __enter__(self): return self