forked from ethereum/web3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.py
130 lines (111 loc) · 3.53 KB
/
module.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
from typing import (
TYPE_CHECKING,
Any,
Callable,
Coroutine,
Dict,
TypeVar,
Union,
)
from eth_abi.codec import (
ABICodec,
)
from eth_utils.toolz import (
curry,
pipe,
)
from web3._utils.filters import (
AsyncLogFilter,
LogFilter,
_UseExistingFilter,
)
from web3.method import (
Method,
)
from web3.types import (
RPCResponse,
)
if TYPE_CHECKING:
from web3.main import ( # noqa: F401
AsyncWeb3,
Web3,
)
@curry
def apply_result_formatters(
result_formatters: Callable[..., Any], result: RPCResponse
) -> RPCResponse:
if result_formatters:
formatted_result = pipe(result, result_formatters)
return formatted_result
else:
return result
TReturn = TypeVar("TReturn")
@curry
def retrieve_blocking_method_call_fn(
w3: "Web3", module: "Module", method: Method[Callable[..., TReturn]]
) -> Callable[..., Union[TReturn, LogFilter]]:
def caller(*args: Any, **kwargs: Any) -> Union[TReturn, LogFilter]:
try:
(method_str, params), response_formatters = method.process_params(
module, *args, **kwargs
)
except _UseExistingFilter as err:
return LogFilter(eth_module=module, filter_id=err.filter_id)
(
result_formatters,
error_formatters,
null_result_formatters,
) = response_formatters
result = w3.manager.request_blocking(
method_str, params, error_formatters, null_result_formatters
)
return apply_result_formatters(result_formatters, result)
return caller
@curry
def retrieve_async_method_call_fn(
async_w3: "AsyncWeb3", module: "Module", method: Method[Callable[..., Any]]
) -> Callable[..., Coroutine[Any, Any, Union[RPCResponse, AsyncLogFilter]]]:
async def caller(*args: Any, **kwargs: Any) -> Union[RPCResponse, AsyncLogFilter]:
try:
(method_str, params), response_formatters = method.process_params(
module, *args, **kwargs
)
except _UseExistingFilter as err:
return AsyncLogFilter(eth_module=module, filter_id=err.filter_id)
(
result_formatters,
error_formatters,
null_result_formatters,
) = response_formatters
result = await async_w3.manager.coro_request(
method_str, params, error_formatters, null_result_formatters
)
return apply_result_formatters(result_formatters, result)
return caller
# Module should no longer have access to the full web3 api.
# Only the calling functions need access to the request methods.
# Any "re-entrant" shenanigans can go in the middlewares, which do
# have web3 access.
class Module:
is_async = False
def __init__(self, w3: Union["AsyncWeb3", "Web3"]) -> None:
if self.is_async:
self.retrieve_caller_fn = retrieve_async_method_call_fn(w3, self)
else:
self.retrieve_caller_fn = retrieve_blocking_method_call_fn(w3, self)
self.w3 = w3
@property
def codec(self) -> ABICodec:
# use codec set on the Web3 instance
return self.w3.codec
def attach_methods(
self,
methods: Dict[str, Method[Callable[..., Any]]],
) -> None:
for method_name, method_class in methods.items():
klass = (
method_class.__get__(obj=self)()
if method_class.is_property
else method_class.__get__(obj=self)
)
setattr(self, method_name, klass)