forked from DataDog/dd-trace-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_debugger.py
711 lines (592 loc) · 29 KB
/
_debugger.py
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
from collections import defaultdict
from collections import deque
from itertools import chain
import linecache
import os
from pathlib import Path
import sys
import threading
from types import FunctionType
from types import ModuleType
from types import TracebackType
from typing import Deque
from typing import Dict
from typing import Iterable
from typing import List
from typing import Optional
from typing import Set
from typing import Type
from typing import TypeVar
from typing import cast
import ddtrace
from ddtrace import config as ddconfig
from ddtrace._trace.tracer import Tracer
from ddtrace.debugging._config import di_config
from ddtrace.debugging._function.discovery import FunctionDiscovery
from ddtrace.debugging._function.store import FullyNamedWrappedFunction
from ddtrace.debugging._function.store import FunctionStore
from ddtrace.debugging._metrics import metrics
from ddtrace.debugging._probe.model import FunctionLocationMixin
from ddtrace.debugging._probe.model import FunctionProbe
from ddtrace.debugging._probe.model import LineLocationMixin
from ddtrace.debugging._probe.model import LineProbe
from ddtrace.debugging._probe.model import LogFunctionProbe
from ddtrace.debugging._probe.model import LogLineProbe
from ddtrace.debugging._probe.model import MetricFunctionProbe
from ddtrace.debugging._probe.model import MetricLineProbe
from ddtrace.debugging._probe.model import Probe
from ddtrace.debugging._probe.model import SpanDecorationFunctionProbe
from ddtrace.debugging._probe.model import SpanDecorationLineProbe
from ddtrace.debugging._probe.model import SpanFunctionProbe
from ddtrace.debugging._probe.registry import ProbeRegistry
from ddtrace.debugging._probe.remoteconfig import ProbePollerEvent
from ddtrace.debugging._probe.remoteconfig import ProbePollerEventType
from ddtrace.debugging._probe.remoteconfig import ProbeRCAdapter
from ddtrace.debugging._probe.status import ProbeStatusLogger
from ddtrace.debugging._signal.collector import SignalCollector
from ddtrace.debugging._signal.collector import SignalContext
from ddtrace.debugging._signal.metric_sample import MetricSample
from ddtrace.debugging._signal.model import Signal
from ddtrace.debugging._signal.model import SignalState
from ddtrace.debugging._signal.snapshot import Snapshot
from ddtrace.debugging._signal.tracing import DynamicSpan
from ddtrace.debugging._signal.tracing import SpanDecoration
from ddtrace.debugging._uploader import LogsIntakeUploaderV1
from ddtrace.debugging._uploader import UploaderProduct
from ddtrace.internal import atexit
from ddtrace.internal import compat
from ddtrace.internal.logger import get_logger
from ddtrace.internal.metrics import Metrics
from ddtrace.internal.module import ModuleHookType
from ddtrace.internal.module import ModuleWatchdog
from ddtrace.internal.module import origin
from ddtrace.internal.module import register_post_run_module_hook
from ddtrace.internal.module import unregister_post_run_module_hook
from ddtrace.internal.rate_limiter import BudgetRateLimiterWithJitter as RateLimiter
from ddtrace.internal.rate_limiter import RateLimitExceeded
from ddtrace.internal.remoteconfig.worker import remoteconfig_poller
from ddtrace.internal.service import Service
from ddtrace.internal.telemetry import telemetry_writer
from ddtrace.internal.telemetry.constants import TELEMETRY_APM_PRODUCT
from ddtrace.internal.wrapping.context import WrappingContext
log = get_logger(__name__)
_probe_metrics = Metrics(namespace="dynamic.instrumentation.metric")
_probe_metrics.enable()
T = TypeVar("T")
class DebuggerError(Exception):
"""Generic debugger error."""
pass
class DebuggerModuleWatchdog(ModuleWatchdog):
_locations: Set[str] = set()
@classmethod
def register_origin_hook(cls, origin: Path, hook: ModuleHookType) -> None:
if origin in cls._locations:
# We already have a hook for this origin, don't register a new one
# but invoke it directly instead, if the module was already loaded.
module = cls.get_by_origin(origin)
if module is not None:
hook(module)
return
cls._locations.add(str(origin))
super().register_origin_hook(origin, hook)
@classmethod
def unregister_origin_hook(cls, origin: Path, hook: ModuleHookType) -> None:
try:
cls._locations.remove(str(origin))
except KeyError:
# Nothing to unregister.
return
return super().unregister_origin_hook(origin, hook)
@classmethod
def register_module_hook(cls, module: str, hook: ModuleHookType) -> None:
if module in cls._locations:
# We already have a hook for this origin, don't register a new one
# but invoke it directly instead, if the module was already loaded.
mod = sys.modules.get(module)
if mod is not None:
hook(mod)
return
cls._locations.add(module)
super().register_module_hook(module, hook)
@classmethod
def unregister_module_hook(cls, module: str, hook: ModuleHookType) -> None:
try:
cls._locations.remove(module)
except KeyError:
# Nothing to unregister.
return
return super().unregister_module_hook(module, hook)
@classmethod
def on_run_module(cls, module: ModuleType) -> None:
if cls._instance is not None:
# Treat run module as an import to trigger import hooks and register
# the module's origin.
cls._instance.after_import(module)
class DebuggerWrappingContext(WrappingContext):
__priority__ = 99 # Execute after all other contexts
def __init__(
self, f, collector: SignalCollector, registry: ProbeRegistry, tracer: Tracer, probe_meter: Metrics.Meter
) -> None:
super().__init__(f)
self._collector = collector
self._probe_registry = registry
self._tracer = tracer
self._probe_meter = probe_meter
self.probes: Dict[str, Probe] = {}
def add_probe(self, probe: Probe) -> None:
self.probes[probe.probe_id] = probe
def remove_probe(self, probe: Probe) -> None:
del self.probes[probe.probe_id]
def has_probes(self) -> bool:
return bool(self.probes)
def _open_contexts(self) -> None:
frame = self.__frame__
assert frame is not None # nosec
thread = threading.current_thread()
signal: Optional[Signal] = None
# Group probes on the basis of whether they create new context.
context_creators: List[Probe] = []
context_consumers: List[Probe] = []
for p in self.probes.values():
(context_creators if p.__context_creator__ else context_consumers).append(p)
contexts: Deque[SignalContext] = deque()
# Trigger the context creators first, so that the new context can be
# consumed by the consumers.
for probe in chain(context_creators, context_consumers):
# Because new context might be created, we need to recompute it
# for each probe.
trace_context = self._tracer.current_trace_context()
if isinstance(probe, MetricFunctionProbe):
signal = MetricSample(
probe=probe,
frame=frame,
thread=thread,
trace_context=trace_context,
meter=self._probe_meter,
)
elif isinstance(probe, LogFunctionProbe):
signal = Snapshot(
probe=probe,
frame=frame,
thread=thread,
trace_context=trace_context,
)
elif isinstance(probe, SpanFunctionProbe):
signal = DynamicSpan(
probe=probe,
frame=frame,
thread=thread,
trace_context=trace_context,
)
elif isinstance(probe, SpanDecorationFunctionProbe):
signal = SpanDecoration(
probe=probe,
frame=frame,
thread=thread,
)
else:
log.error("Unsupported probe type: %s", type(probe))
continue
contexts.append(self._collector.attach(signal))
# Save state on the wrapping context
self.set("start_time", compat.monotonic_ns())
self.set("contexts", contexts)
def _close_contexts(self, retval=None, exc_info=(None, None, None)) -> None:
end_time = compat.monotonic_ns()
contexts = self.get("contexts")
while contexts:
# Open probe signal contexts are ordered, with those that have
# created new tracing context first. We need to finalise them in
# reverse order, so we pop them from the end of the queue (LIFO).
context = contexts.pop()
context.exit(retval, exc_info, end_time - self.get("start_time"))
signal = context.signal
if signal.state is SignalState.DONE:
self._probe_registry.set_emitting(signal.probe)
def __enter__(self) -> "DebuggerWrappingContext":
super().__enter__()
try:
self._open_contexts()
except Exception:
log.exception("Failed to open debugging contexts")
return self
def __return__(self, value: T) -> T:
try:
self._close_contexts(retval=value)
except Exception:
log.exception("Failed to close debugging contexts from return")
return super().__return__(value)
def __exit__(
self, exc_type: Optional[Type[BaseException]], exc_val: Optional[BaseException], exc_tb: Optional[TracebackType]
) -> None:
try:
self._close_contexts(exc_info=(exc_type, exc_val, exc_tb))
except Exception:
log.exception("Failed to close debugging contexts from exception block")
super().__exit__(exc_type, exc_val, exc_tb)
class Debugger(Service):
_instance: Optional["Debugger"] = None
_probe_meter = _probe_metrics.get_meter("probe")
__rc_adapter__ = ProbeRCAdapter
__uploader__ = LogsIntakeUploaderV1
__watchdog__ = DebuggerModuleWatchdog
__logger__ = ProbeStatusLogger
@classmethod
def enable(cls, run_module: bool = False) -> None:
"""Enable dynamic instrumentation
This class method is idempotent. Dynamic instrumentation will be
disabled automatically at exit.
"""
if cls._instance is not None:
log.debug("%s already enabled", cls.__name__)
return
log.debug("Enabling %s", cls.__name__)
di_config.enabled = True
cls.__watchdog__.install()
if di_config.metrics:
metrics.enable()
cls._instance = debugger = cls()
debugger.start()
atexit.register(cls.disable)
register_post_run_module_hook(cls._on_run_module)
telemetry_writer.product_activated(TELEMETRY_APM_PRODUCT.DYNAMIC_INSTRUMENTATION, True)
log.debug("%s enabled", cls.__name__)
@classmethod
def disable(cls, join: bool = True) -> None:
"""Disable dynamic instrumentation.
This class method is idempotent. Called automatically at exit, if
dynamic instrumentation was enabled.
"""
if cls._instance is None:
log.debug("%s not enabled", cls.__name__)
return
log.debug("Disabling %s", cls.__name__)
remoteconfig_poller.unregister("LIVE_DEBUGGING")
atexit.unregister(cls.disable)
unregister_post_run_module_hook(cls._on_run_module)
cls._instance.stop(join=join)
cls._instance = None
cls.__watchdog__.uninstall()
if di_config.metrics:
metrics.disable()
di_config.enabled = False
telemetry_writer.product_activated(TELEMETRY_APM_PRODUCT.DYNAMIC_INSTRUMENTATION, False)
log.debug("%s disabled", cls.__name__)
def __init__(self, tracer: Optional[Tracer] = None) -> None:
super().__init__()
self._tracer = tracer or ddtrace.tracer
service_name = di_config.service_name
self._status_logger = status_logger = self.__logger__(service_name)
self._probe_registry = ProbeRegistry(status_logger=status_logger)
self._function_store = FunctionStore(extra_attrs=["__dd_wrappers__"])
log_limiter = RateLimiter(limit_rate=1.0, raise_on_exceed=False)
self._global_rate_limiter = RateLimiter(
limit_rate=di_config.global_rate_limit, # TODO: Make it configurable. Note that this is per-process!
on_exceed=lambda: log_limiter.limit(log.warning, "Global rate limit exceeded"),
call_once=True,
raise_on_exceed=False,
)
if di_config.enabled:
# TODO: this is only temporary and will be reverted once the DD_REMOTE_CONFIGURATION_ENABLED variable
# has been removed
if ddconfig._remote_config_enabled is False:
ddconfig._remote_config_enabled = True
log.info("Disabled Remote Configuration enabled by Dynamic Instrumentation.")
# Register the debugger with the RCM client.
di_callback = self.__rc_adapter__(None, self._on_configuration, status_logger=status_logger)
remoteconfig_poller.register("LIVE_DEBUGGING", di_callback, restart_on_fork=True)
log.debug("%s initialized (service name: %s)", self.__class__.__name__, service_name)
def _dd_debugger_hook(self, probe: Probe) -> None:
"""Debugger probe hook.
This gets called with a reference to the probe. We only check whether
the probe is active. If so, we push the collected data to the collector
for bulk processing. This way we avoid adding delay while the
instrumented code is running.
"""
try:
actual_frame = sys._getframe(1)
signal: Optional[Signal] = None
if isinstance(probe, MetricLineProbe):
signal = MetricSample(
probe=probe,
frame=actual_frame,
thread=threading.current_thread(),
trace_context=self._tracer.current_trace_context(),
meter=self._probe_meter,
)
elif isinstance(probe, LogLineProbe):
if probe.take_snapshot:
# TODO: Global limit evaluated before probe conditions
if self._global_rate_limiter.limit() is RateLimitExceeded:
return
signal = Snapshot(
probe=probe,
frame=actual_frame,
thread=threading.current_thread(),
trace_context=self._tracer.current_trace_context(),
)
elif isinstance(probe, SpanDecorationLineProbe):
signal = SpanDecoration(
probe=probe,
frame=actual_frame,
thread=threading.current_thread(),
)
else:
log.error("Unsupported probe type: %r", type(probe))
return
signal.line()
log.debug("[%s][P: %s] Debugger. Report signal %s", os.getpid(), os.getppid(), signal)
self.__uploader__.get_collector().push(signal)
if signal.state is SignalState.DONE:
self._probe_registry.set_emitting(probe)
except Exception:
log.error("Failed to execute probe hook", exc_info=True)
def _probe_injection_hook(self, module: ModuleType) -> None:
# This hook is invoked by the ModuleWatchdog or the post run module hook
# to inject probes.
# Group probes by function so that we decompile each function once and
# bulk-inject the probes.
probes_for_function: Dict[FullyNamedWrappedFunction, List[Probe]] = defaultdict(list)
for probe in self._probe_registry.get_pending(str(origin(module))):
if not isinstance(probe, LineLocationMixin):
continue
line = probe.line
assert line is not None # nosec
functions = FunctionDiscovery.from_module(module).at_line(line)
if not functions:
module_origin = str(origin(module))
if linecache.getline(module_origin, line):
# The source actually has a line at the given line number
message = (
f"Cannot install probe {probe.probe_id}: "
f"function at line {line} within source file {module_origin} "
"is likely decorated with an unsupported decorator."
)
else:
message = (
f"Cannot install probe {probe.probe_id}: "
f"no functions at line {line} within source file {module_origin} found"
)
log.error(message)
self._probe_registry.set_error(probe, "NoFunctionsAtLine", message)
continue
for function in (cast(FullyNamedWrappedFunction, _) for _ in functions):
probes_for_function[function].append(cast(LineProbe, probe))
for function, probes in probes_for_function.items():
failed = self._function_store.inject_hooks(
function, [(self._dd_debugger_hook, cast(LineProbe, probe).line, probe) for probe in probes]
)
for probe in probes:
if probe.probe_id in failed:
self._probe_registry.set_error(probe, "InjectionFailure", "Failed to inject")
else:
self._probe_registry.set_installed(probe)
if failed:
log.error("[%s][P: %s] Failed to inject probes %r", os.getpid(), os.getppid(), failed)
log.debug(
"[%s][P: %s] Injected probes %r in %r",
os.getpid(),
os.getppid(),
[probe.probe_id for probe in probes if probe.probe_id not in failed],
function,
)
def _inject_probes(self, probes: List[LineProbe]) -> None:
for probe in probes:
if probe not in self._probe_registry:
if len(self._probe_registry) >= di_config.max_probes:
log.warning("Too many active probes. Ignoring new ones.")
return
log.debug("[%s][P: %s] Received new %s.", os.getpid(), os.getppid(), probe)
self._probe_registry.register(probe)
resolved_source = probe.resolved_source_file
if resolved_source is None:
log.error(
"Cannot inject probe %s: source file %s cannot be resolved", probe.probe_id, probe.source_file
)
self._probe_registry.set_error(probe, "NoSourceFile", "Source file location cannot be resolved")
continue
for source in {probe.resolved_source_file for probe in probes if probe.resolved_source_file is not None}:
try:
self.__watchdog__.register_origin_hook(source, self._probe_injection_hook)
except Exception as exc:
for probe in probes:
if probe.resolved_source_file != source:
continue
exc_type = type(exc)
self._probe_registry.set_error(probe, exc_type.__name__, str(exc))
log.error("Cannot register probe injection hook on source '%s'", source, exc_info=True)
def _eject_probes(self, probes_to_eject: List[LineProbe]) -> None:
# TODO[perf]: Bulk-collect probes as for injection. This is lower
# priority as probes are normally removed manually by users.
unregistered_probes: List[LineProbe] = []
for probe in probes_to_eject:
if probe not in self._probe_registry:
log.error("Attempted to eject unregistered probe %r", probe)
continue
(registered_probe,) = self._probe_registry.unregister(probe)
unregistered_probes.append(cast(LineProbe, registered_probe))
probes_for_source: Dict[Path, List[LineProbe]] = defaultdict(list)
for probe in unregistered_probes:
if probe.resolved_source_file is None:
continue
probes_for_source[probe.resolved_source_file].append(probe)
for resolved_source, probes in probes_for_source.items():
module = self.__watchdog__.get_by_origin(resolved_source)
if module is not None:
# The module is still loaded, so we can try to eject the hooks
probes_for_function: Dict[FullyNamedWrappedFunction, List[LineProbe]] = defaultdict(list)
for probe in probes:
if not isinstance(probe, LineLocationMixin):
continue
line = probe.line
assert line is not None, probe # nosec
functions = FunctionDiscovery.from_module(module).at_line(line)
for function in (cast(FullyNamedWrappedFunction, _) for _ in functions):
probes_for_function[function].append(probe)
for function, ps in probes_for_function.items():
failed = self._function_store.eject_hooks(
cast(FunctionType, function),
[(self._dd_debugger_hook, probe.line, probe) for probe in ps if probe.line is not None],
)
for probe in ps:
if probe.probe_id in failed:
log.error("Failed to eject %r from %r", probe, function)
else:
log.debug("Ejected %r from %r", probe, function)
if not self._probe_registry.has_probes(str(resolved_source)):
try:
self.__watchdog__.unregister_origin_hook(resolved_source, self._probe_injection_hook)
log.debug("Unregistered injection hook on source '%s'", resolved_source)
except ValueError:
log.error("Cannot unregister injection hook on %r", resolved_source, exc_info=True)
def _probe_wrapping_hook(self, module: ModuleType) -> None:
probes = self._probe_registry.get_pending(module.__name__)
for probe in probes:
if not isinstance(probe, FunctionLocationMixin):
continue
try:
assert probe.module is not None and probe.func_qname is not None # nosec
function = cast(FunctionType, FunctionDiscovery.from_module(module).by_name(probe.func_qname))
except ValueError:
message = (
f"Cannot install probe {probe.probe_id}: no function '{probe.func_qname}' in module {probe.module}"
"found (note: if the function exists, it might be decorated with an unsupported decorator)"
)
self._probe_registry.set_error(probe, "NoFunctionInModule", message)
log.error(message)
continue
if DebuggerWrappingContext.is_wrapped(function):
context = cast(DebuggerWrappingContext, DebuggerWrappingContext.extract(function))
log.debug(
"[%s][P: %s] Function probe %r added to already wrapped %r",
os.getpid(),
os.getppid(),
probe.probe_id,
function,
)
else:
context = DebuggerWrappingContext(
function,
collector=self.__uploader__.get_collector(),
registry=self._probe_registry,
tracer=self._tracer,
probe_meter=self._probe_meter,
)
self._function_store.wrap(cast(FunctionType, function), context)
log.debug(
"[%s][P: %s] Function probe %r wrapped around %r",
os.getpid(),
os.getppid(),
probe.probe_id,
function,
)
context.add_probe(probe)
self._probe_registry.set_installed(probe)
def _wrap_functions(self, probes: List[FunctionProbe]) -> None:
for probe in probes:
if len(self._probe_registry) >= di_config.max_probes:
log.warning("Too many active probes. Ignoring new ones.")
return
self._probe_registry.register(probe)
try:
assert probe.module is not None # nosec
self.__watchdog__.register_module_hook(probe.module, self._probe_wrapping_hook)
except Exception as exc:
exc_type = type(exc)
self._probe_registry.set_error(probe, exc_type.__name__, str(exc))
log.error("Cannot register probe wrapping hook on module '%s'", probe.module, exc_info=True)
def _unwrap_functions(self, probes: List[FunctionProbe]) -> None:
# Keep track of all the modules involved to see if there are any import
# hooks that we can clean up at the end.
touched_modules: Set[str] = set()
for probe in probes:
registered_probes = self._probe_registry.unregister(probe)
if not registered_probes:
log.error("Attempted to eject unregistered probe %r", probe)
continue
(registered_probe,) = registered_probes
assert probe.module is not None # nosec
module = sys.modules.get(probe.module, None)
if module is not None:
# The module is still loaded, so we can try to unwrap the function
touched_modules.add(probe.module)
assert probe.func_qname is not None # nosec
function = cast(FunctionType, FunctionDiscovery.from_module(module).by_name(probe.func_qname))
if DebuggerWrappingContext.is_wrapped(function):
context = cast(DebuggerWrappingContext, DebuggerWrappingContext.extract(function))
context.remove_probe(probe)
if not context.has_probes():
self._function_store.unwrap(cast(FullyNamedWrappedFunction, function))
log.debug("Unwrapped %r", registered_probe)
else:
log.error("Attempted to unwrap %r, but no wrapper found", registered_probe)
# Clean up import hooks.
for module_name in touched_modules:
if not self._probe_registry.has_probes(module_name):
try:
self.__watchdog__.unregister_module_hook(module_name, self._probe_wrapping_hook)
log.debug("Unregistered wrapping import hook on module %s", module_name)
except ValueError:
log.error("Cannot unregister wrapping import hook for module %r", module_name, exc_info=True)
def _on_configuration(self, event: ProbePollerEventType, probes: Iterable[Probe]) -> None:
log.debug("[%s][P: %s] Received poller event %r with probes %r", os.getpid(), os.getppid(), event, probes)
if event == ProbePollerEvent.STATUS_UPDATE:
self._probe_registry.log_probes_status()
return
if event == ProbePollerEvent.MODIFIED_PROBES:
for probe in probes:
if probe in self._probe_registry:
registered_probe = self._probe_registry.get(probe.probe_id)
if registered_probe is None:
# We didn't have the probe. This shouldn't have happened!
log.error("Modified probe %r was not found in registry.", probe)
continue
self._probe_registry.update(probe)
return
line_probes: List[LineProbe] = []
function_probes: List[FunctionProbe] = []
for probe in probes:
if isinstance(probe, LineLocationMixin):
line_probes.append(cast(LineProbe, probe))
elif isinstance(probe, FunctionLocationMixin):
function_probes.append(cast(FunctionProbe, probe))
else:
log.warning("Skipping probe '%r': not supported.", probe)
if event == ProbePollerEvent.NEW_PROBES:
self._inject_probes(line_probes)
self._wrap_functions(function_probes)
elif event == ProbePollerEvent.DELETED_PROBES:
self._eject_probes(line_probes)
self._unwrap_functions(function_probes)
else:
raise ValueError("Unknown probe poller event %r" % event)
def _stop_service(self, join: bool = True) -> None:
self._function_store.restore_all()
self.__uploader__.unregister(UploaderProduct.DEBUGGER)
def _start_service(self) -> None:
self.__uploader__.register(UploaderProduct.DEBUGGER)
@classmethod
def _on_run_module(cls, module: ModuleType) -> None:
debugger = cls._instance
if debugger is not None:
debugger.__watchdog__.on_run_module(module)