|
5 | 5 |
|
6 | 6 | import abc
|
7 | 7 | import importlib.metadata
|
| 8 | +import os.path |
| 9 | +import shlex |
| 10 | +import subprocess |
8 | 11 | import sys
|
| 12 | +import tempfile |
| 13 | +import uuid |
9 | 14 |
|
10 | 15 |
|
11 | 16 | def get_hooks():
|
@@ -108,3 +113,58 @@ def __enter__(self):
|
108 | 113 |
|
109 | 114 | def __exit__(self, _exc_type, _exc_value, _traceback):
|
110 | 115 | sys._stats_off()
|
| 116 | + |
| 117 | + |
| 118 | +class perf_record(HookBase): |
| 119 | + """Profile the benchmark using perf-record. |
| 120 | +
|
| 121 | + Profile data is written to the current directory directory by default, or |
| 122 | + to the value of the `PYPERF_PERF_RECORD_DATA_DIR` environment variable, if |
| 123 | + it is provided. |
| 124 | +
|
| 125 | + Profile data files have a basename of the form `perf.data.<uuid>` |
| 126 | +
|
| 127 | + The value of the `PYPERF_PERF_RECORD_EXTRA_OPTS` environment variable is |
| 128 | + appended to the command line of perf-record, if provided. |
| 129 | + """ |
| 130 | + |
| 131 | + def __init__(self): |
| 132 | + self.tempdir = tempfile.TemporaryDirectory() |
| 133 | + self.ctl_fifo = self.mkfifo(self.tempdir.name, "ctl_fifo") |
| 134 | + self.ack_fifo = self.mkfifo(self.tempdir.name, "ack_fifo") |
| 135 | + perf_data_dir = os.environ.get("PYPERF_PERF_RECORD_DATA_DIR", "") |
| 136 | + perf_data_basename = f"perf.data.{uuid.uuid4()}" |
| 137 | + cmd = ["perf", "record", |
| 138 | + "--pid", str(os.getpid()), |
| 139 | + "--output", os.path.join(perf_data_dir, perf_data_basename), |
| 140 | + "--control", f"fifo:{self.ctl_fifo},{self.ack_fifo}"] |
| 141 | + extra_opts = os.environ.get("PYPERF_PERF_RECORD_EXTRA_OPTS", "") |
| 142 | + cmd += shlex.split(extra_opts) |
| 143 | + self.perf = subprocess.Popen( |
| 144 | + cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) |
| 145 | + self.ctl_fd = open(self.ctl_fifo, "w") |
| 146 | + self.ack_fd = open(self.ack_fifo, "r") |
| 147 | + |
| 148 | + def __enter__(self): |
| 149 | + self.exec_perf_cmd("enable") |
| 150 | + |
| 151 | + def __exit__(self, _exc_type, _exc_value, _traceback): |
| 152 | + self.exec_perf_cmd("disable") |
| 153 | + |
| 154 | + def teardown(self, metadata): |
| 155 | + try: |
| 156 | + self.exec_perf_cmd("stop") |
| 157 | + self.perf.wait(timeout=120) |
| 158 | + finally: |
| 159 | + self.ctl_fd.close() |
| 160 | + self.ack_fd.close() |
| 161 | + |
| 162 | + def mkfifo(self, tmpdir, basename): |
| 163 | + path = os.path.join(tmpdir, basename) |
| 164 | + os.mkfifo(path) |
| 165 | + return path |
| 166 | + |
| 167 | + def exec_perf_cmd(self, cmd): |
| 168 | + self.ctl_fd.write(f"{cmd}\n") |
| 169 | + self.ctl_fd.flush() |
| 170 | + self.ack_fd.readline() |
0 commit comments