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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
from __future__ import annotations
from collections.abc import Callable, Iterable
from enum import Flag, auto
from typing import (
Any,
Generic,
Literal,
ParamSpec,
TypeAlias,
TypeVar,
)
from ._base import CRU
from ._const import CruPlaceholder
_P = ParamSpec("_P")
_P1 = ParamSpec("_P1")
_T = TypeVar("_T")
class _Dec:
@staticmethod
def wrap(
origin: Callable[_P, Callable[_P1, _T]]
) -> Callable[_P, _Wrapper[_P1, _T]]:
def _wrapped(*args: _P.args, **kwargs: _P.kwargs) -> _Wrapper[_P1, _T]:
return _Wrapper(origin(*args, **kwargs))
return _wrapped
class _RawBase:
@staticmethod
def none(*_v, **_kwargs) -> None:
return None
@staticmethod
def true(*_v, **_kwargs) -> Literal[True]:
return True
@staticmethod
def false(*_v, **_kwargs) -> Literal[False]:
return False
@staticmethod
def identity(v: _T) -> _T:
return v
@staticmethod
def only_you(v: _T, *_v, **_kwargs) -> _T:
return v
@staticmethod
def equal(a: Any, b: Any) -> bool:
return a == b
@staticmethod
def not_equal(a: Any, b: Any) -> bool:
return a != b
@staticmethod
def not_(v: Any) -> Any:
return not v
class _Wrapper(Generic[_P, _T]):
def __init__(self, f: Callable[_P, _T]):
self._f = f
@property
def me(self) -> Callable[_P, _T]:
return self._f
def __call__(self, *args: _P.args, **kwargs: _P.kwargs) -> _T:
return self._f(*args, **kwargs)
@_Dec.wrap
def bind(self, *bind_args, **bind_kwargs) -> Callable[..., _T]:
func = self.me
def bound_func(*args, **kwargs):
popped = 0
real_args = []
for arg in bind_args:
if CruPlaceholder.check(arg):
real_args.append(args[popped])
popped += 1
else:
real_args.append(arg)
real_args.extend(args[popped:])
return func(*real_args, **(bind_kwargs | kwargs))
return bound_func
class ChainMode(Flag):
ARGS = auto()
KWARGS = auto()
BOTH = ARGS | KWARGS
ArgsChainableCallable: TypeAlias = Callable[..., Iterable[Any]]
KwargsChainableCallable: TypeAlias = Callable[..., Iterable[tuple[str, Any]]]
ChainableCallable: TypeAlias = Callable[
..., tuple[Iterable[Any], Iterable[tuple[str, Any]]]
]
@_Dec.wrap
def chain_with_args(
self, funcs: Iterable[ArgsChainableCallable], *bind_args, **bind_kwargs
) -> ArgsChainableCallable:
def chained_func(*args):
args = self.bind(*bind_args, **bind_kwargs)(*args)
for func in funcs:
args = _Wrapper(func).bind(*bind_args, **bind_kwargs)(*args)
return args
return chained_func
@_Dec.wrap
def chain_with_kwargs(
self, funcs: Iterable[KwargsChainableCallable], *bind_args, **bind_kwargs
) -> KwargsChainableCallable:
def chained_func(**kwargs):
kwargs = self.bind(*bind_args, **bind_kwargs)(**kwargs)
for func in funcs:
kwargs = _Wrapper(func).bind(func, *bind_args, **bind_kwargs)(**kwargs)
return kwargs
return chained_func
@_Dec.wrap
def chain_with_both(
self, funcs: Iterable[ChainableCallable], *bind_args, **bind_kwargs
) -> ChainableCallable:
def chained_func(*args, **kwargs):
for func in funcs:
args, kwargs = _Wrapper(func).bind(func, *bind_args, **bind_kwargs)(
*args, **kwargs
)
return args, kwargs
return chained_func
class _Base:
none = _Wrapper(_RawBase.none)
true = _Wrapper(_RawBase.true)
false = _Wrapper(_RawBase.false)
identity = _Wrapper(_RawBase.identity)
only_you = _Wrapper(_RawBase.only_you)
equal = _Wrapper(_RawBase.equal)
not_equal = _Wrapper(_RawBase.not_equal)
not_ = _Wrapper(_RawBase.not_)
class _Creators:
@staticmethod
def make_isinstance_of_types(*types: type) -> Callable:
return _Wrapper(lambda v: type(v) in types)
class CruFunction:
RawBase: TypeAlias = _RawBase
Base: TypeAlias = _Base
Creators: TypeAlias = _Creators
Wrapper: TypeAlias = _Wrapper
Decorators: TypeAlias = _Dec
CRU.add_objects(CruFunction)
|