omlish 0.0.0.dev261__py3-none-any.whl → 0.0.0.dev262__py3-none-any.whl
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.
- omlish/__about__.py +2 -2
- omlish/c3.py +25 -5
- omlish/dynamic.py +0 -1
- omlish/os/deathpacts/pipe.py +4 -0
- omlish/os/forkhooks.py +2 -2
- omlish/os/pidfiles/manager.py +2 -3
- omlish/os/pidfiles/pidfile.py +9 -7
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/METADATA +1 -1
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/RECORD +13 -14
- omlish/_antlr/__init__.py +0 -0
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/WHEEL +0 -0
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/entry_points.txt +0 -0
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/licenses/LICENSE +0 -0
- {omlish-0.0.0.dev261.dist-info → omlish-0.0.0.dev262.dist-info}/top_level.txt +0 -0
omlish/__about__.py
CHANGED
omlish/c3.py
CHANGED
@@ -33,6 +33,7 @@
|
|
33
33
|
#
|
34
34
|
# 8. By copying, installing or otherwise using Python, Licensee agrees to be bound by the terms and conditions of this
|
35
35
|
# License Agreement.
|
36
|
+
import functools
|
36
37
|
import operator
|
37
38
|
import typing as ta
|
38
39
|
|
@@ -70,12 +71,17 @@ def merge(seqs: ta.MutableSequence[list[T]]) -> list[T]:
|
|
70
71
|
del seq[0]
|
71
72
|
|
72
73
|
|
74
|
+
def _default_is_abstract(obj: ta.Any) -> bool:
|
75
|
+
return hasattr(obj, '__abstractmethods__')
|
76
|
+
|
77
|
+
|
73
78
|
def mro(
|
74
79
|
cls: T,
|
75
80
|
abcs: ta.Sequence[T] | None = None,
|
76
81
|
*,
|
77
82
|
get_bases: ta.Callable[[T], ta.Sequence[T]] = operator.attrgetter('__bases__'),
|
78
83
|
is_subclass: ta.Callable[[T, T], bool] = issubclass, # type: ignore
|
84
|
+
is_abstract: ta.Callable[[T], bool] = _default_is_abstract,
|
79
85
|
) -> list[T]:
|
80
86
|
"""
|
81
87
|
Computes the method resolution order using extended C3 linearization.
|
@@ -91,7 +97,7 @@ def mro(
|
|
91
97
|
"""
|
92
98
|
|
93
99
|
for i, base in enumerate(reversed(get_bases(cls))):
|
94
|
-
if
|
100
|
+
if is_abstract(base):
|
95
101
|
boundary = len(get_bases(cls)) - i
|
96
102
|
break # Bases up to the last explicit ABC are considered first.
|
97
103
|
else:
|
@@ -109,9 +115,16 @@ def mro(
|
|
109
115
|
abstract_bases.append(base)
|
110
116
|
for base in abstract_bases:
|
111
117
|
abcs.remove(base)
|
112
|
-
|
113
|
-
|
114
|
-
|
118
|
+
rec = functools.partial(
|
119
|
+
mro,
|
120
|
+
abcs=abcs,
|
121
|
+
get_bases=get_bases,
|
122
|
+
is_subclass=is_subclass,
|
123
|
+
is_abstract=is_abstract,
|
124
|
+
)
|
125
|
+
explicit_c3_mros = [rec(base) for base in explicit_bases]
|
126
|
+
abstract_c3_mros = [rec(base) for base in abstract_bases]
|
127
|
+
other_c3_mros = [rec(base) for base in other_bases]
|
115
128
|
return merge(
|
116
129
|
[[cls]] + # noqa
|
117
130
|
explicit_c3_mros + abstract_c3_mros + other_c3_mros +
|
@@ -127,6 +140,7 @@ def compose_mro(
|
|
127
140
|
get_bases: ta.Callable[[T], ta.Sequence[T]] = operator.attrgetter('__bases__'),
|
128
141
|
is_subclass: ta.Callable[[T, T], bool] = issubclass, # type: ignore
|
129
142
|
get_subclasses: ta.Callable[[T], ta.Iterable[T]] = operator.methodcaller('__subclasses__'),
|
143
|
+
is_abstract: ta.Callable[[T], bool] = _default_is_abstract,
|
130
144
|
) -> list[T]:
|
131
145
|
"""
|
132
146
|
Calculates the method resolution order for a given class *cls*.
|
@@ -171,4 +185,10 @@ def compose_mro(
|
|
171
185
|
if subcls not in _mro:
|
172
186
|
_mro.append(subcls)
|
173
187
|
|
174
|
-
return mro(
|
188
|
+
return mro(
|
189
|
+
cls,
|
190
|
+
abcs=_mro,
|
191
|
+
get_bases=get_bases,
|
192
|
+
is_subclass=is_subclass,
|
193
|
+
is_abstract=is_abstract,
|
194
|
+
)
|
omlish/dynamic.py
CHANGED
omlish/os/deathpacts/pipe.py
CHANGED
omlish/os/forkhooks.py
CHANGED
@@ -220,8 +220,8 @@ class ProcessOriginTracker:
|
|
220
220
|
def __init__(self, **kwargs: ta.Any) -> None:
|
221
221
|
super().__init__(**kwargs)
|
222
222
|
|
223
|
-
self._process_cookie: bytes
|
224
|
-
self._fork_depth: int
|
223
|
+
self._process_cookie: ta.Optional[bytes] = self._PROCESS_COOKIE
|
224
|
+
self._fork_depth: ta.Optional[int] = get_fork_depth()
|
225
225
|
|
226
226
|
def is_in_origin_process(self) -> bool:
|
227
227
|
return (self._PROCESS_COOKIE, get_fork_depth()) == (self._process_cookie, self._fork_depth)
|
omlish/os/pidfiles/manager.py
CHANGED
@@ -4,7 +4,6 @@ import contextlib
|
|
4
4
|
import os
|
5
5
|
import threading
|
6
6
|
import typing as ta
|
7
|
-
import weakref
|
8
7
|
|
9
8
|
from ...lite.check import check
|
10
9
|
from ..forkhooks import ForkHook
|
@@ -23,7 +22,7 @@ class _PidfileManager(ForkHook):
|
|
23
22
|
"""
|
24
23
|
|
25
24
|
_lock: ta.ClassVar[threading.Lock] = threading.Lock()
|
26
|
-
_pidfile_threads: ta.ClassVar[ta.MutableMapping[Pidfile, threading.Thread]] =
|
25
|
+
_pidfile_threads: ta.ClassVar[ta.MutableMapping[Pidfile, threading.Thread]] = {}
|
27
26
|
_num_kills: ta.ClassVar[int] = 0
|
28
27
|
|
29
28
|
@classmethod
|
@@ -66,8 +65,8 @@ class _PidfileManager(ForkHook):
|
|
66
65
|
|
67
66
|
with cls._lock:
|
68
67
|
cls._pidfile_threads[pf] = threading.current_thread()
|
69
|
-
try:
|
70
68
|
|
69
|
+
try:
|
71
70
|
with pf:
|
72
71
|
os.set_inheritable(check.not_none(pf.fileno()), True)
|
73
72
|
yield pf
|
omlish/os/pidfiles/pidfile.py
CHANGED
@@ -5,6 +5,7 @@ TODO:
|
|
5
5
|
- 'json pids', with code version? '.json.pid'? '.jpid'?
|
6
6
|
- json*L* pidfiles - first line is bare int, following may be json - now `head -n1 foo.pid` not cat
|
7
7
|
"""
|
8
|
+
import errno
|
8
9
|
import fcntl
|
9
10
|
import os
|
10
11
|
import signal
|
@@ -68,6 +69,7 @@ class Pidfile:
|
|
68
69
|
if hasattr(self, '_fd_to_dup'):
|
69
70
|
fd = os.dup(self._fd_to_dup)
|
70
71
|
del self._fd_to_dup
|
72
|
+
|
71
73
|
else:
|
72
74
|
ofl = os.O_RDWR
|
73
75
|
if not self._no_create:
|
@@ -80,11 +82,8 @@ class Pidfile:
|
|
80
82
|
|
81
83
|
f = os.fdopen(fd, 'r+')
|
82
84
|
|
83
|
-
except
|
84
|
-
|
85
|
-
os.close(fd)
|
86
|
-
except Exception: # noqa
|
87
|
-
pass
|
85
|
+
except BaseException:
|
86
|
+
os.close(fd)
|
88
87
|
raise
|
89
88
|
|
90
89
|
self._f = f
|
@@ -129,8 +128,11 @@ class Pidfile:
|
|
129
128
|
fcntl.flock(self._f, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
130
129
|
return True
|
131
130
|
|
132
|
-
except
|
133
|
-
|
131
|
+
except BlockingIOError as e:
|
132
|
+
if e.errno == errno.EAGAIN:
|
133
|
+
return False
|
134
|
+
else:
|
135
|
+
raise
|
134
136
|
|
135
137
|
#
|
136
138
|
|
@@ -1,18 +1,17 @@
|
|
1
1
|
omlish/.manifests.json,sha256=x26AIwDzScUvnX-p4xlq6Zc5QYrAo0Vmgf1qHc1KL_M,8253
|
2
|
-
omlish/__about__.py,sha256=
|
2
|
+
omlish/__about__.py,sha256=BXH7qKqT5OctoZyedUgGC-oA114ZNwHwtmurxgA2dUE,3380
|
3
3
|
omlish/__init__.py,sha256=SsyiITTuK0v74XpKV8dqNaCmjOlan1JZKrHQv5rWKPA,253
|
4
|
-
omlish/c3.py,sha256=
|
4
|
+
omlish/c3.py,sha256=A9uZG39e7093HTWToNKZ91cFVTCbAVySgl3nShTGqVY,8409
|
5
5
|
omlish/cached.py,sha256=MLap_p0rdGoDIMVhXVHm1tsbcWobJF0OanoodV03Ju8,542
|
6
6
|
omlish/check.py,sha256=THqm6jD1a0skAO5EC8SOVg58yq96Vk5wcuruBkCYxyU,2016
|
7
7
|
omlish/datetimes.py,sha256=HajeM1kBvwlTa-uR1TTZHmZ3zTPnnUr1uGGQhiO1XQ0,2152
|
8
8
|
omlish/defs.py,sha256=9uUjJuVIbCBL3g14fyzAp-9gH935MFofvlfOGwcBIaM,4913
|
9
|
-
omlish/dynamic.py,sha256=
|
9
|
+
omlish/dynamic.py,sha256=Zymfvti3LSM6BR8YjuSYRYfKiojEgrGUpqaEAOJ8lEw,6521
|
10
10
|
omlish/libc.py,sha256=8K4c66YV1ziJerl5poAAYCmsV-VSsHkT3EHhPW04ufg,15639
|
11
11
|
omlish/metadata.py,sha256=HvZ6ItMpEmnE-X2d5Q6J17sBiG_qOyWB8DJrS9RFZpY,3604
|
12
12
|
omlish/runmodule.py,sha256=PWvuAaJ9wQQn6bx9ftEL3_d04DyotNn8dR_twm2pgw0,700
|
13
13
|
omlish/shlex.py,sha256=bsW2XUD8GiMTUTDefJejZ5AyqT1pTgWMPD0BMoF02jE,248
|
14
14
|
omlish/sync.py,sha256=-2gVJZFl8hvp7jvrnX8GcZVOecqAym6AcyK1QtMR9Ic,2979
|
15
|
-
omlish/_antlr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
15
|
omlish/algorithm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
16
|
omlish/algorithm/all.py,sha256=FudUHwoaRLNNmqYM3jhP2Yd2BpmYhNBRPaVZzARMoSc,194
|
18
17
|
omlish/algorithm/distribute.py,sha256=kO60F7HtMF3j-IxuhJdtsfgIR1Vpf1okQfacb4eNukQ,1533
|
@@ -542,7 +541,7 @@ omlish/os/deathsig.py,sha256=hk9Yq2kyDdI-cI7OQH7mOfpRbOKzY_TfPKEqgrjVYbA,641
|
|
542
541
|
omlish/os/fcntl.py,sha256=riQf9iEEEIC28lJp8ud06MU56w2XJHJ9nBFtck_hdhc,1501
|
543
542
|
omlish/os/filemodes.py,sha256=ZIk6XpPw2oyoytSsuVmBXQ6fvMDHzctNEDIA2uHTBC4,4575
|
544
543
|
omlish/os/files.py,sha256=WJ_42vsZIZukQURN3TTccp-n74ZNhbux_ps3TLbHj18,1106
|
545
|
-
omlish/os/forkhooks.py,sha256=
|
544
|
+
omlish/os/forkhooks.py,sha256=STzhEuV7oOegfqlq1DJIhESO1icMzgat0V9m02Ubky8,5668
|
546
545
|
omlish/os/journald.py,sha256=2nI8Res1poXkbLc31--MPUlzYMESnCcPUkIxDOCjZW0,3903
|
547
546
|
omlish/os/linux.py,sha256=whJ6scwMKSFBdXiVhJW0BCpJV4jOGMr-a_a3Bhwz6Ls,18938
|
548
547
|
omlish/os/mangle.py,sha256=M0v-SDt4TMnL68I45GekQrUaXkTIILXIlPdqRxKBTKM,524
|
@@ -553,12 +552,12 @@ omlish/os/temp.py,sha256=P97KiVeNB7rfGn4tlgU5ro86JUxAsiphLMlxsjQgfB0,1198
|
|
553
552
|
omlish/os/deathpacts/__init__.py,sha256=IFJkHVWff-VhBbQX38th1RlmjUF2ptKh5TPIzP9Ei2M,229
|
554
553
|
omlish/os/deathpacts/base.py,sha256=EGN3BWSXPv0s9kl_QLrWE31hTybDHCmsLc_w3U2VyHc,1740
|
555
554
|
omlish/os/deathpacts/heartbeatfile.py,sha256=OybdvhM2kxBTuoJWOJJ5LcX-0lg3jTOvvD2HUunxDWU,1731
|
556
|
-
omlish/os/deathpacts/pipe.py,sha256=
|
555
|
+
omlish/os/deathpacts/pipe.py,sha256=mfN2UGsOaEmoh4jHi6D0vnjg420pNsyctb3ZTcNsdqI,3285
|
557
556
|
omlish/os/pidfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
558
557
|
omlish/os/pidfiles/__main__.py,sha256=AF8TwjK4xgHVnoLAP9dIWgKvT0vGhHJlfDW0tKZ7tx4,200
|
559
558
|
omlish/os/pidfiles/cli.py,sha256=2SSsP4O3VdpsDIMAkWgWSjh_YNIPzCD9l5LNN2qrIjo,2074
|
560
|
-
omlish/os/pidfiles/manager.py,sha256=
|
561
|
-
omlish/os/pidfiles/pidfile.py,sha256=
|
559
|
+
omlish/os/pidfiles/manager.py,sha256=QphQxIENVVwvBWynLCNU31NwOfLkV43VoTVeYFn2Hac,2351
|
560
|
+
omlish/os/pidfiles/pidfile.py,sha256=9tI5IMVwfPfnni0XMn4x5ptNQgm36n8tLeUNPf50UqU,4394
|
562
561
|
omlish/os/pidfiles/pinning.py,sha256=v9RlJ4BnJZcaZZXiiRqbmzLluaSOkeeEb_WrbKEClBQ,6643
|
563
562
|
omlish/reflect/__init__.py,sha256=Er2yBHibVO16hFNA1szQF2_f43Y3HRCBWtS-fjsOIYc,798
|
564
563
|
omlish/reflect/inspect.py,sha256=WCo2YpBYauKw6k758FLlZ_H4Q05rgVPs96fEv9w6zHQ,1538
|
@@ -768,9 +767,9 @@ omlish/text/parts.py,sha256=Q9NvoyEGQKIWgiPD4D_Qc66cWAuyEKE033dT9m7c3Wk,6662
|
|
768
767
|
omlish/text/random.py,sha256=jNWpqiaKjKyTdMXC-pWAsSC10AAP-cmRRPVhm59ZWLk,194
|
769
768
|
omlish/text/go/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
770
769
|
omlish/text/go/quoting.py,sha256=N9EYdnFdEX_A8fOviH-1w4jwV3XOQ7VU2WsoUNubYVY,9137
|
771
|
-
omlish-0.0.0.
|
772
|
-
omlish-0.0.0.
|
773
|
-
omlish-0.0.0.
|
774
|
-
omlish-0.0.0.
|
775
|
-
omlish-0.0.0.
|
776
|
-
omlish-0.0.0.
|
770
|
+
omlish-0.0.0.dev262.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
|
771
|
+
omlish-0.0.0.dev262.dist-info/METADATA,sha256=LFyiHfPhM7912bihwnUNvFuGoCgIqW8_Pg9F4Ih5zUs,4198
|
772
|
+
omlish-0.0.0.dev262.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
773
|
+
omlish-0.0.0.dev262.dist-info/entry_points.txt,sha256=Lt84WvRZJskWCAS7xnQGZIeVWksprtUHj0llrvVmod8,35
|
774
|
+
omlish-0.0.0.dev262.dist-info/top_level.txt,sha256=pePsKdLu7DvtUiecdYXJ78iO80uDNmBlqe-8hOzOmfs,7
|
775
|
+
omlish-0.0.0.dev262.dist-info/RECORD,,
|
omlish/_antlr/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|