aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2017-10-26 21:55:06 +0200
committerGitHub <noreply@github.com>2017-10-26 21:55:06 +0200
commitb32dff7520b67f6f6a93627363d91d4f30cad956 (patch)
tree9e58a3dc11d05bff7000b0bc1fdc9727f09f39f2
parent671b012e38fa0e3bbda379ac5bf5eab2cfd845e8 (diff)
parent7314081b8232ac8da8f0f893bad065806454c374 (diff)
downloadmitmproxy-b32dff7520b67f6f6a93627363d91d4f30cad956.tar.gz
mitmproxy-b32dff7520b67f6f6a93627363d91d4f30cad956.tar.bz2
mitmproxy-b32dff7520b67f6f6a93627363d91d4f30cad956.zip
Merge pull request #2610 from mhils/log-threadsafe
Make master.add_log threadsafe
-rw-r--r--mitmproxy/addonmanager.py9
-rw-r--r--test/mitmproxy/addons/test_script.py5
2 files changed, 11 insertions, 3 deletions
diff --git a/mitmproxy/addonmanager.py b/mitmproxy/addonmanager.py
index 31665548..70cfda30 100644
--- a/mitmproxy/addonmanager.py
+++ b/mitmproxy/addonmanager.py
@@ -8,6 +8,7 @@ from mitmproxy import exceptions
from mitmproxy import eventsequence
from mitmproxy import controller
from mitmproxy import flow
+from mitmproxy import log
from . import ctx
import pprint
@@ -54,7 +55,13 @@ class StreamLog:
@contextlib.contextmanager
def safecall():
- stdout_replacement = StreamLog(ctx.log.warn)
+ # resolve ctx.master here.
+ # we want to be threadsafe, and ctx.master may already be cleared when an addon prints().
+ tell = ctx.master.tell
+ # don't use master.add_log (which is not thread-safe). Instead, put on event queue.
+ stdout_replacement = StreamLog(
+ lambda message: tell("log", log.LogEntry(message, "warn"))
+ )
try:
with contextlib.redirect_stdout(stdout_replacement):
yield
diff --git a/test/mitmproxy/addons/test_script.py b/test/mitmproxy/addons/test_script.py
index aa7ca68e..c4fe6b43 100644
--- a/test/mitmproxy/addons/test_script.py
+++ b/test/mitmproxy/addons/test_script.py
@@ -7,6 +7,7 @@ import pytest
from mitmproxy import addonmanager
from mitmproxy import exceptions
+from mitmproxy import log
from mitmproxy.addons import script
from mitmproxy.test import taddons
from mitmproxy.test import tflow
@@ -50,7 +51,7 @@ def test_load_fullname():
def test_script_print_stdout():
with taddons.context() as tctx:
- with mock.patch('mitmproxy.ctx.log.warn') as mock_warn:
+ with mock.patch('mitmproxy.ctx.master.tell') as mock_warn:
with addonmanager.safecall():
ns = script.load_script(
tutils.test_data.path(
@@ -58,7 +59,7 @@ def test_script_print_stdout():
)
)
ns.load(addonmanager.Loader(tctx.master))
- mock_warn.assert_called_once_with("stdoutprint")
+ mock_warn.assert_called_once_with("log", log.LogEntry("stdoutprint", "warn"))
class TestScript: