@ajksunkang-aios/kgraph-linux-x64 0.1.2 → 0.1.3

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.
Files changed (196) hide show
  1. package/bin/kgraph-launcher +15 -3
  2. package/lib/kgraph/scripts/build-bundle.sh +17 -4
  3. package/lib/site-packages/outcome/__init__.py +20 -0
  4. package/lib/site-packages/outcome/_impl.py +239 -0
  5. package/lib/site-packages/outcome/_util.py +33 -0
  6. package/lib/site-packages/outcome/_version.py +7 -0
  7. package/lib/site-packages/outcome/py.typed +0 -0
  8. package/lib/site-packages/outcome-1.3.0.post0.dist-info/INSTALLER +1 -0
  9. package/lib/site-packages/outcome-1.3.0.post0.dist-info/LICENSE +3 -0
  10. package/lib/site-packages/outcome-1.3.0.post0.dist-info/LICENSE.APACHE2 +202 -0
  11. package/lib/site-packages/outcome-1.3.0.post0.dist-info/LICENSE.MIT +20 -0
  12. package/lib/site-packages/outcome-1.3.0.post0.dist-info/METADATA +63 -0
  13. package/lib/site-packages/outcome-1.3.0.post0.dist-info/RECORD +13 -0
  14. package/lib/site-packages/outcome-1.3.0.post0.dist-info/WHEEL +6 -0
  15. package/lib/site-packages/outcome-1.3.0.post0.dist-info/top_level.txt +1 -0
  16. package/lib/site-packages/sniffio/__init__.py +17 -0
  17. package/lib/site-packages/sniffio/_impl.py +95 -0
  18. package/lib/site-packages/sniffio/_tests/__init__.py +0 -0
  19. package/lib/site-packages/sniffio/_tests/test_sniffio.py +84 -0
  20. package/lib/site-packages/sniffio/_version.py +3 -0
  21. package/lib/site-packages/sniffio/py.typed +0 -0
  22. package/lib/site-packages/sniffio-1.3.1.dist-info/INSTALLER +1 -0
  23. package/lib/site-packages/sniffio-1.3.1.dist-info/LICENSE +3 -0
  24. package/lib/site-packages/sniffio-1.3.1.dist-info/LICENSE.APACHE2 +202 -0
  25. package/lib/site-packages/sniffio-1.3.1.dist-info/LICENSE.MIT +20 -0
  26. package/lib/site-packages/sniffio-1.3.1.dist-info/METADATA +104 -0
  27. package/lib/site-packages/sniffio-1.3.1.dist-info/RECORD +14 -0
  28. package/lib/site-packages/sniffio-1.3.1.dist-info/WHEEL +5 -0
  29. package/lib/site-packages/sniffio-1.3.1.dist-info/top_level.txt +1 -0
  30. package/lib/site-packages/sortedcontainers/__init__.py +74 -0
  31. package/lib/site-packages/sortedcontainers/sorteddict.py +812 -0
  32. package/lib/site-packages/sortedcontainers/sortedlist.py +2646 -0
  33. package/lib/site-packages/sortedcontainers/sortedset.py +733 -0
  34. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/INSTALLER +1 -0
  35. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/LICENSE +13 -0
  36. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/METADATA +264 -0
  37. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/RECORD +10 -0
  38. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/WHEEL +6 -0
  39. package/lib/site-packages/sortedcontainers-2.4.0.dist-info/top_level.txt +1 -0
  40. package/lib/site-packages/trio/__init__.py +133 -0
  41. package/lib/site-packages/trio/__main__.py +3 -0
  42. package/lib/site-packages/trio/_abc.py +714 -0
  43. package/lib/site-packages/trio/_channel.py +610 -0
  44. package/lib/site-packages/trio/_core/__init__.py +94 -0
  45. package/lib/site-packages/trio/_core/_asyncgens.py +243 -0
  46. package/lib/site-packages/trio/_core/_concat_tb.py +26 -0
  47. package/lib/site-packages/trio/_core/_entry_queue.py +223 -0
  48. package/lib/site-packages/trio/_core/_exceptions.py +169 -0
  49. package/lib/site-packages/trio/_core/_generated_instrumentation.py +50 -0
  50. package/lib/site-packages/trio/_core/_generated_io_epoll.py +98 -0
  51. package/lib/site-packages/trio/_core/_generated_io_kqueue.py +153 -0
  52. package/lib/site-packages/trio/_core/_generated_io_windows.py +204 -0
  53. package/lib/site-packages/trio/_core/_generated_run.py +269 -0
  54. package/lib/site-packages/trio/_core/_generated_windows_ffi.py +10 -0
  55. package/lib/site-packages/trio/_core/_instrumentation.py +117 -0
  56. package/lib/site-packages/trio/_core/_io_common.py +31 -0
  57. package/lib/site-packages/trio/_core/_io_epoll.py +385 -0
  58. package/lib/site-packages/trio/_core/_io_kqueue.py +292 -0
  59. package/lib/site-packages/trio/_core/_io_windows.py +1036 -0
  60. package/lib/site-packages/trio/_core/_ki.py +271 -0
  61. package/lib/site-packages/trio/_core/_local.py +104 -0
  62. package/lib/site-packages/trio/_core/_mock_clock.py +165 -0
  63. package/lib/site-packages/trio/_core/_parking_lot.py +317 -0
  64. package/lib/site-packages/trio/_core/_run.py +3148 -0
  65. package/lib/site-packages/trio/_core/_run_context.py +15 -0
  66. package/lib/site-packages/trio/_core/_tests/__init__.py +0 -0
  67. package/lib/site-packages/trio/_core/_tests/test_asyncgen.py +339 -0
  68. package/lib/site-packages/trio/_core/_tests/test_cancelled.py +222 -0
  69. package/lib/site-packages/trio/_core/_tests/test_exceptiongroup_gc.py +103 -0
  70. package/lib/site-packages/trio/_core/_tests/test_guest_mode.py +755 -0
  71. package/lib/site-packages/trio/_core/_tests/test_instrumentation.py +315 -0
  72. package/lib/site-packages/trio/_core/_tests/test_io.py +522 -0
  73. package/lib/site-packages/trio/_core/_tests/test_ki.py +703 -0
  74. package/lib/site-packages/trio/_core/_tests/test_local.py +118 -0
  75. package/lib/site-packages/trio/_core/_tests/test_mock_clock.py +193 -0
  76. package/lib/site-packages/trio/_core/_tests/test_parking_lot.py +389 -0
  77. package/lib/site-packages/trio/_core/_tests/test_run.py +3024 -0
  78. package/lib/site-packages/trio/_core/_tests/test_thread_cache.py +227 -0
  79. package/lib/site-packages/trio/_core/_tests/test_tutil.py +13 -0
  80. package/lib/site-packages/trio/_core/_tests/test_unbounded_queue.py +154 -0
  81. package/lib/site-packages/trio/_core/_tests/test_windows.py +305 -0
  82. package/lib/site-packages/trio/_core/_tests/tutil.py +117 -0
  83. package/lib/site-packages/trio/_core/_tests/type_tests/nursery_start.py +79 -0
  84. package/lib/site-packages/trio/_core/_tests/type_tests/run.py +51 -0
  85. package/lib/site-packages/trio/_core/_thread_cache.py +317 -0
  86. package/lib/site-packages/trio/_core/_traps.py +318 -0
  87. package/lib/site-packages/trio/_core/_unbounded_queue.py +163 -0
  88. package/lib/site-packages/trio/_core/_wakeup_socketpair.py +75 -0
  89. package/lib/site-packages/trio/_core/_windows_cffi.py +313 -0
  90. package/lib/site-packages/trio/_deprecate.py +171 -0
  91. package/lib/site-packages/trio/_dtls.py +1380 -0
  92. package/lib/site-packages/trio/_file_io.py +513 -0
  93. package/lib/site-packages/trio/_highlevel_generic.py +125 -0
  94. package/lib/site-packages/trio/_highlevel_open_tcp_listeners.py +251 -0
  95. package/lib/site-packages/trio/_highlevel_open_tcp_stream.py +397 -0
  96. package/lib/site-packages/trio/_highlevel_open_unix_stream.py +65 -0
  97. package/lib/site-packages/trio/_highlevel_serve_listeners.py +148 -0
  98. package/lib/site-packages/trio/_highlevel_socket.py +423 -0
  99. package/lib/site-packages/trio/_highlevel_ssl_helpers.py +180 -0
  100. package/lib/site-packages/trio/_path.py +289 -0
  101. package/lib/site-packages/trio/_repl.py +159 -0
  102. package/lib/site-packages/trio/_signals.py +185 -0
  103. package/lib/site-packages/trio/_socket.py +1326 -0
  104. package/lib/site-packages/trio/_ssl.py +964 -0
  105. package/lib/site-packages/trio/_subprocess.py +1178 -0
  106. package/lib/site-packages/trio/_subprocess_platform/__init__.py +123 -0
  107. package/lib/site-packages/trio/_subprocess_platform/kqueue.py +48 -0
  108. package/lib/site-packages/trio/_subprocess_platform/waitid.py +113 -0
  109. package/lib/site-packages/trio/_subprocess_platform/windows.py +11 -0
  110. package/lib/site-packages/trio/_sync.py +908 -0
  111. package/lib/site-packages/trio/_tests/__init__.py +0 -0
  112. package/lib/site-packages/trio/_tests/astrill-codesigning-cert.cer +0 -0
  113. package/lib/site-packages/trio/_tests/check_type_completeness.py +247 -0
  114. package/lib/site-packages/trio/_tests/module_with_deprecations.py +22 -0
  115. package/lib/site-packages/trio/_tests/pytest_plugin.py +54 -0
  116. package/lib/site-packages/trio/_tests/test_abc.py +72 -0
  117. package/lib/site-packages/trio/_tests/test_channel.py +750 -0
  118. package/lib/site-packages/trio/_tests/test_contextvars.py +56 -0
  119. package/lib/site-packages/trio/_tests/test_deprecate.py +277 -0
  120. package/lib/site-packages/trio/_tests/test_deprecate_strict_exception_groups_false.py +64 -0
  121. package/lib/site-packages/trio/_tests/test_dtls.py +950 -0
  122. package/lib/site-packages/trio/_tests/test_exports.py +626 -0
  123. package/lib/site-packages/trio/_tests/test_fakenet.py +317 -0
  124. package/lib/site-packages/trio/_tests/test_file_io.py +269 -0
  125. package/lib/site-packages/trio/_tests/test_highlevel_generic.py +98 -0
  126. package/lib/site-packages/trio/_tests/test_highlevel_open_tcp_listeners.py +419 -0
  127. package/lib/site-packages/trio/_tests/test_highlevel_open_tcp_stream.py +693 -0
  128. package/lib/site-packages/trio/_tests/test_highlevel_open_unix_stream.py +86 -0
  129. package/lib/site-packages/trio/_tests/test_highlevel_serve_listeners.py +186 -0
  130. package/lib/site-packages/trio/_tests/test_highlevel_socket.py +336 -0
  131. package/lib/site-packages/trio/_tests/test_highlevel_ssl_helpers.py +169 -0
  132. package/lib/site-packages/trio/_tests/test_path.py +279 -0
  133. package/lib/site-packages/trio/_tests/test_repl.py +428 -0
  134. package/lib/site-packages/trio/_tests/test_scheduler_determinism.py +47 -0
  135. package/lib/site-packages/trio/_tests/test_signals.py +186 -0
  136. package/lib/site-packages/trio/_tests/test_socket.py +1253 -0
  137. package/lib/site-packages/trio/_tests/test_ssl.py +1371 -0
  138. package/lib/site-packages/trio/_tests/test_subprocess.py +767 -0
  139. package/lib/site-packages/trio/_tests/test_sync.py +735 -0
  140. package/lib/site-packages/trio/_tests/test_testing.py +682 -0
  141. package/lib/site-packages/trio/_tests/test_testing_raisesgroup.py +1128 -0
  142. package/lib/site-packages/trio/_tests/test_threads.py +1173 -0
  143. package/lib/site-packages/trio/_tests/test_timeouts.py +281 -0
  144. package/lib/site-packages/trio/_tests/test_tracing.py +88 -0
  145. package/lib/site-packages/trio/_tests/test_trio.py +8 -0
  146. package/lib/site-packages/trio/_tests/test_unix_pipes.py +288 -0
  147. package/lib/site-packages/trio/_tests/test_util.py +349 -0
  148. package/lib/site-packages/trio/_tests/test_wait_for_object.py +225 -0
  149. package/lib/site-packages/trio/_tests/test_windows_pipes.py +112 -0
  150. package/lib/site-packages/trio/_tests/tools/__init__.py +0 -0
  151. package/lib/site-packages/trio/_tests/tools/test_gen_exports.py +179 -0
  152. package/lib/site-packages/trio/_tests/tools/test_mypy_annotate.py +140 -0
  153. package/lib/site-packages/trio/_tests/tools/test_sync_requirements.py +80 -0
  154. package/lib/site-packages/trio/_tests/type_tests/check_wraps.py +9 -0
  155. package/lib/site-packages/trio/_tests/type_tests/open_memory_channel.py +4 -0
  156. package/lib/site-packages/trio/_tests/type_tests/path.py +140 -0
  157. package/lib/site-packages/trio/_tests/type_tests/subprocesses.py +23 -0
  158. package/lib/site-packages/trio/_tests/type_tests/task_status.py +29 -0
  159. package/lib/site-packages/trio/_threads.py +610 -0
  160. package/lib/site-packages/trio/_timeouts.py +197 -0
  161. package/lib/site-packages/trio/_tools/__init__.py +0 -0
  162. package/lib/site-packages/trio/_tools/gen_exports.py +401 -0
  163. package/lib/site-packages/trio/_tools/mypy_annotate.py +126 -0
  164. package/lib/site-packages/trio/_tools/sync_requirements.py +98 -0
  165. package/lib/site-packages/trio/_tools/windows_ffi_build.py +220 -0
  166. package/lib/site-packages/trio/_unix_pipes.py +197 -0
  167. package/lib/site-packages/trio/_util.py +385 -0
  168. package/lib/site-packages/trio/_version.py +3 -0
  169. package/lib/site-packages/trio/_wait_for_object.py +67 -0
  170. package/lib/site-packages/trio/_windows_pipes.py +144 -0
  171. package/lib/site-packages/trio/abc.py +23 -0
  172. package/lib/site-packages/trio/from_thread.py +13 -0
  173. package/lib/site-packages/trio/lowlevel.py +95 -0
  174. package/lib/site-packages/trio/py.typed +0 -0
  175. package/lib/site-packages/trio/socket.py +602 -0
  176. package/lib/site-packages/trio/testing/__init__.py +58 -0
  177. package/lib/site-packages/trio/testing/_check_streams.py +570 -0
  178. package/lib/site-packages/trio/testing/_checkpoints.py +69 -0
  179. package/lib/site-packages/trio/testing/_fake_net.py +584 -0
  180. package/lib/site-packages/trio/testing/_memory_streams.py +633 -0
  181. package/lib/site-packages/trio/testing/_network.py +36 -0
  182. package/lib/site-packages/trio/testing/_raises_group.py +1015 -0
  183. package/lib/site-packages/trio/testing/_sequencer.py +87 -0
  184. package/lib/site-packages/trio/testing/_trio_test.py +50 -0
  185. package/lib/site-packages/trio/to_thread.py +4 -0
  186. package/lib/site-packages/trio-0.33.0.dist-info/INSTALLER +1 -0
  187. package/lib/site-packages/trio-0.33.0.dist-info/METADATA +186 -0
  188. package/lib/site-packages/trio-0.33.0.dist-info/RECORD +156 -0
  189. package/lib/site-packages/trio-0.33.0.dist-info/REQUESTED +0 -0
  190. package/lib/site-packages/trio-0.33.0.dist-info/WHEEL +5 -0
  191. package/lib/site-packages/trio-0.33.0.dist-info/entry_points.txt +2 -0
  192. package/lib/site-packages/trio-0.33.0.dist-info/licenses/LICENSE +3 -0
  193. package/lib/site-packages/trio-0.33.0.dist-info/licenses/LICENSE.APACHE2 +202 -0
  194. package/lib/site-packages/trio-0.33.0.dist-info/licenses/LICENSE.MIT +22 -0
  195. package/lib/site-packages/trio-0.33.0.dist-info/top_level.txt +1 -0
  196. package/package.json +1 -1
