hmr 0.4.0.3__py3-none-any.whl → 0.4.1__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.
- {hmr-0.4.0.3.dist-info → hmr-0.4.1.dist-info}/METADATA +1 -1
- {hmr-0.4.0.3.dist-info → hmr-0.4.1.dist-info}/RECORD +7 -7
- reactivity/hmr/api.py +17 -6
- reactivity/hmr/core.py +3 -2
- reactivity/hmr/hooks.py +19 -0
- {hmr-0.4.0.3.dist-info → hmr-0.4.1.dist-info}/WHEEL +0 -0
- {hmr-0.4.0.3.dist-info → hmr-0.4.1.dist-info}/entry_points.txt +0 -0
@@ -1,14 +1,14 @@
|
|
1
|
-
hmr-0.4.
|
2
|
-
hmr-0.4.
|
3
|
-
hmr-0.4.
|
1
|
+
hmr-0.4.1.dist-info/METADATA,sha256=Zx1F2ZUK7Els9nM6w76ceL693CD7JAPUvf7uBVUS2LQ,258
|
2
|
+
hmr-0.4.1.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
3
|
+
hmr-0.4.1.dist-info/entry_points.txt,sha256=g_T0uJ43WgsdG14kkkdaBQuIL0HO-m1qvtjXMP6d060,59
|
4
4
|
reactivity/__init__.py,sha256=pX-RUzkezCC1x4eOWGxNhXbwrbvBLP_3pQuZr9eZz1Y,300
|
5
5
|
reactivity/functional.py,sha256=U06vshcVhZ0sb218gcmHtEhfgTNAGtQ7zyvPz2w5qKM,1292
|
6
6
|
reactivity/helpers.py,sha256=1KCpre2HTFZrngEKkI2HwSFMkCmsUCq2aPEbp0y3kKg,5140
|
7
7
|
reactivity/hmr/__init__.py,sha256=S5ZIHqCRpevdzWuhS0aCua_S8F0LkK0YNg6IgeTScFQ,177
|
8
8
|
reactivity/hmr/__main__.py,sha256=uIcyjR5gMFIXH_3hS0B3SD00RirVf7GIct-uItx675o,64
|
9
|
-
reactivity/hmr/api.py,sha256=
|
10
|
-
reactivity/hmr/core.py,sha256=
|
11
|
-
reactivity/hmr/hooks.py,sha256
|
9
|
+
reactivity/hmr/api.py,sha256=Esb1fYiBW0SLxQ0MPXby25ZgIIZhIp-M3b2KiqpffmU,2094
|
10
|
+
reactivity/hmr/core.py,sha256=HxPngNSKcw5OrIiokqJtbUfAw2Fph-1G3ToJIDP4Pf4,11677
|
11
|
+
reactivity/hmr/hooks.py,sha256=jIFpe4CNxfaS9RcR4OIodx_sOZlnJ_IA1T1RtHPXhwU,945
|
12
12
|
reactivity/hmr/utils.py,sha256=-PO-LMP4sc3IP-Bn_baq2w9IFWBZ3zGesgRn5wR6bS0,1555
|
13
13
|
reactivity/primitives.py,sha256=mB6cbHKDqtilOfgaEhshtRWJq9s0nPEKqRK0hfCoyFE,5671
|
14
|
-
hmr-0.4.
|
14
|
+
hmr-0.4.1.dist-info/RECORD,,
|
reactivity/hmr/api.py
CHANGED
@@ -1,14 +1,15 @@
|
|
1
|
-
from .core import AsyncReloader, BaseReloader, SyncReloader
|
1
|
+
from .core import AsyncReloader, BaseReloader, SyncReloader, create_effect
|
2
2
|
from .hooks import call_post_reload_hooks, call_pre_reload_hooks
|
3
3
|
|
4
4
|
|
5
5
|
class LifecycleMixin(BaseReloader):
|
6
6
|
def run_with_hooks(self):
|
7
7
|
call_pre_reload_hooks()
|
8
|
-
self.run_entry_file
|
8
|
+
self.effect = create_effect(self.run_entry_file)
|
9
9
|
call_post_reload_hooks()
|
10
10
|
|
11
11
|
def clean_up(self):
|
12
|
+
self.effect.dispose()
|
12
13
|
self.entry_module.load.dispose()
|
13
14
|
self.entry_module.load.invalidate()
|
14
15
|
|
@@ -28,10 +29,11 @@ class SyncReloaderAPI(SyncReloader, LifecycleMixin):
|
|
28
29
|
self.clean_up()
|
29
30
|
|
30
31
|
async def __aenter__(self):
|
31
|
-
from asyncio import ensure_future, to_thread
|
32
|
+
from asyncio import ensure_future, sleep, to_thread
|
32
33
|
|
33
34
|
await to_thread(self.run_with_hooks)
|
34
35
|
self.future = ensure_future(to_thread(self.start_watching))
|
36
|
+
await sleep(0)
|
35
37
|
return super()
|
36
38
|
|
37
39
|
async def __aexit__(self, *_):
|
@@ -43,11 +45,19 @@ class SyncReloaderAPI(SyncReloader, LifecycleMixin):
|
|
43
45
|
class AsyncReloaderAPI(AsyncReloader, LifecycleMixin):
|
44
46
|
def __enter__(self):
|
45
47
|
from asyncio import run
|
46
|
-
from threading import Thread
|
48
|
+
from threading import Event, Thread
|
47
49
|
|
48
50
|
self.run_with_hooks()
|
49
|
-
|
51
|
+
|
52
|
+
e = Event()
|
53
|
+
|
54
|
+
async def task():
|
55
|
+
e.set()
|
56
|
+
await self.start_watching()
|
57
|
+
|
58
|
+
self.thread = Thread(target=lambda: run(task()))
|
50
59
|
self.thread.start()
|
60
|
+
e.wait()
|
51
61
|
return super()
|
52
62
|
|
53
63
|
def __exit__(self, *_):
|
@@ -56,10 +66,11 @@ class AsyncReloaderAPI(AsyncReloader, LifecycleMixin):
|
|
56
66
|
self.clean_up()
|
57
67
|
|
58
68
|
async def __aenter__(self):
|
59
|
-
from asyncio import ensure_future, to_thread
|
69
|
+
from asyncio import ensure_future, sleep, to_thread
|
60
70
|
|
61
71
|
await to_thread(self.run_with_hooks)
|
62
72
|
self.future = ensure_future(self.start_watching())
|
73
|
+
await sleep(0)
|
63
74
|
return super()
|
64
75
|
|
65
76
|
async def __aexit__(self, *_):
|
reactivity/hmr/core.py
CHANGED
@@ -122,7 +122,8 @@ class ReactiveModule(ModuleType):
|
|
122
122
|
try:
|
123
123
|
return self.__namespace_proxy[name]
|
124
124
|
except KeyError as e:
|
125
|
-
|
125
|
+
caller = currentframe().f_back.f_globals["__name__"] # type: ignore
|
126
|
+
if caller != "importlib._bootstrap" and (getattr := self.__namespace_proxy.get("__getattr__")):
|
126
127
|
return getattr(name)
|
127
128
|
raise AttributeError(*e.args) from e
|
128
129
|
|
@@ -339,4 +340,4 @@ def cli():
|
|
339
340
|
SyncReloader(entry).keep_watching_until_interrupt()
|
340
341
|
|
341
342
|
|
342
|
-
__version__ = "0.4.
|
343
|
+
__version__ = "0.4.1"
|
reactivity/hmr/hooks.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
from collections.abc import Callable
|
2
|
+
from contextlib import contextmanager
|
2
3
|
from typing import Any
|
3
4
|
|
4
5
|
pre_reload_hooks: dict[str, Callable[[], Any]] = {}
|
@@ -15,6 +16,24 @@ def post_reload[T](func: Callable[[], T]) -> Callable[[], T]:
|
|
15
16
|
return func
|
16
17
|
|
17
18
|
|
19
|
+
@contextmanager
|
20
|
+
def use_pre_reload(func):
|
21
|
+
pre_reload(func)
|
22
|
+
try:
|
23
|
+
yield func
|
24
|
+
finally:
|
25
|
+
pre_reload_hooks.pop(func.__name__, None)
|
26
|
+
|
27
|
+
|
28
|
+
@contextmanager
|
29
|
+
def use_post_reload(func):
|
30
|
+
post_reload(func)
|
31
|
+
try:
|
32
|
+
yield func
|
33
|
+
finally:
|
34
|
+
post_reload_hooks.pop(func.__name__, None)
|
35
|
+
|
36
|
+
|
18
37
|
def call_pre_reload_hooks():
|
19
38
|
for func in pre_reload_hooks.values():
|
20
39
|
func()
|
File without changes
|
File without changes
|