1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# Copyright (C) 2007 Giampaolo Rodola' <g.rodola@gmail.com>.
# Use of this source code is governed by MIT license that can be
# found in the LICENSE file.
"""
Logging support for pyftpdlib, inspired from Tornado's
(https://www.tornadoweb.org/).
This is not supposed to be imported/used directly.
Instead you should use logging.basicConfig before serve_forever().
"""
import logging
import re
import sys
import time
try:
import curses
except ImportError:
curses = None
# default logger
logger = logging.getLogger('pyftpdlib')
def _stderr_supports_color():
color = False
if curses is not None and sys.stderr.isatty():
try:
curses.setupterm()
if curses.tigetnum("colors") > 0:
color = True
except Exception: # noqa
pass
return color
# configurable options
LEVEL = logging.INFO
PREFIX = '[%(levelname)1.1s %(asctime)s]'
PREFIX_MPROC = '[%(levelname)1.1s %(asctime)s %(process)s]'
COLOURED = _stderr_supports_color()
TIME_FORMAT = "%Y-%m-%d %H:%M:%S"
# taken and adapted from Tornado
class LogFormatter(logging.Formatter):
"""Log formatter used in pyftpdlib.
Key features of this formatter are:
* Color support when logging to a terminal that supports it.
* Timestamps on every log line.
* Robust against str/bytes encoding problems.
"""
PREFIX = PREFIX
def __init__(self, *args, **kwargs):
logging.Formatter.__init__(self, *args, **kwargs)
self._coloured = COLOURED and _stderr_supports_color()
if self._coloured:
curses.setupterm()
# The curses module has some str/bytes confusion in
# python3. Until version 3.2.3, most methods return
# bytes, but only accept strings. In addition, we want to
# output these strings with the logging module, which
# works with unicode strings. The explicit calls to
# str() below are harmless in python2 but will do the
# right conversion in python 3.
fg_color = (
curses.tigetstr("setaf") or curses.tigetstr("setf") or ""
)
self._colors = {
# blues
logging.DEBUG: str(curses.tparm(fg_color, 4), "ascii"),
# green
logging.INFO: str(curses.tparm(fg_color, 2), "ascii"),
# yellow
logging.WARNING: str(curses.tparm(fg_color, 3), "ascii"),
# red
logging.ERROR: str(curses.tparm(fg_color, 1), "ascii"),
}
self._normal = str(curses.tigetstr("sgr0"), "ascii")
def format(self, record):
try:
record.message = record.getMessage()
except Exception as err:
record.message = f"Bad message ({err!r}): {record.__dict__!r}"
record.asctime = time.strftime(
TIME_FORMAT, self.converter(record.created)
)
prefix = self.PREFIX % record.__dict__
if self._coloured:
prefix = (
self._colors.get(record.levelno, self._normal)
+ prefix
+ self._normal
)
# Encoding notes: The logging module prefers to work with character
# strings, but only enforces that log messages are instances of
# basestring. In python 2, non-ASCII bytestrings will make
# their way through the logging framework until they blow up with
# an unhelpful decoding error (with this formatter it happens
# when we attach the prefix, but there are other opportunities for
# exceptions further along in the framework).
#
# If a byte string makes it this far, convert it to unicode to
# ensure it will make it out to the logs. Use repr() as a fallback
# to ensure that all byte strings can be converted successfully,
# but don't do it by default so we don't add extra quotes to ASCII
# bytestrings. This is a bit of a hacky place to do this, but
# it's worth it since the encoding errors that would otherwise
# result are so useless (and tornado is fond of using utf8-encoded
# byte strings wherever possible).
try:
message = str(record.message)
except UnicodeDecodeError:
message = repr(record.message)
formatted = prefix + " " + message
if record.exc_info and not record.exc_text:
record.exc_text = self.formatException(record.exc_info)
if record.exc_text:
formatted = formatted.rstrip() + "\n" + record.exc_text
return formatted.replace("\n", "\n ")
def debug(s, inst=None):
s = "[debug] " + s
if inst is not None:
s += f" ({inst!r})"
logger.debug(s)
def is_logging_configured():
if logging.getLogger('pyftpdlib').handlers:
return True
return bool(logging.root.handlers)
# TODO: write tests
def config_logging(level=LEVEL, prefix=PREFIX, other_loggers=None):
# Speedup logging by preventing certain internal log record info to
# be unnecessarily fetched. This results in about 28% speedup. See:
# * https://docs.python.org/3/howto/logging.html#optimization
# * https://docs.python.org/3/library/logging.html#logrecord-attributes
# * https://stackoverflow.com/a/38924153/376587
key_names = set(
re.findall(
r'(?<!%)%\(([^)]+)\)[-# +0-9.hlL]*[diouxXeEfFgGcrs]', prefix
)
)
if "process" not in key_names:
logging.logProcesses = False
if "processName" not in key_names:
logging.logMultiprocessing = False
if "thread" not in key_names and "threadName" not in key_names:
logging.logThreads = False
if (
"filename" not in key_names
and "pathname" not in key_names
and "lineno" not in key_names
and "module" not in key_names
):
# biggest speedup as it avoids calling sys._getframe()
logging._srcfile = None
handler = logging.StreamHandler()
formatter = LogFormatter()
formatter.PREFIX = prefix
handler.setFormatter(formatter)
loggers = [logging.getLogger('pyftpdlib')]
if other_loggers is not None:
loggers.extend(other_loggers)
for log in loggers:
log.setLevel(level)
log.addHandler(handler)
|