wrapture 1.0.0.dev1__tar.gz → 1.0.0.dev3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {wrapture-1.0.0.dev1/src/wrapture.egg-info → wrapture-1.0.0.dev3}/PKG-INFO +36 -22
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/README.md +33 -19
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/pyproject.toml +15 -3
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/__init__.py +87 -24
- wrapture-1.0.0.dev3/src/wrapture/__main__.py +148 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/attributes.py +53 -9
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/bindings.py +430 -76
- wrapture-1.0.0.dev3/src/wrapture/bootstrap.py +86 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/capture.py +31 -1
- wrapture-1.0.0.dev3/src/wrapture/config.py +1113 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/events.py +49 -11
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/exceptions.py +18 -0
- wrapture-1.0.0.dev3/src/wrapture/export.py +298 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/iterators.py +12 -12
- wrapture-1.0.0.dev3/src/wrapture/observed.py +422 -0
- wrapture-1.0.0.dev3/src/wrapture/sinks.py +1006 -0
- wrapture-1.0.0.dev3/src/wrapture/stacks.py +152 -0
- wrapture-1.0.0.dev3/src/wrapture/timeline.py +566 -0
- wrapture-1.0.0.dev3/src/wrapture/tools/__init__.py +8 -0
- wrapture-1.0.0.dev3/src/wrapture/tools/__main__.py +51 -0
- wrapture-1.0.0.dev3/src/wrapture/tools/convert.py +150 -0
- wrapture-1.0.0.dev3/src/wrapture/wsgi.py +633 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3/src/wrapture.egg-info}/PKG-INFO +36 -22
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture.egg-info/SOURCES.txt +23 -1
- wrapture-1.0.0.dev3/src/wrapture.egg-info/entry_points.txt +2 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_attribute_events.py +16 -4
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_bindings.py +173 -1
- wrapture-1.0.0.dev3/tests/test_bootstrap.py +147 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_capture.py +25 -10
- wrapture-1.0.0.dev3/tests/test_config.py +1084 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_events.py +17 -9
- wrapture-1.0.0.dev3/tests/test_export.py +253 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_generator_events.py +9 -4
- wrapture-1.0.0.dev3/tests/test_jsonlines.py +307 -0
- wrapture-1.0.0.dev3/tests/test_observed.py +264 -0
- wrapture-1.0.0.dev3/tests/test_predicates.py +231 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_recording.py +44 -7
- wrapture-1.0.0.dev3/tests/test_runner.py +213 -0
- wrapture-1.0.0.dev3/tests/test_sink_library.py +360 -0
- wrapture-1.0.0.dev3/tests/test_sinks.py +454 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_stacks.py +67 -8
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_threads.py +67 -2
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_timeline.py +154 -31
- wrapture-1.0.0.dev3/tests/test_tools.py +235 -0
- wrapture-1.0.0.dev3/tests/test_wsgi.py +668 -0
- wrapture-1.0.0.dev1/src/wrapture/stacks.py +0 -93
- wrapture-1.0.0.dev1/src/wrapture/timeline.py +0 -364
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/LICENSE +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/setup.cfg +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/behaviours.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/eventlogs.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/py.typed +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture/pytest_plugin.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture.egg-info/dependency_links.txt +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture.egg-info/not-zip-safe +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture.egg-info/requires.txt +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/src/wrapture.egg-info/top_level.txt +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_attributes.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_behaviours.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_eventlogs.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_iterators.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_pytest_plugin.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_targets.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_testing_patterns.py +0 -0
- {wrapture-1.0.0.dev1 → wrapture-1.0.0.dev3}/tests/test_version.py +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wrapture
|
|
3
|
-
Version: 1.0.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.0.dev3
|
|
4
|
+
Summary: Monkey patch, test, and trace Python by attaching bindings to call sites, without modifying the code being observed. Built on wrapt.
|
|
5
5
|
Author-email: Graham Dumpleton <Graham.Dumpleton@gmail.com>
|
|
6
6
|
License-Expression: BSD-2-Clause
|
|
7
7
|
Project-URL: Homepage, https://github.com/GrahamDumpleton/wrapture
|
|
8
8
|
Project-URL: Documentation, https://wrapture.readthedocs.io
|
|
9
9
|
Project-URL: Bug Tracker, https://github.com/GrahamDumpleton/wrapture/issues/
|
|
10
|
-
Keywords: wrapper,monkey patching,tracing,testing
|
|
10
|
+
Keywords: wrapper,monkey patching,tracing,testing
|
|
11
11
|
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
@@ -44,9 +44,24 @@ It is a sibling project to [wrapt](https://github.com/GrahamDumpleton/wrapt)
|
|
|
44
44
|
and [autowrapt](https://github.com/GrahamDumpleton/autowrapt), building on the
|
|
45
45
|
safe monkey-patching machinery wrapt provides.
|
|
46
46
|
|
|
47
|
-
> **Status: early development.** The monkey patching
|
|
48
|
-
>
|
|
49
|
-
>
|
|
47
|
+
> **Status: early development.** The monkey patching, unit testing and
|
|
48
|
+
> ad-hoc tracing layers are implemented, including WSGI request tracing.
|
|
49
|
+
> Development previews are published to PyPI; the API may still shift
|
|
50
|
+
> before 1.0.0.
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
wrapture is on [PyPI](https://pypi.org/project/wrapture/):
|
|
55
|
+
|
|
56
|
+
```console
|
|
57
|
+
$ pip install wrapture
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
or with uv:
|
|
61
|
+
|
|
62
|
+
```console
|
|
63
|
+
$ uv add wrapture
|
|
64
|
+
```
|
|
50
65
|
|
|
51
66
|
## Documentation
|
|
52
67
|
|
|
@@ -83,7 +98,7 @@ failure, or transform one argument while the real code keeps running.
|
|
|
83
98
|
|
|
84
99
|
## What it does
|
|
85
100
|
|
|
86
|
-
One mechanism,
|
|
101
|
+
One mechanism, three uses, in increasing order of machinery:
|
|
87
102
|
|
|
88
103
|
1. **Monkey patching.** A clean lifecycle and behaviour vocabulary over
|
|
89
104
|
wrapt's `wrap_object()`. Point at a method by name and stub it, fail it,
|
|
@@ -104,16 +119,17 @@ One mechanism, four uses, in increasing order of machinery:
|
|
|
104
119
|
3. **Ad-hoc tracing.** Attach bindings to a running application, including
|
|
105
120
|
one you cannot modify or redeploy, and emit a structured, nested trace to
|
|
106
121
|
process or chart elsewhere. Name a handful of methods and a call tree
|
|
107
|
-
appears; no code changes required.
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
122
|
+
appears; no code changes required: with a `wrapture.toml` naming the
|
|
123
|
+
methods and a sink, `python -m wrapture manage.py runserver` traces the
|
|
124
|
+
application untouched. With [autowrapt](https://github.com/GrahamDumpleton/autowrapt)
|
|
125
|
+
installed, not even the launcher is needed: `AUTOWRAPT_BOOTSTRAP=wrapture`
|
|
126
|
+
in the environment applies the same config at interpreter startup, so the
|
|
127
|
+
program starts with plain `python`.
|
|
128
|
+
|
|
129
|
+
The distinction that matters: most tracing tools either need the code to
|
|
130
|
+
have been written with them in mind, or can only be switched on for the
|
|
131
|
+
whole program at once. wrapture needs neither: you point at a method by
|
|
132
|
+
name and a trace appears.
|
|
117
133
|
|
|
118
134
|
## Why
|
|
119
135
|
|
|
@@ -127,8 +143,7 @@ nested trace, assert on it or export it, in tests or in production":
|
|
|
127
143
|
`InMemorySpanExporter`) require the code to already be instrumented.
|
|
128
144
|
- `sys.settrace` tools (`hunter`, `snoop`) give a firehose with no assertion
|
|
129
145
|
API.
|
|
130
|
-
-
|
|
131
|
-
are all-or-nothing products rather than a toolkit.
|
|
146
|
+
- APM agents are all-or-nothing products rather than a toolkit.
|
|
132
147
|
|
|
133
148
|
wrapture fills that gap: a targeted call tree with normalized arguments and
|
|
134
149
|
return values, produced by naming the methods you care about, usable as a
|
|
@@ -138,8 +153,6 @@ testing assertion library, a tracing tool, or both at once.
|
|
|
138
153
|
|
|
139
154
|
- **Not a replacement for `unittest.mock`.** It complements mocking where
|
|
140
155
|
code has seams; it exists for the code that doesn't.
|
|
141
|
-
- **Not a sampling profiler.** `py-spy` and `austin` do that better and
|
|
142
|
-
without distortion.
|
|
143
156
|
- **Not a production APM.** It is a toolkit that APM-like things could be
|
|
144
157
|
built on.
|
|
145
158
|
- **Not an OpenTelemetry competitor.** It should emit to OTel, not replace
|
|
@@ -152,4 +165,5 @@ testing assertion library, a tracing tool, or both at once.
|
|
|
152
165
|
|
|
153
166
|
## License
|
|
154
167
|
|
|
155
|
-
BSD 2-Clause. See
|
|
168
|
+
BSD 2-Clause. See
|
|
169
|
+
[LICENSE](https://github.com/GrahamDumpleton/wrapture/blob/develop/LICENSE).
|
|
@@ -13,9 +13,24 @@ It is a sibling project to [wrapt](https://github.com/GrahamDumpleton/wrapt)
|
|
|
13
13
|
and [autowrapt](https://github.com/GrahamDumpleton/autowrapt), building on the
|
|
14
14
|
safe monkey-patching machinery wrapt provides.
|
|
15
15
|
|
|
16
|
-
> **Status: early development.** The monkey patching
|
|
17
|
-
>
|
|
18
|
-
>
|
|
16
|
+
> **Status: early development.** The monkey patching, unit testing and
|
|
17
|
+
> ad-hoc tracing layers are implemented, including WSGI request tracing.
|
|
18
|
+
> Development previews are published to PyPI; the API may still shift
|
|
19
|
+
> before 1.0.0.
|
|
20
|
+
|
|
21
|
+
## Installation
|
|
22
|
+
|
|
23
|
+
wrapture is on [PyPI](https://pypi.org/project/wrapture/):
|
|
24
|
+
|
|
25
|
+
```console
|
|
26
|
+
$ pip install wrapture
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
or with uv:
|
|
30
|
+
|
|
31
|
+
```console
|
|
32
|
+
$ uv add wrapture
|
|
33
|
+
```
|
|
19
34
|
|
|
20
35
|
## Documentation
|
|
21
36
|
|
|
@@ -52,7 +67,7 @@ failure, or transform one argument while the real code keeps running.
|
|
|
52
67
|
|
|
53
68
|
## What it does
|
|
54
69
|
|
|
55
|
-
One mechanism,
|
|
70
|
+
One mechanism, three uses, in increasing order of machinery:
|
|
56
71
|
|
|
57
72
|
1. **Monkey patching.** A clean lifecycle and behaviour vocabulary over
|
|
58
73
|
wrapt's `wrap_object()`. Point at a method by name and stub it, fail it,
|
|
@@ -73,16 +88,17 @@ One mechanism, four uses, in increasing order of machinery:
|
|
|
73
88
|
3. **Ad-hoc tracing.** Attach bindings to a running application, including
|
|
74
89
|
one you cannot modify or redeploy, and emit a structured, nested trace to
|
|
75
90
|
process or chart elsewhere. Name a handful of methods and a call tree
|
|
76
|
-
appears; no code changes required.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
91
|
+
appears; no code changes required: with a `wrapture.toml` naming the
|
|
92
|
+
methods and a sink, `python -m wrapture manage.py runserver` traces the
|
|
93
|
+
application untouched. With [autowrapt](https://github.com/GrahamDumpleton/autowrapt)
|
|
94
|
+
installed, not even the launcher is needed: `AUTOWRAPT_BOOTSTRAP=wrapture`
|
|
95
|
+
in the environment applies the same config at interpreter startup, so the
|
|
96
|
+
program starts with plain `python`.
|
|
97
|
+
|
|
98
|
+
The distinction that matters: most tracing tools either need the code to
|
|
99
|
+
have been written with them in mind, or can only be switched on for the
|
|
100
|
+
whole program at once. wrapture needs neither: you point at a method by
|
|
101
|
+
name and a trace appears.
|
|
86
102
|
|
|
87
103
|
## Why
|
|
88
104
|
|
|
@@ -96,8 +112,7 @@ nested trace, assert on it or export it, in tests or in production":
|
|
|
96
112
|
`InMemorySpanExporter`) require the code to already be instrumented.
|
|
97
113
|
- `sys.settrace` tools (`hunter`, `snoop`) give a firehose with no assertion
|
|
98
114
|
API.
|
|
99
|
-
-
|
|
100
|
-
are all-or-nothing products rather than a toolkit.
|
|
115
|
+
- APM agents are all-or-nothing products rather than a toolkit.
|
|
101
116
|
|
|
102
117
|
wrapture fills that gap: a targeted call tree with normalized arguments and
|
|
103
118
|
return values, produced by naming the methods you care about, usable as a
|
|
@@ -107,8 +122,6 @@ testing assertion library, a tracing tool, or both at once.
|
|
|
107
122
|
|
|
108
123
|
- **Not a replacement for `unittest.mock`.** It complements mocking where
|
|
109
124
|
code has seams; it exists for the code that doesn't.
|
|
110
|
-
- **Not a sampling profiler.** `py-spy` and `austin` do that better and
|
|
111
|
-
without distortion.
|
|
112
125
|
- **Not a production APM.** It is a toolkit that APM-like things could be
|
|
113
126
|
built on.
|
|
114
127
|
- **Not an OpenTelemetry competitor.** It should emit to OTel, not replace
|
|
@@ -121,4 +134,5 @@ testing assertion library, a tracing tool, or both at once.
|
|
|
121
134
|
|
|
122
135
|
## License
|
|
123
136
|
|
|
124
|
-
BSD 2-Clause. See
|
|
137
|
+
BSD 2-Clause. See
|
|
138
|
+
[LICENSE](https://github.com/GrahamDumpleton/wrapture/blob/develop/LICENSE).
|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wrapture"
|
|
9
9
|
dynamic = ["version"]
|
|
10
|
-
description = "
|
|
10
|
+
description = "Monkey patch, test, and trace Python by attaching bindings to call sites, without modifying the code being observed. Built on wrapt."
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
license = "BSD-2-Clause"
|
|
13
13
|
license-files = ["LICENSE"]
|
|
@@ -15,7 +15,7 @@ authors = [
|
|
|
15
15
|
{name = "Graham Dumpleton", email = "Graham.Dumpleton@gmail.com"}
|
|
16
16
|
]
|
|
17
17
|
requires-python = ">=3.12"
|
|
18
|
-
keywords = ["wrapper", "monkey patching", "tracing", "testing"
|
|
18
|
+
keywords = ["wrapper", "monkey patching", "tracing", "testing"]
|
|
19
19
|
classifiers = [
|
|
20
20
|
"Development Status :: 2 - Pre-Alpha",
|
|
21
21
|
"Programming Language :: Python :: 3",
|
|
@@ -33,6 +33,18 @@ Homepage = "https://github.com/GrahamDumpleton/wrapture"
|
|
|
33
33
|
Documentation = "https://wrapture.readthedocs.io"
|
|
34
34
|
"Bug Tracker" = "https://github.com/GrahamDumpleton/wrapture/issues/"
|
|
35
35
|
|
|
36
|
+
# The zero-code injection trigger, in the shape autowrapt consumes:
|
|
37
|
+
# AUTOWRAPT_BOOTSTRAP=wrapture names this entry point group, which
|
|
38
|
+
# autowrapt hands to wrapt.discover_post_import_hooks() at interpreter
|
|
39
|
+
# startup. Each entry maps a trigger module to a callback; hooking os,
|
|
40
|
+
# which is always already imported by then, makes the callback fire
|
|
41
|
+
# immediately at startup. Inert metadata unless autowrapt is installed
|
|
42
|
+
# and the environment variable is set; wrapture itself has no
|
|
43
|
+
# dependency on autowrapt and never imports it.
|
|
44
|
+
|
|
45
|
+
[project.entry-points.wrapture]
|
|
46
|
+
os = "wrapture.bootstrap:bootstrap"
|
|
47
|
+
|
|
36
48
|
[project.optional-dependencies]
|
|
37
49
|
dev = [
|
|
38
50
|
"mypy",
|
|
@@ -49,7 +61,7 @@ docs = [
|
|
|
49
61
|
[tool.setuptools]
|
|
50
62
|
package-dir = {"" = "src"}
|
|
51
63
|
zip-safe = false
|
|
52
|
-
packages = ["wrapture"]
|
|
64
|
+
packages = ["wrapture", "wrapture.tools"]
|
|
53
65
|
|
|
54
66
|
[tool.setuptools.package-data]
|
|
55
67
|
wrapture = ["py.typed"]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Wrapture is a library for attaching bindings to arbitrary Python call sites,
|
|
3
3
|
without modifying the code being observed, for use in monkey patching,
|
|
4
|
-
testing
|
|
4
|
+
testing and tracing.
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
|
|
@@ -17,9 +17,11 @@ def _format_version(parts: tuple[str, ...]) -> str:
|
|
|
17
17
|
)
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
__version_info__ = ("1", "0", "0", "
|
|
20
|
+
__version_info__ = ("1", "0", "0", "dev3")
|
|
21
21
|
__version__ = _format_version(__version_info__)
|
|
22
22
|
|
|
23
|
+
from wrapt import MISSING
|
|
24
|
+
|
|
23
25
|
from .behaviours import (
|
|
24
26
|
CallBehaviour,
|
|
25
27
|
DeleteBehaviour,
|
|
@@ -31,15 +33,19 @@ from .bindings import (
|
|
|
31
33
|
BindingGroup,
|
|
32
34
|
binding,
|
|
33
35
|
bindings,
|
|
36
|
+
discover,
|
|
34
37
|
)
|
|
35
38
|
from .capture import (
|
|
36
|
-
NONE,
|
|
37
|
-
REFERENCE,
|
|
38
|
-
SNAPSHOT,
|
|
39
|
-
SUMMARY,
|
|
40
|
-
TYPES,
|
|
41
39
|
redact,
|
|
42
40
|
)
|
|
41
|
+
from .config import (
|
|
42
|
+
AppliedConfig,
|
|
43
|
+
Config,
|
|
44
|
+
ObserveEntry,
|
|
45
|
+
SetupEntry,
|
|
46
|
+
find_config,
|
|
47
|
+
load_config,
|
|
48
|
+
)
|
|
43
49
|
from .eventlogs import (
|
|
44
50
|
EventLog,
|
|
45
51
|
)
|
|
@@ -48,25 +54,52 @@ from .events import (
|
|
|
48
54
|
)
|
|
49
55
|
from .exceptions import (
|
|
50
56
|
AlreadyAppliedError,
|
|
57
|
+
ConfigError,
|
|
58
|
+
ConfigWarning,
|
|
51
59
|
DeferredTargetError,
|
|
52
60
|
ExpectationNotMetError,
|
|
53
61
|
NeverAppliedError,
|
|
54
62
|
NotImplementedYetError,
|
|
55
63
|
RecordingGapWarning,
|
|
64
|
+
SinkErrorWarning,
|
|
56
65
|
WrongModeError,
|
|
57
66
|
)
|
|
67
|
+
from .export import (
|
|
68
|
+
canonical,
|
|
69
|
+
chrome_trace,
|
|
70
|
+
load_events,
|
|
71
|
+
mermaid,
|
|
72
|
+
)
|
|
58
73
|
from .iterators import (
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
74
|
+
IteratorAbandonBehaviour,
|
|
75
|
+
IteratorErrorBehaviour,
|
|
76
|
+
IteratorFinishBehaviour,
|
|
77
|
+
IteratorItemBehaviour,
|
|
63
78
|
IteratorProxy,
|
|
64
79
|
iterator,
|
|
65
80
|
)
|
|
81
|
+
from .observed import (
|
|
82
|
+
ObservedCallable,
|
|
83
|
+
observed,
|
|
84
|
+
)
|
|
85
|
+
from .sinks import (
|
|
86
|
+
Aggregate,
|
|
87
|
+
Counter,
|
|
88
|
+
Depth,
|
|
89
|
+
Fanout,
|
|
90
|
+
Filter,
|
|
91
|
+
JSONLines,
|
|
92
|
+
PathStats,
|
|
93
|
+
Printer,
|
|
94
|
+
Sample,
|
|
95
|
+
Sink,
|
|
96
|
+
add_sink,
|
|
97
|
+
flush_sinks,
|
|
98
|
+
remove_sink,
|
|
99
|
+
)
|
|
66
100
|
from .stacks import (
|
|
67
101
|
StackFrame,
|
|
68
|
-
|
|
69
|
-
full,
|
|
102
|
+
clear_stacks,
|
|
70
103
|
stack_frames,
|
|
71
104
|
)
|
|
72
105
|
from .timeline import (
|
|
@@ -74,46 +107,76 @@ from .timeline import (
|
|
|
74
107
|
Timeline,
|
|
75
108
|
annotate,
|
|
76
109
|
current_event,
|
|
110
|
+
propagate,
|
|
77
111
|
timeline,
|
|
78
112
|
)
|
|
113
|
+
from .wsgi import (
|
|
114
|
+
WSGIMiddleware,
|
|
115
|
+
)
|
|
79
116
|
|
|
80
117
|
__all__ = [
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"SNAPSHOT",
|
|
84
|
-
"SUMMARY",
|
|
85
|
-
"TYPES",
|
|
86
|
-
"AbandonBehaviour",
|
|
118
|
+
"MISSING",
|
|
119
|
+
"Aggregate",
|
|
87
120
|
"AlreadyAppliedError",
|
|
121
|
+
"AppliedConfig",
|
|
88
122
|
"Binding",
|
|
89
123
|
"BindingGroup",
|
|
90
124
|
"CallBehaviour",
|
|
125
|
+
"Config",
|
|
126
|
+
"ConfigError",
|
|
127
|
+
"ConfigWarning",
|
|
128
|
+
"Counter",
|
|
91
129
|
"DeferredTargetError",
|
|
92
130
|
"DeleteBehaviour",
|
|
93
|
-
"
|
|
131
|
+
"Depth",
|
|
94
132
|
"Event",
|
|
95
133
|
"EventLog",
|
|
96
134
|
"ExpectationNotMetError",
|
|
97
|
-
"
|
|
135
|
+
"Fanout",
|
|
136
|
+
"Filter",
|
|
98
137
|
"GetBehaviour",
|
|
99
|
-
"
|
|
138
|
+
"IteratorAbandonBehaviour",
|
|
139
|
+
"IteratorErrorBehaviour",
|
|
140
|
+
"IteratorFinishBehaviour",
|
|
141
|
+
"IteratorItemBehaviour",
|
|
100
142
|
"IteratorProxy",
|
|
143
|
+
"JSONLines",
|
|
101
144
|
"NeverAppliedError",
|
|
102
145
|
"NotImplementedYetError",
|
|
146
|
+
"ObserveEntry",
|
|
147
|
+
"ObservedCallable",
|
|
148
|
+
"PathStats",
|
|
149
|
+
"Printer",
|
|
103
150
|
"RecordingGapWarning",
|
|
151
|
+
"Sample",
|
|
104
152
|
"SetBehaviour",
|
|
153
|
+
"SetupEntry",
|
|
154
|
+
"Sink",
|
|
155
|
+
"SinkErrorWarning",
|
|
105
156
|
"StackFrame",
|
|
106
157
|
"Tape",
|
|
107
158
|
"Timeline",
|
|
159
|
+
"WSGIMiddleware",
|
|
108
160
|
"WrongModeError",
|
|
161
|
+
"add_sink",
|
|
109
162
|
"annotate",
|
|
110
163
|
"binding",
|
|
111
164
|
"bindings",
|
|
112
|
-
"
|
|
165
|
+
"canonical",
|
|
166
|
+
"chrome_trace",
|
|
167
|
+
"clear_stacks",
|
|
113
168
|
"current_event",
|
|
114
|
-
"
|
|
169
|
+
"discover",
|
|
170
|
+
"find_config",
|
|
171
|
+
"flush_sinks",
|
|
115
172
|
"iterator",
|
|
173
|
+
"load_config",
|
|
174
|
+
"load_events",
|
|
175
|
+
"mermaid",
|
|
176
|
+
"observed",
|
|
177
|
+
"propagate",
|
|
116
178
|
"redact",
|
|
179
|
+
"remove_sink",
|
|
117
180
|
"stack_frames",
|
|
118
181
|
"timeline",
|
|
119
182
|
]
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
"""Run a Python program with a wrapture config applied first.
|
|
2
|
+
|
|
3
|
+
python -m wrapture [--config PATH] (-m MODULE | SCRIPT) [ARGS...]
|
|
4
|
+
|
|
5
|
+
The config is resolved, loaded and applied before the target runs, so
|
|
6
|
+
patches land before the target module imports anything: the same
|
|
7
|
+
ordering guarantee the injection path gives. The target then runs as
|
|
8
|
+
__main__ with sys.argv rebuilt to the target and its arguments,
|
|
9
|
+
exactly as python itself would have run it.
|
|
10
|
+
|
|
11
|
+
This module is the runner's entry point only, the same private -m
|
|
12
|
+
convention as pdb, cProfile and coverage: run it, do not import it.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import os
|
|
18
|
+
import runpy
|
|
19
|
+
import sys
|
|
20
|
+
from collections.abc import Sequence
|
|
21
|
+
from dataclasses import dataclass
|
|
22
|
+
from typing import NoReturn
|
|
23
|
+
|
|
24
|
+
from .config import find_config, load_config
|
|
25
|
+
from .exceptions import ConfigError
|
|
26
|
+
|
|
27
|
+
_USAGE = """\
|
|
28
|
+
usage: python -m wrapture [--config PATH] (-m MODULE | SCRIPT) [ARGS...]
|
|
29
|
+
|
|
30
|
+
Apply a wrapture config, then run the target as __main__ with ARGS as
|
|
31
|
+
its arguments. With --config the named TOML file is used; without it
|
|
32
|
+
the standard precedence chain locates one: a path in WRAPTURE_CONFIG,
|
|
33
|
+
wrapture.toml in the current directory, then a [tool.wrapture] table
|
|
34
|
+
in pyproject.toml. Everything after the target belongs to the target,
|
|
35
|
+
so wrapture's own options must come before it.
|
|
36
|
+
|
|
37
|
+
Trace files a run produces can be rendered in other formats with
|
|
38
|
+
python -m wrapture.tools convert.
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@dataclass(frozen=True)
|
|
43
|
+
class _Invocation:
|
|
44
|
+
config: str | None
|
|
45
|
+
module: str | None
|
|
46
|
+
script: str | None
|
|
47
|
+
arguments: tuple[str, ...]
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def _usage_error(message: str) -> NoReturn:
|
|
51
|
+
print(f"wrapture: {message}", file=sys.stderr)
|
|
52
|
+
print(_USAGE, file=sys.stderr, end="")
|
|
53
|
+
raise SystemExit(2)
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
def _parse(argv: Sequence[str]) -> _Invocation:
|
|
57
|
+
"""Split the command line into wrapture's own options and the
|
|
58
|
+
target with its arguments.
|
|
59
|
+
|
|
60
|
+
Parsing stops at the first target: everything after -m MODULE or
|
|
61
|
+
the script path is the target's own, however option-like it
|
|
62
|
+
looks, matching how python itself treats a command line.
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
config: str | None = None
|
|
66
|
+
pending = list(argv)
|
|
67
|
+
|
|
68
|
+
while pending:
|
|
69
|
+
argument = pending[0]
|
|
70
|
+
|
|
71
|
+
if argument in ("-h", "--help"):
|
|
72
|
+
print(_USAGE, end="")
|
|
73
|
+
raise SystemExit(0)
|
|
74
|
+
|
|
75
|
+
if argument == "--config":
|
|
76
|
+
if len(pending) < 2:
|
|
77
|
+
_usage_error("--config requires a path")
|
|
78
|
+
config = pending[1]
|
|
79
|
+
del pending[:2]
|
|
80
|
+
continue
|
|
81
|
+
|
|
82
|
+
if argument.startswith("--config="):
|
|
83
|
+
config = argument.partition("=")[2]
|
|
84
|
+
if not config:
|
|
85
|
+
_usage_error("--config requires a path")
|
|
86
|
+
del pending[0]
|
|
87
|
+
continue
|
|
88
|
+
|
|
89
|
+
if argument == "-m":
|
|
90
|
+
if len(pending) < 2:
|
|
91
|
+
_usage_error("-m requires a module name")
|
|
92
|
+
return _Invocation(config, pending[1], None, tuple(pending[2:]))
|
|
93
|
+
|
|
94
|
+
if argument.startswith("-"):
|
|
95
|
+
_usage_error(f"unknown option {argument!r}")
|
|
96
|
+
|
|
97
|
+
return _Invocation(config, None, argument, tuple(pending[1:]))
|
|
98
|
+
|
|
99
|
+
_usage_error("a target is required: -m MODULE or a script path")
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def main(argv: Sequence[str] | None = None) -> None:
|
|
103
|
+
"""Parse the command line, apply the config, and run the target."""
|
|
104
|
+
|
|
105
|
+
invocation = _parse(sys.argv[1:] if argv is None else argv)
|
|
106
|
+
|
|
107
|
+
# Resolve and apply the config before anything else happens, so
|
|
108
|
+
# patches and setup hooks are in place before the target module
|
|
109
|
+
# imports anything. Finding no config is an error rather than a
|
|
110
|
+
# silent untraced run.
|
|
111
|
+
|
|
112
|
+
source = invocation.config if invocation.config is not None else find_config()
|
|
113
|
+
|
|
114
|
+
if source is None:
|
|
115
|
+
print(
|
|
116
|
+
"wrapture: no config found: pass --config PATH, set"
|
|
117
|
+
" WRAPTURE_CONFIG, or provide wrapture.toml or a"
|
|
118
|
+
" [tool.wrapture] table in pyproject.toml in the current"
|
|
119
|
+
" directory",
|
|
120
|
+
file=sys.stderr,
|
|
121
|
+
)
|
|
122
|
+
raise SystemExit(1)
|
|
123
|
+
|
|
124
|
+
try:
|
|
125
|
+
load_config(source).apply()
|
|
126
|
+
except ConfigError as exc:
|
|
127
|
+
print(f"wrapture: {exc}", file=sys.stderr)
|
|
128
|
+
raise SystemExit(1) from None
|
|
129
|
+
|
|
130
|
+
# Hand over to the target as python itself would have run it. For
|
|
131
|
+
# a module target, alter_sys replaces sys.argv[0] with the
|
|
132
|
+
# module's own file, matching python -m; for a script, its
|
|
133
|
+
# directory joins the front of sys.path, matching python script.py.
|
|
134
|
+
|
|
135
|
+
if invocation.module is not None:
|
|
136
|
+
sys.argv[:] = [invocation.module, *invocation.arguments]
|
|
137
|
+
runpy.run_module(invocation.module, run_name="__main__", alter_sys=True)
|
|
138
|
+
else:
|
|
139
|
+
script = invocation.script
|
|
140
|
+
assert script is not None
|
|
141
|
+
|
|
142
|
+
sys.argv[:] = [script, *invocation.arguments]
|
|
143
|
+
sys.path.insert(0, os.path.dirname(os.path.abspath(script)))
|
|
144
|
+
runpy.run_path(script, run_name="__main__")
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
if __name__ == "__main__":
|
|
148
|
+
main()
|