@@ -0,0 +1,185 @@
1
+ from __future__ import annotations
2
+
3
+ import signal
4
+ from collections import OrderedDict
5
+ from contextlib import contextmanager
6
+ from typing import TYPE_CHECKING
7
+
8
+ import trio
9
+
10
+ from ._util import ConflictDetector, is_main_thread
11
+
12
+ if TYPE_CHECKING:
13
+ from collections.abc import AsyncIterator, Callable, Generator, Iterable
14
+ from types import FrameType
15
+
16
+ from typing_extensions import Self
17
+
18
+ # Discussion of signal handling strategies:
19
+ #
20
+ # - On Windows signals barely exist. There are no options; signal handlers are
21
+ # the only available API.
22
+ #
23
+ # - On Linux signalfd is arguably the natural way. Semantics: signalfd acts as
24
+ # an *alternative* signal delivery mechanism. The way you use it is to mask
25
+ # out the relevant signals process-wide (so that they don't get delivered
26
+ # the normal way), and then when you read from signalfd that actually counts
27
+ # as delivering it (despite the mask). The problem with this is that we
28
+ # don't have any reliable way to mask out signals process-wide -- the only
29
+ # way to do that in Python is to call pthread_sigmask from the main thread
30
+ # *before starting any other threads*, and as a library we can't really
31
+ # impose that, and the failure mode is annoying (signals get delivered via
32
+ # signal handlers whether we want them to or not).
33
+ #
34
+ # - on macOS/*BSD, kqueue is the natural way. Semantics: kqueue acts as an
35
+ # *extra* signal delivery mechanism. Signals are delivered the normal
36
+ # way, *and* are delivered to kqueue. So you want to set them to SIG_IGN so
37
+ # that they don't end up pending forever (I guess?). I can't find any actual
38
+ # docs on how masking and EVFILT_SIGNAL interact. I did see someone note
39
+ # that if a signal is pending when the kqueue filter is added then you
40
+ # *don't* get notified of that, which makes sense. But still, we have to
41
+ # manipulate signal state (e.g. setting SIG_IGN) which as far as Python is
42
+ # concerned means we have to do this from the main thread.
43
+ #
44
+ # So in summary, there don't seem to be any compelling advantages to using the
45
+ # platform-native signal notification systems; they're kinda nice, but it's
46
+ # simpler to implement the naive signal-handler-based system once and be
47
+ # done. (The big advantage would be if there were a reliable way to monitor
48
+ # for SIGCHLD from outside the main thread and without interfering with other
49
+ # libraries that also want to monitor for SIGCHLD. But there isn't. I guess
50
+ # kqueue might give us that, but in kqueue we don't need it, because kqueue
51
+ # can directly monitor for child process state changes.)
52
+
53
+
54
+ @contextmanager
55
+ def _signal_handler(
56
+ signals: Iterable[int],
57
+ handler: Callable[[int, FrameType | None], object] | int | signal.Handlers | None,
58
+ ) -> Generator[None, None, None]:
59
+ original_handlers = {}
60
+ try:
61
+ for signum in set(signals):
62
+ original_handlers[signum] = signal.signal(signum, handler)
63
+ yield
64
+ finally:
65
+ for signum, original_handler in original_handlers.items():
66
+ signal.signal(signum, original_handler)
67
+
68
+
69
+ class SignalReceiver:
70
+ def __init__(self) -> None:
71
+ # {signal num: None}
72
+ self._pending: OrderedDict[int, None] = OrderedDict()
73
+ self._lot = trio.lowlevel.ParkingLot()
74
+ self._conflict_detector = ConflictDetector(
75
+ "only one task can iterate on a signal receiver at a time",
76
+ )
77
+ self._closed = False
78
+
79
+ def _add(self, signum: int) -> None:
80
+ if self._closed:
81
+ signal.raise_signal(signum)
82
+ else:
83
+ self._pending[signum] = None
84
+ self._lot.unpark()
85
+
86
+ def _redeliver_remaining(self) -> None:
87
+ # First make sure that any signals still in the delivery pipeline will
88
+ # get redelivered
89
+ self._closed = True
90
+
91
+ # And then redeliver any that are sitting in pending. This is done
92
+ # using a weird recursive construct to make sure we process everything
93
+ # even if some of the handlers raise exceptions.
94
+ def deliver_next() -> None:
95
+ if self._pending:
96
+ signum, _ = self._pending.popitem(last=False)
97
+ try:
98
+ signal.raise_signal(signum)
99
+ finally:
100
+ deliver_next()
101
+
102
+ deliver_next()
103
+
104
+ def __aiter__(self) -> Self:
105
+ return self
106
+
107
+ async def __anext__(self) -> int:
108
+ if self._closed:
109
+ raise RuntimeError("open_signal_receiver block already exited")
110
+ # In principle it would be possible to support multiple concurrent
111
+ # calls to __anext__, but doing it without race conditions is quite
112
+ # tricky, and there doesn't seem to be any point in trying.
113
+ with self._conflict_detector:
114
+ if not self._pending:
115
+ await self._lot.park()
116
+ else:
117
+ await trio.lowlevel.checkpoint()
118
+ signum, _ = self._pending.popitem(last=False)
119
+ return signum
120
+
121
+
122
+ def get_pending_signal_count(rec: AsyncIterator[int]) -> int:
123
+ """Helper for tests, not public or otherwise used."""
124
+ # open_signal_receiver() always produces SignalReceiver, this should not fail.
125
+ assert isinstance(rec, SignalReceiver)
126
+ return len(rec._pending)
127
+
128
+
129
+ @contextmanager
130
+ def open_signal_receiver(
131
+ *signals: signal.Signals | int,
132
+ ) -> Generator[AsyncIterator[int], None, None]:
133
+ """A context manager for catching signals.
134
+
135
+ Entering this context manager starts listening for the given signals and
136
+ returns an async iterator; exiting the context manager stops listening.
137
+
138
+ The async iterator blocks until a signal arrives, and then yields it.
139
+
140
+ Note that if you leave the ``with`` block while the iterator has
141
+ unextracted signals still pending inside it, then they will be
142
+ re-delivered using Python's regular signal handling logic. This avoids a
143
+ race condition when signals arrives just before we exit the ``with``
144
+ block.
145
+
146
+ Args:
147
+ signals: the signals to listen for.
148
+
149
+ Raises:
150
+ TypeError: if no signals were provided.
151
+
152
+ RuntimeError: if you try to use this anywhere except Python's main
153
+ thread. (This is a Python limitation.)
154
+
155
+ Example:
156
+
157
+ A common convention for Unix daemons is that they should reload their
158
+ configuration when they receive a ``SIGHUP``. Here's a sketch of what
159
+ that might look like using :func:`open_signal_receiver`::
160
+
161
+ with trio.open_signal_receiver(signal.SIGHUP) as signal_aiter:
162
+ async for signum in signal_aiter:
163
+ assert signum == signal.SIGHUP
164
+ reload_configuration()
165
+
166
+ """
167
+ if not signals:
168
+ raise TypeError("No signals were provided")
169
+
170
+ if not is_main_thread():
171
+ raise RuntimeError(
172
+ "Sorry, open_signal_receiver is only possible when running in "
173
+ "Python interpreter's main thread",
174
+ )
175
+ token = trio.lowlevel.current_trio_token()
176
+ queue = SignalReceiver()
177
+
178
+ def handler(signum: int, frame: FrameType | None) -> None:
179
+ token.run_sync_soon(queue._add, signum, idempotent=True)
180
+
181
+ try:
182
+ with _signal_handler(signals, handler):
183
+ yield queue
184
+ finally:
185
+ queue._redeliver_remaining()