Skip to content

Commit 0c3db90

Browse files
committed
enable trigger from str
1 parent 54b52ce commit 0c3db90

11 files changed

+30
-19
lines changed

.ruff.toml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ ignore = [
1010
"S101",
1111
"ARG002",
1212
"ARG003",
13+
"ANN401",
1314
]
1415
logger-objects = ["resonate.logging.logger"]
1516

src/resonate/context.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(
3333
) -> None:
3434
self._deps = deps
3535

36-
def get_dependency(self, key: str) -> Any: # noqa: ANN401
36+
def get_dependency(self, key: str) -> Any:
3737
return self._deps.get(key)
3838

3939
def sleep(self, secs: int) -> RFC:
@@ -59,7 +59,7 @@ def rfc(
5959
**kwargs: P.kwargs,
6060
) -> RFC: ...
6161
@overload
62-
def rfc(self, func: str, /, *args: Any, **kwargs: Any) -> RFC: ... # noqa: ANN401
62+
def rfc(self, func: str, /, *args: Any, **kwargs: Any) -> RFC: ...
6363
@overload
6464
def rfc(
6565
self,
@@ -109,7 +109,7 @@ def rfi(
109109
**kwargs: P.kwargs,
110110
) -> RFI: ...
111111
@overload
112-
def rfi(self, func: str, /, *args: Any, **kwargs: Any) -> RFI: ... # noqa: ANN401
112+
def rfi(self, func: str, /, *args: Any, **kwargs: Any) -> RFI: ...
113113
@overload
114114
def rfi(
115115
self,

src/resonate/dataclasses.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ def __init__(
142142
self,
143143
fn: str,
144144
/,
145-
*args: Any, # noqa: ANN401
146-
**kwargs: Any, # noqa: ANN401
145+
*args: Any,
146+
**kwargs: Any,
147147
) -> None: ...
148148
@overload
149149
def __init__(

src/resonate/dependencies.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
class Dependencies:
1010
deps: dict[str, Any] = field(default_factory=dict)
1111

12-
def set(self, key: str, obj: Any) -> None: # noqa: ANN401
12+
def set(self, key: str, obj: Any) -> None:
1313
assert not self._exists(key), f"There's already a dependency under name `{key}`"
1414
self.deps[key] = obj
1515

16-
def get(self, key: str) -> Any: # noqa: ANN401
16+
def get(self, key: str) -> Any:
1717
return self.deps[key]
1818

1919
def _exists(self, key: str) -> bool:

src/resonate/encoders.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def decode(self, data: str) -> str:
2929
return base64.b64decode(data).decode()
3030

3131

32-
def _object_hook(data: dict[str, Any]) -> Any: # noqa: ANN401
32+
def _object_hook(data: dict[str, Any]) -> Any:
3333
if "__type" in data:
3434
error_cls = _import_class_from_qualified_name(data["__type"])
3535
return error_cls(**data["attributes"])
@@ -39,15 +39,15 @@ def _object_hook(data: dict[str, Any]) -> Any: # noqa: ANN401
3939

4040
@final
4141
class JsonEncoder(IEncoder[Any, str]):
42-
def encode(self, data: Any) -> str: # noqa: ANN401
42+
def encode(self, data: Any) -> str:
4343
if isinstance(data, Exception):
4444
data = {
4545
"__type": _classname(data),
4646
"attributes": data.__dict__,
4747
}
4848
return json.dumps(data)
4949

50-
def decode(self, data: str) -> Any: # noqa: ANN401
50+
def decode(self, data: str) -> Any:
5151
return json.loads(data, object_hook=_object_hook)
5252

5353

@@ -60,7 +60,7 @@ def _classname(obj: object) -> str:
6060
return name
6161

6262

63-
def _import_class_from_qualified_name(qualified_name: str) -> Any: # noqa: ANN401
63+
def _import_class_from_qualified_name(qualified_name: str) -> Any:
6464
module_name, class_name = qualified_name.rsplit(".", 1)
6565
module = importlib.import_module(module_name)
6666
return getattr(module, class_name)

src/resonate/resonate.py

+13-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def stop(self) -> None:
9696
"""
9797
self._scheduler.stop()
9898

99-
def set_dependency(self, key: str, obj: Any) -> None: # noqa: ANN401
99+
def set_dependency(self, key: str, obj: Any) -> None:
100100
"""
101101
Sets a dependency to be used by the Application Node.
102102
@@ -223,6 +223,16 @@ def run(
223223
func = func.fn
224224
return self._scheduler.run(id, func, *args, **kwargs)
225225

226+
@overload
227+
def trigger(
228+
self,
229+
id: str,
230+
target: str,
231+
func: str,
232+
/,
233+
*args: Any,
234+
**kwargs: Any,
235+
) -> Handle[Any]: ...
226236
@overload
227237
def trigger(
228238
self,
@@ -258,7 +268,8 @@ def trigger(
258268
Generator[Yieldable, Any, T],
259269
]
260270
| Callable[Concatenate[Context, P], T]
261-
| Callable[Concatenate[Context, P], Coroutine[Any, Any, T]],
271+
| Callable[Concatenate[Context, P], Coroutine[Any, Any, T]]
272+
| str,
262273
/,
263274
*args: P.args,
264275
**kwargs: P.kwargs,

src/resonate/scheduler/scheduler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def trigger(
134134
self,
135135
id: str,
136136
target: str,
137-
func: DurableCoro[P, T] | DurableFn[P, T],
137+
func: DurableCoro[P, T] | DurableFn[P, T] | str,
138138
/,
139139
*args: P.args,
140140
**kwargs: P.kwargs,

src/resonate/scheduler/traits.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def trigger(
3434
self,
3535
id: str,
3636
target: str,
37-
func: DurableCoro[P, T] | DurableFn[P, T],
37+
func: DurableCoro[P, T] | DurableFn[P, T] | str,
3838
/,
3939
*args: P.args,
4040
**kwargs: P.kwargs,

src/resonate/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def string_to_uuid(string: str) -> str:
2323

2424
def exit_on_exception(func: F) -> F:
2525
@wraps(func)
26-
def wrapper(*args: Any, **kwargs: Any) -> Any: # noqa: ANN401
26+
def wrapper(*args: Any, **kwargs: Any) -> Any:
2727
try:
2828
return func(*args, **kwargs)
2929
except Exception:

tests/test_encoders.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def test_base64_encoder(data: str) -> None:
1616

1717

1818
@pytest.mark.parametrize("data", [1, {"value": 3}, {"number": "1", "text": 312}])
19-
def test_json_encoder(data: Any) -> None: # noqa: ANN401
19+
def test_json_encoder(data: Any) -> None:
2020
encoder = JsonEncoder()
2121
encoded = encoder.encode(data=data)
2222
assert data == encoder.decode(encoded)

tests/test_functionality.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -855,12 +855,11 @@ def bar_golden_device_rfi(ctx: Context, n: str) -> str: # noqa: ARG001
855855
store=RemoteStore(url=os.environ["RESONATE_STORE_URL"]),
856856
task_source=Poller("http://localhost:8002", group=other_group),
857857
)
858-
resonate.register(foo_golden_device_rfi)
859858
other_resonate.register(foo_golden_device_rfi)
860859
other_resonate.register(bar_golden_device_rfi)
861860

862861
p: Handle[str] = resonate.trigger(
863-
f"{group}-foo", poll(other_group), foo_golden_device_rfi, "hi"
862+
f"{group}-foo", poll(other_group), "foo_golden_device_rfi", "hi"
864863
)
865864
assert isinstance(p, Handle)
866865
assert p.result() == "hi"

0 commit comments

Comments
 (0)