mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 06:51:46 +01:00
Merge pull request #566 from matrix-org/erikj/logcontext
Don't bother copying records on parent context
This commit is contained in:
commit
e557dc80b8
2 changed files with 14 additions and 25 deletions
|
@ -41,13 +41,13 @@ except:
|
||||||
|
|
||||||
class LoggingContext(object):
|
class LoggingContext(object):
|
||||||
"""Additional context for log formatting. Contexts are scoped within a
|
"""Additional context for log formatting. Contexts are scoped within a
|
||||||
"with" block. Contexts inherit the state of their parent contexts.
|
"with" block.
|
||||||
Args:
|
Args:
|
||||||
name (str): Name for the context for debugging.
|
name (str): Name for the context for debugging.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__slots__ = [
|
__slots__ = [
|
||||||
"parent_context", "name", "usage_start", "usage_end", "main_thread",
|
"previous_context", "name", "usage_start", "usage_end", "main_thread",
|
||||||
"__dict__", "tag", "alive",
|
"__dict__", "tag", "alive",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -79,7 +79,7 @@ class LoggingContext(object):
|
||||||
sentinel = Sentinel()
|
sentinel = Sentinel()
|
||||||
|
|
||||||
def __init__(self, name=None):
|
def __init__(self, name=None):
|
||||||
self.parent_context = None
|
self.previous_context = LoggingContext.current_context()
|
||||||
self.name = name
|
self.name = name
|
||||||
self.ru_stime = 0.
|
self.ru_stime = 0.
|
||||||
self.ru_utime = 0.
|
self.ru_utime = 0.
|
||||||
|
@ -116,9 +116,12 @@ class LoggingContext(object):
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
"""Enters this logging context into thread local storage"""
|
"""Enters this logging context into thread local storage"""
|
||||||
if self.parent_context is not None:
|
old_context = self.set_current_context(self)
|
||||||
raise Exception("Attempt to enter logging context multiple times")
|
if self.previous_context != old_context:
|
||||||
self.parent_context = self.set_current_context(self)
|
logger.warn(
|
||||||
|
"Expected previous context %r, found %r",
|
||||||
|
self.previous_context, old_context
|
||||||
|
)
|
||||||
self.alive = True
|
self.alive = True
|
||||||
return self
|
return self
|
||||||
|
|
||||||
|
@ -128,7 +131,7 @@ class LoggingContext(object):
|
||||||
Returns:
|
Returns:
|
||||||
None to avoid suppressing any exeptions that were thrown.
|
None to avoid suppressing any exeptions that were thrown.
|
||||||
"""
|
"""
|
||||||
current = self.set_current_context(self.parent_context)
|
current = self.set_current_context(self.previous_context)
|
||||||
if current is not self:
|
if current is not self:
|
||||||
if current is self.sentinel:
|
if current is self.sentinel:
|
||||||
logger.debug("Expected logging context %s has been lost", self)
|
logger.debug("Expected logging context %s has been lost", self)
|
||||||
|
@ -138,17 +141,11 @@ class LoggingContext(object):
|
||||||
current,
|
current,
|
||||||
self
|
self
|
||||||
)
|
)
|
||||||
self.parent_context = None
|
self.previous_context = None
|
||||||
self.alive = False
|
self.alive = False
|
||||||
|
|
||||||
def __getattr__(self, name):
|
|
||||||
"""Delegate member lookup to parent context"""
|
|
||||||
return getattr(self.parent_context, name)
|
|
||||||
|
|
||||||
def copy_to(self, record):
|
def copy_to(self, record):
|
||||||
"""Copy fields from this context and its parents to the record"""
|
"""Copy fields from this context to the record"""
|
||||||
if self.parent_context is not None:
|
|
||||||
self.parent_context.copy_to(record)
|
|
||||||
for key, value in self.__dict__.items():
|
for key, value in self.__dict__.items():
|
||||||
setattr(record, key, value)
|
setattr(record, key, value)
|
||||||
|
|
||||||
|
@ -229,7 +226,7 @@ class PreserveLoggingContext(object):
|
||||||
)
|
)
|
||||||
|
|
||||||
if self.current_context:
|
if self.current_context:
|
||||||
self.has_parent = self.current_context.parent_context is not None
|
self.has_parent = self.current_context.previous_context is not None
|
||||||
if not self.current_context.alive:
|
if not self.current_context.alive:
|
||||||
logger.debug(
|
logger.debug(
|
||||||
"Entering dead context: %s",
|
"Entering dead context: %s",
|
||||||
|
|
|
@ -5,6 +5,7 @@ from .. import unittest
|
||||||
from synapse.util.async import sleep
|
from synapse.util.async import sleep
|
||||||
from synapse.util.logcontext import LoggingContext
|
from synapse.util.logcontext import LoggingContext
|
||||||
|
|
||||||
|
|
||||||
class LoggingContextTestCase(unittest.TestCase):
|
class LoggingContextTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def _check_test_key(self, value):
|
def _check_test_key(self, value):
|
||||||
|
@ -17,15 +18,6 @@ class LoggingContextTestCase(unittest.TestCase):
|
||||||
context_one.test_key = "test"
|
context_one.test_key = "test"
|
||||||
self._check_test_key("test")
|
self._check_test_key("test")
|
||||||
|
|
||||||
def test_chaining(self):
|
|
||||||
with LoggingContext() as context_one:
|
|
||||||
context_one.test_key = "one"
|
|
||||||
with LoggingContext() as context_two:
|
|
||||||
self._check_test_key("one")
|
|
||||||
context_two.test_key = "two"
|
|
||||||
self._check_test_key("two")
|
|
||||||
self._check_test_key("one")
|
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def test_sleep(self):
|
def test_sleep(self):
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
|
|
Loading…
Reference in a new issue