0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-26 14:38:18 +02:00
synapse/synapse/util/logcontext.py

115 lines
3.7 KiB
Python
Raw Normal View History

2014-10-30 02:21:33 +01:00
import threading
import logging
logger = logging.getLogger(__name__)
2014-10-30 11:13:46 +01:00
2014-10-30 02:21:33 +01:00
class LoggingContext(object):
2014-10-30 11:13:46 +01:00
"""Additional context for log formatting. Contexts are scoped within a
"with" block. Contexts inherit the state of their parent contexts.
Args:
name (str): Name for the context for debugging.
"""
2014-10-30 02:21:33 +01:00
__slots__ = ["parent_context", "name", "__dict__"]
thread_local = threading.local()
class Sentinel(object):
2014-10-30 11:13:46 +01:00
"""Sentinel to represent the root context"""
2014-10-30 02:21:33 +01:00
__slots__ = []
2014-10-30 11:13:46 +01:00
def __str__(self):
return "sentinel"
2014-10-30 02:21:33 +01:00
def copy_to(self, record):
pass
sentinel = Sentinel()
def __init__(self, name=None):
self.parent_context = None
self.name = name
def __str__(self):
2014-10-30 11:13:46 +01:00
return "%s@%x" % (self.name, id(self))
2014-10-30 02:21:33 +01:00
@classmethod
def current_context(cls):
2014-10-30 11:13:46 +01:00
"""Get the current logging context from thread local storage"""
2014-10-30 02:21:33 +01:00
return getattr(cls.thread_local, "current_context", cls.sentinel)
def __enter__(self):
2014-10-30 11:13:46 +01:00
"""Enters this logging context into thread local storage"""
2014-10-30 02:21:33 +01:00
if self.parent_context is not None:
raise Exception("Attempt to enter logging context multiple times")
self.parent_context = self.current_context()
self.thread_local.current_context = self
return self
def __exit__(self, type, value, traceback):
2014-10-30 11:13:46 +01:00
"""Restore the logging context in thread local storage to the state it
was before this context was entered.
Returns:
None to avoid suppressing any exeptions that were thrown.
"""
2014-10-30 02:21:33 +01:00
if self.thread_local.current_context is not self:
logger.error(
2014-10-30 02:21:33 +01:00
"Current logging context %s is not the expected context %s",
self.thread_local.current_context,
self
)
self.thread_local.current_context = self.parent_context
self.parent_context = None
def __getattr__(self, name):
2014-10-30 11:13:46 +01:00
"""Delegate member lookup to parent context"""
2014-10-30 02:21:33 +01:00
return getattr(self.parent_context, name)
def copy_to(self, record):
2014-10-30 11:13:46 +01:00
"""Copy fields from this context and its parents to the record"""
2014-10-30 02:21:33 +01:00
if self.parent_context is not None:
self.parent_context.copy_to(record)
for key, value in self.__dict__.items():
setattr(record, key, value)
class LoggingContextFilter(logging.Filter):
2014-10-30 11:13:46 +01:00
"""Logging filter that adds values from the current logging context to each
record.
Args:
**defaults: Default values to avoid formatters complaining about
missing fields
"""
2014-10-30 02:21:33 +01:00
def __init__(self, **defaults):
self.defaults = defaults
def filter(self, record):
2014-10-30 11:13:46 +01:00
"""Add each fields from the logging contexts to the record.
Returns:
True to include the record in the log output.
"""
2014-10-30 02:21:33 +01:00
context = LoggingContext.current_context()
for key, value in self.defaults.items():
setattr(record, key, value)
context.copy_to(record)
return True
class PreserveLoggingContext(object):
2014-10-30 11:13:46 +01:00
"""Captures the current logging context and restores it when the scope is
exited. Used to restore the context after a function using
@defer.inlineCallbacks is resumed by a callback from the reactor."""
2014-10-30 02:21:33 +01:00
__slots__ = ["current_context"]
2014-10-30 11:13:46 +01:00
2014-10-30 02:21:33 +01:00
def __enter__(self):
2014-10-30 11:13:46 +01:00
"""Captures the current logging context"""
2014-10-30 02:21:33 +01:00
self.current_context = LoggingContext.current_context()
LoggingContext.thread_local.current_context = LoggingContext.sentinel
2014-10-30 02:21:33 +01:00
def __exit__(self, type, value, traceback):
2014-10-30 11:13:46 +01:00
"""Restores the current logging context"""
2014-10-30 02:21:33 +01:00
LoggingContext.thread_local.current_context = self.current_context