rnsh/rnsh/rnslogging.py
2023-02-18 08:10:26 -06:00

158 lines
5.1 KiB
Python

# MIT License
#
# Copyright (c) 2023 Aaron Heise
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import asyncio
import logging
import sys
import termios
import rnsh.process as process
from logging import Handler, getLevelName
# from types import GenericAlias
from typing import Any
import RNS
import rnsh.exception as exception
class RnsHandler(Handler):
"""
A handler class which writes logging records, appropriately formatted,
to the RNS logger.
"""
def __init__(self):
"""
Initialize the handler.
"""
Handler.__init__(self)
@staticmethod
def get_rns_loglevel(loglevel: int) -> int:
if loglevel == logging.CRITICAL:
return RNS.LOG_CRITICAL
if loglevel == logging.ERROR:
return RNS.LOG_ERROR
if loglevel == logging.WARNING:
return RNS.LOG_WARNING
if loglevel == logging.INFO:
return RNS.LOG_INFO
if loglevel == logging.DEBUG:
return RNS.LOG_DEBUG
return RNS.LOG_DEBUG
def get_logging_loglevel(rnsloglevel: int) -> int:
if rnsloglevel == RNS.LOG_CRITICAL:
return logging.CRITICAL
if rnsloglevel == RNS.LOG_ERROR:
return logging.ERROR
if rnsloglevel == RNS.LOG_WARNING:
return logging.WARNING
if rnsloglevel == RNS.LOG_NOTICE:
return logging.INFO
if rnsloglevel == RNS.LOG_INFO:
return logging.INFO
if rnsloglevel >= RNS.LOG_VERBOSE:
return RNS.LOG_DEBUG
return RNS.LOG_DEBUG
@classmethod
def set_log_level_with_rns_level(cls, rns_log_level: int):
logging.getLogger().setLevel(RnsHandler.get_logging_loglevel(rns_log_level))
RNS.loglevel = rns_log_level
def set_log_level_with_logging_level(cls, logging_log_level: int):
logging.getLogger().setLevel(logging_log_level)
RNS.loglevel = cls.get_rns_loglevel(logging_log_level)
def emit(self, record):
"""
Emit a record.
"""
try:
msg = self.format(record)
RNS.log(msg, RnsHandler.get_rns_loglevel(record.levelno))
except RecursionError: # See issue 36272
raise
except Exception:
self.handleError(record)
def __repr__(self):
level = getLevelName(self.level)
return '<%s (%s)>' % (self.__class__.__name__, level)
# __class_getitem__ = classmethod(GenericAlias)
log_format = '%(name)-30s %(message)s [%(threadName)s]'
logging.basicConfig(
level=logging.DEBUG, # RNS.log will filter it, but some formatting will still be processed before it gets there
# format='%(asctime)s.%(msecs)03d %(levelname)-6s %(threadName)-15s %(name)-15s %(message)s',
format=log_format,
datefmt='%Y-%m-%d %H:%M:%S',
handlers=[RnsHandler()])
_loop: asyncio.AbstractEventLoop = None
def set_main_loop(loop: asyncio.AbstractEventLoop):
global _loop
_loop = loop
# hack for temporarily overriding term settings to make debug print right
_rns_log_orig = RNS.log
def _rns_log(msg, level=3, _override_destination=False):
if RNS.loglevel < level:
return
if not RNS.compact_log_fmt:
msg = (" " * (7 - len(RNS.loglevelname(level)))) + msg
def _rns_log_inner():
nonlocal msg, level, _override_destination
try:
with process.TTYRestorer(sys.stdin.fileno(), suppress_logs=True) as tr:
attr = tr.current_attr()
if attr:
attr[process.TTYRestorer.ATTR_IDX_OFLAG] = attr[process.TTYRestorer.ATTR_IDX_OFLAG] | \
termios.ONLRET | termios.ONLCR | termios.OPOST
tr.set_attr(attr)
_rns_log_orig(msg, level, _override_destination)
except:
_rns_log_orig(msg, level, _override_destination)
# TODO: figure out if forcing this to the main thread actually helps.
try:
if _loop and _loop.is_running():
_loop.call_soon_threadsafe(_rns_log_inner)
else:
_rns_log_inner()
except:
_rns_log_inner()
RNS.log = _rns_log