-
-
Notifications
You must be signed in to change notification settings - Fork 393
Expand file tree
/
Copy path_threads.py
More file actions
610 lines (495 loc) · 23.6 KB
/
_threads.py
File metadata and controls
610 lines (495 loc) · 23.6 KB
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
from __future__ import annotations
import contextlib
import contextvars
import inspect
import queue as stdlib_queue
import threading
from itertools import count
from typing import TYPE_CHECKING, Generic, TypeVar
import attrs
import outcome
from attrs import define
from sniffio import current_async_library_cvar
import trio
from ._core import (
RunVar,
TrioToken,
checkpoint,
disable_ki_protection,
enable_ki_protection,
start_thread_soon,
)
from ._sync import CapacityLimiter, Event
from ._util import coroutine_or_error
if TYPE_CHECKING:
from collections.abc import Awaitable, Callable, Generator
from typing_extensions import TypeVarTuple, Unpack
from trio._core._traps import RaiseCancelT
Ts = TypeVarTuple("Ts")
RetT = TypeVar("RetT")
class _ParentTaskData(threading.local):
"""Global due to Threading API, thread local storage for data related to the
parent task of native Trio threads."""
token: TrioToken
abandon_on_cancel: bool
cancel_register: list[RaiseCancelT | None]
task_register: list[trio.lowlevel.Task | None]
PARENT_TASK_DATA = _ParentTaskData()
_limiter_local: RunVar[CapacityLimiter] = RunVar("limiter")
# I pulled this number out of the air; it isn't based on anything. Probably we
# should make some kind of measurements to pick a good value.
DEFAULT_LIMIT = 40
_thread_counter = count()
@define
class _ActiveThreadCount:
count: int
event: Event
_active_threads_local: RunVar[_ActiveThreadCount] = RunVar("active_threads")
@contextlib.contextmanager
def _track_active_thread() -> Generator[None, None, None]:
try:
active_threads_local = _active_threads_local.get()
except LookupError:
active_threads_local = _ActiveThreadCount(0, Event())
_active_threads_local.set(active_threads_local)
active_threads_local.count += 1
try:
yield
finally:
active_threads_local.count -= 1
if active_threads_local.count == 0:
active_threads_local.event.set()
active_threads_local.event = Event()
async def wait_all_threads_completed() -> None:
"""Wait until no threads are still running tasks.
This is intended to be used when testing code with trio.to_thread to
make sure no tasks are still making progress in a thread. See the
following code for a usage example::
async def wait_all_settled():
while True:
await trio.testing.wait_all_threads_complete()
await trio.testing.wait_all_tasks_blocked()
if trio.testing.active_thread_count() == 0:
break
"""
await checkpoint()
try:
active_threads_local = _active_threads_local.get()
except LookupError:
# If there would have been active threads, the
# _active_threads_local would have been set
return
while active_threads_local.count != 0:
await active_threads_local.event.wait()
def active_thread_count() -> int:
"""Returns the number of threads that are currently running a task
See `trio.testing.wait_all_threads_completed`
"""
try:
return _active_threads_local.get().count
except LookupError:
return 0
def current_default_thread_limiter() -> CapacityLimiter:
"""Get the default `~trio.CapacityLimiter` used by
`trio.to_thread.run_sync`.
The most common reason to call this would be if you want to modify its
:attr:`~trio.CapacityLimiter.total_tokens` attribute.
"""
try:
limiter = _limiter_local.get()
except LookupError:
limiter = CapacityLimiter(DEFAULT_LIMIT)
_limiter_local.set(limiter)
return limiter
# Eventually we might build this into a full-fledged deadlock-detection
# system; see https://github.com/python-trio/trio/issues/182
# But for now we just need an object to stand in for the thread, so we can
# keep track of who's holding the CapacityLimiter's token.
@attrs.frozen(eq=False, slots=False)
class ThreadPlaceholder:
name: str
# Types for the to_thread_run_sync message loop
@attrs.frozen(eq=False, slots=False)
class Run(Generic[RetT]): # type: ignore[explicit-any]
afn: Callable[..., Awaitable[RetT]] # type: ignore[explicit-any]
args: tuple[object, ...]
context: contextvars.Context = attrs.field(
init=False,
factory=contextvars.copy_context,
)
queue: stdlib_queue.SimpleQueue[outcome.Outcome[RetT]] = attrs.field(
init=False,
factory=stdlib_queue.SimpleQueue,
)
@disable_ki_protection
async def unprotected_afn(self) -> RetT:
coro = coroutine_or_error(self.afn, *self.args)
return await coro
async def run(self) -> None:
# we use extra checkpoints to pick up and reset any context changes
task = trio.lowlevel.current_task()
old_context = task.context
task.context = self.context.copy()
await trio.lowlevel.cancel_shielded_checkpoint()
result = await outcome.acapture(self.unprotected_afn)
task.context = old_context
await trio.lowlevel.cancel_shielded_checkpoint()
self.queue.put_nowait(result)
async def run_system(self) -> None:
result = await outcome.acapture(self.unprotected_afn)
self.queue.put_nowait(result)
def run_in_host_task(self, token: TrioToken) -> None:
task_register = PARENT_TASK_DATA.task_register
def in_trio_thread() -> None:
task = task_register[0]
assert task is not None, "guaranteed by abandon_on_cancel semantics"
trio.lowlevel.reschedule(task, outcome.Value(self))
token.run_sync_soon(in_trio_thread)
def run_in_system_nursery(self, token: TrioToken) -> None:
def in_trio_thread() -> None:
try:
trio.lowlevel.spawn_system_task(
self.run_system,
name=self.afn,
context=self.context,
)
except RuntimeError: # system nursery is closed
self.queue.put_nowait(
outcome.Error(trio.RunFinishedError("system nursery is closed")),
)
token.run_sync_soon(in_trio_thread)
@attrs.frozen(eq=False, slots=False)
class RunSync(Generic[RetT]): # type: ignore[explicit-any]
fn: Callable[..., RetT] # type: ignore[explicit-any]
args: tuple[object, ...]
context: contextvars.Context = attrs.field(
init=False,
factory=contextvars.copy_context,
)
queue: stdlib_queue.SimpleQueue[outcome.Outcome[RetT]] = attrs.field(
init=False,
factory=stdlib_queue.SimpleQueue,
)
@disable_ki_protection
def unprotected_fn(self) -> RetT:
ret = self.context.run(self.fn, *self.args)
if inspect.iscoroutine(ret):
# Manually close coroutine to avoid RuntimeWarnings
ret.close()
raise TypeError(
"Trio expected a synchronous function, but {!r} appears to be "
"asynchronous".format(getattr(self.fn, "__qualname__", self.fn)),
)
return ret
def run_sync(self) -> None:
result = outcome.capture(self.unprotected_fn)
self.queue.put_nowait(result)
def run_in_host_task(self, token: TrioToken) -> None:
task_register = PARENT_TASK_DATA.task_register
def in_trio_thread() -> None:
task = task_register[0]
assert task is not None, "guaranteed by abandon_on_cancel semantics"
trio.lowlevel.reschedule(task, outcome.Value(self))
token.run_sync_soon(in_trio_thread)
def run_in_system_nursery(self, token: TrioToken) -> None:
token.run_sync_soon(self.run_sync)
@enable_ki_protection
async def to_thread_run_sync(
sync_fn: Callable[[Unpack[Ts]], RetT],
*args: Unpack[Ts],
thread_name: str | None = None,
abandon_on_cancel: bool = False,
limiter: CapacityLimiter | None = None,
) -> RetT:
"""Convert a blocking operation into an async operation using a thread.
These two lines are equivalent::
sync_fn(*args)
await trio.to_thread.run_sync(sync_fn, *args)
except that if ``sync_fn`` takes a long time, then the first line will
block the Trio loop while it runs, while the second line allows other Trio
tasks to continue working while ``sync_fn`` runs. This is accomplished by
pushing the call to ``sync_fn(*args)`` off into a worker thread.
From inside the worker thread, you can get back into Trio using the
functions in `trio.from_thread`.
Args:
sync_fn: An arbitrary synchronous callable.
*args: Positional arguments to pass to sync_fn. If you need keyword
arguments, use :func:`functools.partial`.
abandon_on_cancel (bool): Whether to abandon this thread upon
cancellation of this operation. See discussion below.
thread_name (str): Optional string to set the name of the thread.
Will always set `threading.Thread.name`, but only set the os name
if pthread.h is available (i.e. most POSIX installations).
pthread names are limited to 15 characters, and can be read from
``/proc/<PID>/task/<SPID>/comm`` or with ``ps -eT``, among others.
Defaults to ``{sync_fn.__name__|None} from {trio.lowlevel.current_task().name}``.
limiter (None, or CapacityLimiter-like object):
An object used to limit the number of simultaneous threads. Most
commonly this will be a `~trio.CapacityLimiter`, but it could be
anything providing compatible
:meth:`~trio.CapacityLimiter.acquire_on_behalf_of` and
:meth:`~trio.CapacityLimiter.release_on_behalf_of` methods. This
function will call ``acquire_on_behalf_of`` before starting the
thread, and ``release_on_behalf_of`` after the thread has finished.
If None (the default), uses the default `~trio.CapacityLimiter`, as
returned by :func:`current_default_thread_limiter`.
**Cancellation handling**: Cancellation is a tricky issue here, because
neither Python nor the operating systems it runs on provide any general
mechanism for cancelling an arbitrary synchronous function running in a
thread. This function will always check for cancellation on entry, before
starting the thread. But once the thread is running, there are two ways it
can handle being cancelled:
* If ``abandon_on_cancel=False``, the function ignores the cancellation and
keeps going, just like if we had called ``sync_fn`` synchronously. This
is the default behavior.
* If ``abandon_on_cancel=True``, then this function immediately raises
`~trio.Cancelled`. In this case **the thread keeps running in
background** – we just abandon it to do whatever it's going to do, and
silently discard any return value or errors that it raises. Only use
this if you know that the operation is safe and side-effect free. (For
example: :func:`trio.socket.getaddrinfo` uses a thread with
``abandon_on_cancel=True``, because it doesn't really affect anything if a
stray hostname lookup keeps running in the background.)
The ``limiter`` is only released after the thread has *actually*
finished – which in the case of cancellation may be some time after this
function has returned. If :func:`trio.run` finishes before the thread
does, then the limiter release method will never be called at all.
.. warning::
You should not use this function to call long-running CPU-bound
functions! In addition to the usual GIL-related reasons why using
threads for CPU-bound work is not very effective in Python, there is an
additional problem: on CPython, `CPU-bound threads tend to "starve out"
IO-bound threads <https://bugs.python.org/issue7946>`__, so using
threads for CPU-bound work is likely to adversely affect the main
thread running Trio. If you need to do this, you're better off using a
worker process, or perhaps PyPy (which still has a GIL, but may do a
better job of fairly allocating CPU time between threads).
Returns:
Whatever ``sync_fn(*args)`` returns.
Raises:
Exception: Whatever ``sync_fn(*args)`` raises.
"""
await trio.lowlevel.checkpoint_if_cancelled()
# raise early if abandon_on_cancel.__bool__ raises
# and give a new name to ensure mypy knows it's never None
abandon_bool = bool(abandon_on_cancel)
if limiter is None:
limiter = current_default_thread_limiter()
# TODO: cancel_register can probably be a single element tuple for typing reasons
# Holds a reference to the task that's blocked in this function waiting
# for the result – or None if this function was cancelled and we should
# discard the result.
task_register: list[trio.lowlevel.Task | None] = [trio.lowlevel.current_task()]
# Holds a reference to the raise_cancel function provided if a cancellation
# is attempted against this task - or None if no such delivery has happened.
cancel_register: list[RaiseCancelT | None] = [None] # type: ignore[assignment]
name = f"trio.to_thread.run_sync-{next(_thread_counter)}"
placeholder = ThreadPlaceholder(name)
# This function gets scheduled into the Trio run loop to deliver the
# thread's result.
def report_back_in_trio_thread_fn(result: outcome.Outcome[RetT]) -> None:
def do_release_then_return_result() -> RetT:
# release_on_behalf_of is an arbitrary user-defined method, so it
# might raise an error. If it does, we want that error to
# replace the regular return value, and if the regular return was
# already an exception then we want them to chain.
try:
return result.unwrap()
finally:
limiter.release_on_behalf_of(placeholder)
result = outcome.capture(do_release_then_return_result)
if task_register[0] is not None:
trio.lowlevel.reschedule(task_register[0], outcome.Value(result))
current_trio_token = trio.lowlevel.current_trio_token()
if thread_name is None:
thread_name = f"{getattr(sync_fn, '__name__', None)} from {trio.lowlevel.current_task().name}"
def worker_fn() -> RetT:
PARENT_TASK_DATA.token = current_trio_token
PARENT_TASK_DATA.abandon_on_cancel = abandon_bool
PARENT_TASK_DATA.cancel_register = cancel_register
PARENT_TASK_DATA.task_register = task_register
try:
ret = context.run(sync_fn, *args)
if inspect.iscoroutine(ret):
# Manually close coroutine to avoid RuntimeWarnings
ret.close()
raise TypeError(
"Trio expected a sync function, but {!r} appears to be "
"asynchronous".format(getattr(sync_fn, "__qualname__", sync_fn)),
)
return ret
finally:
del PARENT_TASK_DATA.token
del PARENT_TASK_DATA.abandon_on_cancel
del PARENT_TASK_DATA.cancel_register
del PARENT_TASK_DATA.task_register
context = contextvars.copy_context()
# Trio doesn't use current_async_library_cvar, but if someone
# else set it, it would now shine through since
# sniffio.thread_local isn't set in the new thread. Make sure
# the new thread sees that it's not running in async context.
context.run(current_async_library_cvar.set, None)
def deliver_worker_fn_result(result: outcome.Outcome[RetT]) -> None:
# If the entire run finished, the task we're trying to contact is
# certainly long gone -- it must have been cancelled and abandoned
# us. Just ignore the error in this case.
with contextlib.suppress(trio.RunFinishedError):
current_trio_token.run_sync_soon(report_back_in_trio_thread_fn, result)
await limiter.acquire_on_behalf_of(placeholder)
with _track_active_thread():
try:
start_thread_soon(worker_fn, deliver_worker_fn_result, thread_name)
except:
limiter.release_on_behalf_of(placeholder)
raise
def abort(raise_cancel: RaiseCancelT) -> trio.lowlevel.Abort:
# fill so from_thread_check_cancelled can raise
cancel_register[0] = raise_cancel
if abandon_bool:
# empty so report_back_in_trio_thread_fn cannot reschedule
task_register[0] = None
return trio.lowlevel.Abort.SUCCEEDED
else:
return trio.lowlevel.Abort.FAILED
while True:
# wait_task_rescheduled return value cannot be typed
msg_from_thread: outcome.Outcome[RetT] | Run[object] | RunSync[object] = (
await trio.lowlevel.wait_task_rescheduled(abort)
)
if isinstance(msg_from_thread, outcome.Outcome):
return msg_from_thread.unwrap()
elif isinstance(msg_from_thread, Run):
await msg_from_thread.run()
elif isinstance(msg_from_thread, RunSync):
msg_from_thread.run_sync()
else: # pragma: no cover, internal debugging guard TODO: use assert_never
raise TypeError(
f"trio.to_thread.run_sync received unrecognized thread message {msg_from_thread!r}.",
)
del msg_from_thread
def from_thread_check_cancelled() -> None:
"""Raise `trio.Cancelled` if the associated Trio task entered a cancelled status.
Only applicable to threads spawned by `trio.to_thread.run_sync`. Poll to allow
``abandon_on_cancel=False`` threads to raise :exc:`~trio.Cancelled` at a suitable
place, or to end abandoned ``abandon_on_cancel=True`` threads sooner than they may
otherwise.
Raises:
Cancelled: If the corresponding call to `trio.to_thread.run_sync` has had a
delivery of cancellation attempted against it, regardless of the value of
``abandon_on_cancel`` supplied as an argument to it.
RuntimeError: If this thread is not spawned from `trio.to_thread.run_sync`.
.. note::
To be precise, :func:`~trio.from_thread.check_cancelled` checks whether the task
running :func:`trio.to_thread.run_sync` has ever been cancelled since the last
time it was running a :func:`trio.from_thread.run` or :func:`trio.from_thread.run_sync`
function. It may raise `trio.Cancelled` even if a cancellation occurred that was
later hidden by a modification to `trio.CancelScope.shield` between the cancelled
`~trio.CancelScope` and :func:`trio.to_thread.run_sync`. This differs from the
behavior of normal Trio checkpoints, which raise `~trio.Cancelled` only if the
cancellation is still active when the checkpoint executes. The distinction here is
*exceedingly* unlikely to be relevant to your application, but we mention it
for completeness.
"""
try:
raise_cancel = PARENT_TASK_DATA.cancel_register[0]
except AttributeError:
raise RuntimeError(
"this thread wasn't created by Trio, can't check for cancellation",
) from None
if raise_cancel is not None:
raise_cancel()
def _send_message_to_trio(
trio_token: TrioToken | None,
message_to_trio: Run[RetT] | RunSync[RetT],
) -> RetT:
"""Shared logic of from_thread functions"""
token_provided = trio_token is not None
if not token_provided:
try:
trio_token = PARENT_TASK_DATA.token
except AttributeError:
raise RuntimeError(
"this thread wasn't created by Trio, pass kwarg trio_token=...",
) from None
elif not isinstance(trio_token, TrioToken):
raise RuntimeError("Passed kwarg trio_token is not of type TrioToken")
# Avoid deadlock by making sure we're not called from Trio thread
try:
trio.lowlevel.current_task()
except RuntimeError:
pass
else:
raise RuntimeError("this is a blocking function; call it from a thread")
if token_provided or PARENT_TASK_DATA.abandon_on_cancel:
message_to_trio.run_in_system_nursery(trio_token)
else:
message_to_trio.run_in_host_task(trio_token)
return message_to_trio.queue.get().unwrap()
def from_thread_run(
afn: Callable[[Unpack[Ts]], Awaitable[RetT]],
*args: Unpack[Ts],
trio_token: TrioToken | None = None,
) -> RetT:
"""Run the given async function in the parent Trio thread, blocking until it
is complete.
Returns:
Whatever ``afn(*args)`` returns.
Returns or raises whatever the given function returns or raises. It
can also raise exceptions of its own:
Raises:
RunFinishedError: if the corresponding call to :func:`trio.run` has
already completed, or if the run has started its final cleanup phase
and can no longer spawn new system tasks.
Cancelled: If the original call to :func:`trio.to_thread.run_sync` is cancelled
(if *trio_token* is None) or the call to :func:`trio.run` completes
(if *trio_token* is not None) while ``afn(*args)`` is running,
then *afn* is likely to raise :exc:`trio.Cancelled`.
RuntimeError: if you try calling this from inside the Trio thread,
which would otherwise cause a deadlock, or if no ``trio_token`` was
provided, and we can't infer one from context.
TypeError: if ``afn`` is not an asynchronous function.
**Locating a TrioToken**: There are two ways to specify which
`trio.run` loop to reenter:
- Spawn this thread from `trio.to_thread.run_sync`. Trio will
automatically capture the relevant Trio token and use it
to re-enter the same Trio task.
- Pass a keyword argument, ``trio_token`` specifying a specific
`trio.run` loop to re-enter. This is useful in case you have a
"foreign" thread, spawned using some other framework, and still want
to enter Trio, or if you want to use a new system task to call ``afn``,
maybe to avoid the cancellation context of a corresponding
`trio.to_thread.run_sync` task. You can get this token from
:func:`trio.lowlevel.current_trio_token`.
"""
return _send_message_to_trio(trio_token, Run(afn, args))
def from_thread_run_sync(
fn: Callable[[Unpack[Ts]], RetT],
*args: Unpack[Ts],
trio_token: TrioToken | None = None,
) -> RetT:
"""Run the given sync function in the parent Trio thread, blocking until it
is complete.
Returns:
Whatever ``fn(*args)`` returns.
Returns or raises whatever the given function returns or raises. It
can also raise exceptions of its own:
Raises:
RunFinishedError: if the corresponding call to `trio.run` has
already completed.
RuntimeError: if you try calling this from inside the Trio thread,
which would otherwise cause a deadlock or if no ``trio_token`` was
provided, and we can't infer one from context.
TypeError: if ``fn`` is an async function.
**Locating a TrioToken**: There are two ways to specify which
`trio.run` loop to reenter:
- Spawn this thread from `trio.to_thread.run_sync`. Trio will
automatically capture the relevant Trio token and use it when you
want to re-enter Trio.
- Pass a keyword argument, ``trio_token`` specifying a specific
`trio.run` loop to re-enter. This is useful in case you have a
"foreign" thread, spawned using some other framework, and still want
to enter Trio, or if you want to use a new system task to call ``fn``,
maybe to avoid the cancellation context of a corresponding
`trio.to_thread.run_sync` task.
"""
return _send_message_to_trio(trio_token, RunSync(fn, args))