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
#![allow(clippy::ptr_arg)]
#[allow(unused_imports)]
use async_trait::async_trait;
#[allow(unused_imports)]
use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use std::{borrow::Cow, string::ToString};
#[allow(unused_imports)]
use wasmbus_rpc::{
deserialize, serialize, Context, Message, MessageDispatch, RpcError, RpcResult, SendOpts,
Transport,
};
pub const SMITHY_VERSION: &str = "1.0";
pub type StringList = Vec<String>;
#[async_trait]
pub trait Runner {
fn contract_id() -> &'static str {
"wasmcloud:example:runner"
}
async fn run(&self, ctx: &Context, arg: &StringList) -> RpcResult<StringList>;
}
#[async_trait]
pub trait RunnerReceiver: MessageDispatch + Runner {
async fn dispatch(&self, ctx: &Context, message: &Message<'_>) -> RpcResult<Message<'_>> {
match message.method {
"Run" => {
let value: StringList = deserialize(message.arg.as_ref())
.map_err(|e| RpcError::Deser(format!("message '{}': {}", message.method, e)))?;
let resp = Runner::run(self, ctx, &value).await?;
let buf = Cow::Owned(serialize(&resp)?);
Ok(Message {
method: "Runner.Run",
arg: buf,
})
}
_ => Err(RpcError::MethodNotHandled(format!(
"Runner::{}",
message.method
))),
}
}
}
#[derive(Debug)]
pub struct RunnerSender<T: Transport> {
transport: T,
}
impl<T: Transport> RunnerSender<T> {
pub fn via(transport: T) -> Self {
Self { transport }
}
}
#[async_trait]
impl<T: Transport + std::marker::Sync + std::marker::Send> Runner for RunnerSender<T> {
#[allow(unused)]
async fn run(&self, ctx: &Context, arg: &StringList) -> RpcResult<StringList> {
let arg = serialize(arg)?;
let resp = self
.transport
.send(
ctx,
Message {
method: "Run",
arg: Cow::Borrowed(&arg),
},
None,
)
.await?;
let value = deserialize(&resp)
.map_err(|e| RpcError::Deser(format!("response to {}: {}", "Run", e)))?;
Ok(value)
}
}