tractor/tractor
Tyler Goodlet 9ab9726227 Resolve remaining debug-request race causing hangs
More or less by pedantically separating and managing root and subactor
request syncing events to always be managed by the locking IPC context
task-funcs:
- for the root's "child"-side, `lock_tty_for_child()` directly creates
  and sets a new `Lock.req_handler_finished` inside a `finally:`
- for the sub's "parent"-side, `request_root_stdio_lock()` does the same
  with a new `DebugStatus.req_finished` event and separates it from
  the `.repl_release` event (which indicates a "c" or "q" from user and
  thus exit of the REPL session) as well as sets a new `.req_task:
  trio.Task` to explicitly distinguish from the app-user-task that
  enters the REPL vs. the paired bg task used to request the global
  root's stdio mutex alongside it.
- apply the `__pld_spec__` on "child"-side of the ctx using the new
  `Portal.open_context(pld_spec)` parameter support; drops use of any
  `ContextVar` malarky used prior for `PldRx` mgmt.
- removing `Lock.no_remote_has_tty` since it was a nebulous name and
  from the prior "everything is in a `Lock`" design..

------ - ------

More rigorous impl to handle various edge cases in `._pause()`:
- rejig `_enter_repl_sync()` to wrap the `debug_func == None` case
  inside maybe-internal-error handler blocks.
- better logic for recurrent vs. multi-task contention for REPL entry in
  subactors, by guarding using `DebugStatus.req_task` and by now waiting
  on the new `DebugStatus.req_finished` for the multi-task contention
  case.
- even better internal error handling and reporting for when this code
  is hacked on and possibly broken ;p

------ - ------

Updates to `.pause_from_sync()` support:
- add optional `actor`, `task` kwargs to `_set_trace()` to allow
  compat with the new explicit `debug_func` calling in `._pause()` and
  pass a `threading.Thread` for `task` in the `.to_thread()` usage case.
- add an `except` block that tries to show the frame on any internal
  error.

------ - ------

Relatedly includes a buncha cleanups/simplifications somewhat in
prep for some coming refinements (around `DebugStatus`):
- use all the new attrs mentioned above as needed in the SIGINT shielder.
- wait on `Lock.req_handler_finished` in `maybe_wait_for_debugger()`.
- dropping a ton of masked legacy code left in during the recent reworks.
- better comments, like on the use of `Context._scope` for shielding on
  the "child"-side to avoid the need to manage yet another cs.
- add/change-to lotsa `log.devx()` level emissions for those infos which
  are handy while hacking on the debugger but not ideal/necessary to be
  user visible.
- obvi add lotsa follow up todo notes!
2025-03-21 01:07:52 -04:00
..
_testing Start a new `._testing.fault_simulation` 2025-03-21 00:59:36 -04:00
devx Resolve remaining debug-request race causing hangs 2025-03-21 01:07:52 -04:00
experimental Drop now-deprecated deps on modern `trio`/Python 2025-03-16 16:06:24 -04:00
msg Allocate a `PldRx` per `Context`, new pld-spec API 2025-03-21 01:07:49 -04:00
trionics Drop now-deprecated deps on modern `trio`/Python 2025-03-16 16:06:24 -04:00
__init__.py Expose `tractor.current_ipc_ctx()` at pkg level 2025-03-21 01:07:49 -04:00
_child.py Hide `._entry`/`._child` frames, tweak some more type annots 2025-03-20 23:22:45 -04:00
_clustering.py Passthrough runtime kwargs from `open_actor_cluster()` 2022-12-11 19:56:08 -05:00
_context.py Allocate a `PldRx` per `Context`, new pld-spec API 2025-03-21 01:07:49 -04:00
_discovery.py More spaceless union type annots 2025-03-20 19:50:31 -04:00
_entry.py "Icons" in `._entry`'s subactor `.info()` messages 2025-03-21 01:00:31 -04:00
_exceptions.py Change to `RemoteActorError.pformat()` 2025-03-21 01:00:29 -04:00
_forkserver_override.py Re-license code base for distribution under AGPL 2021-12-14 23:33:27 -05:00
_ipc.py Shield channel closing in `_connect_chan()` 2025-03-21 01:07:49 -04:00
_mp_fixup_main.py Avoid importing mp for as long as possible 2022-02-17 11:55:26 -05:00
_multiaddr.py Fix doc string "its" typo.. 2025-03-20 19:50:31 -04:00
_portal.py Adjust `Portal` usage of `Context.pld_rx` 2025-03-21 01:07:49 -04:00
_root.py Hide some API frames, port to new `._debug` apis 2025-03-21 01:07:40 -04:00
_rpc.py Set `_ctxvar_Context` for child-side RPC tasks 2025-03-21 01:07:52 -04:00
_runtime.py Adjust `._runtime` to report `DebugStatus.req_ctx` 2025-03-21 01:07:07 -04:00
_spawn.py Hide some API frames, port to new `._debug` apis 2025-03-21 01:07:40 -04:00
_state.py Add error suppress flag to `current_ipc_ctx()` 2025-03-21 01:07:49 -04:00
_streaming.py Allocate a `PldRx` per `Context`, new pld-spec API 2025-03-21 01:07:49 -04:00
_supervise.py Show runtime nursery frames on internal errors 2025-03-21 01:07:52 -04:00
log.py Bleh, make `log.devx()` level less then cancel but > `.runtime()` 2025-03-20 23:22:45 -04:00
to_asyncio.py Provision for infected-`asyncio` debug mode support 2025-03-20 22:37:51 -04:00