forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync_base.py
153 lines (115 loc) · 4.36 KB
/
sync_base.py
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
# Copyright (c) Microsoft Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import asyncio
from typing import (
Any,
Callable,
Coroutine,
Dict,
Generic,
List,
Optional,
TypeVar,
cast,
)
import greenlet
from playwright.impl_to_api_mapping import ImplToApiMapping, ImplWrapper
mapping = ImplToApiMapping()
T = TypeVar("T")
dispatcher_fiber_: greenlet
def set_dispatcher_fiber(fiber: greenlet) -> None:
global dispatcher_fiber_
dispatcher_fiber_ = fiber
def dispatcher_fiber() -> greenlet:
return dispatcher_fiber_
class EventInfo(Generic[T]):
def __init__(self, loop: asyncio.AbstractEventLoop, coroutine: Coroutine) -> None:
self._loop = loop
self._value: Optional[T] = None
self._exception = None
self._future = loop.create_task(coroutine)
g_self = greenlet.getcurrent()
def done_callback(task: Any) -> None:
try:
self._value = mapping.from_maybe_impl(self._future.result())
except Exception as e:
self._exception = e
finally:
g_self.switch()
self._future.add_done_callback(done_callback)
@property
def value(self) -> T:
while not self._future.done():
dispatcher_fiber_.switch()
asyncio._set_running_loop(self._loop)
if self._exception:
raise self._exception
return cast(T, self._value)
class EventContextManager(Generic[T]):
def __init__(self, loop: asyncio.AbstractEventLoop, coroutine: Coroutine) -> None:
self._event: EventInfo = EventInfo(loop, coroutine)
def __enter__(self) -> EventInfo[T]:
return self._event
def __exit__(self, exc_type: Any, exc_val: Any, exc_tb: Any) -> None:
self._event.value
class SyncBase(ImplWrapper):
def __init__(self, impl_obj: Any) -> None:
super().__init__(impl_obj)
self._loop = impl_obj._loop
def __str__(self) -> str:
return self._impl_obj.__str__()
def _sync(self, task: asyncio.Future) -> Any:
g_self = greenlet.getcurrent()
future = self._loop.create_task(task)
def callback(result: Any) -> None:
g_self.switch()
future.add_done_callback(callback)
while not future.done():
dispatcher_fiber_.switch()
asyncio._set_running_loop(self._loop)
return future.result()
def _wrap_handler(self, handler: Any) -> Callable[..., None]:
if callable(handler):
return mapping.wrap_handler(handler)
return handler
def on(self, event_name: str, handler: Any) -> None:
self._impl_obj.on(event_name, self._wrap_handler(handler))
def once(self, event_name: str, handler: Any) -> None:
self._impl_obj.once(event_name, self._wrap_handler(handler))
def remove_listener(self, event_name: str, handler: Any) -> None:
self._impl_obj.remove_listener(event_name, handler)
def _gather(self, *actions: Callable) -> List[Any]:
g_self = greenlet.getcurrent()
results: Dict[Callable, Any] = {}
exceptions: List[Exception] = []
def action_wrapper(action: Callable) -> Callable:
def body() -> Any:
try:
results[action] = action()
except Exception as e:
results[action] = e
exceptions.append(e)
g_self.switch()
return body
async def task() -> None:
for action in actions:
g = greenlet.greenlet(action_wrapper(action))
g.switch()
self._loop.create_task(task())
while len(results) < len(actions):
dispatcher_fiber_.switch()
asyncio._set_running_loop(self._loop)
if exceptions:
raise exceptions[0]
return list(map(lambda action: results[action], actions))