aboutsummaryrefslogtreecommitdiff
path: root/jsonrpc/src/server/pubsub_service.rs
blob: a6b4c110937f7717461f57725b4c682f371e4e8c (plain)
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
use std::{future::Future, pin::Pin, sync::Arc};

use crate::RPCResult;

use super::channel::Channel;

/// Represents the RPC method
pub type PubSubRPCMethod<'a> =
    Box<dyn Fn(Arc<Channel>, String, serde_json::Value) -> PubSubRPCMethodOutput<'a> + Send + 'a>;
type PubSubRPCMethodOutput<'a> =
    Pin<Box<dyn Future<Output = RPCResult<serde_json::Value>> + Send + Sync + 'a>>;

/// Defines the interface for an RPC service.
pub trait PubSubRPCService: Sync + Send {
    fn get_pubsub_method<'a>(&'a self, name: &'a str) -> Option<PubSubRPCMethod>;
    fn name(&self) -> String;
}

/// Implements the [`PubSubRPCService`] trait for a provided type.
///
/// # Example
///
/// ```
/// use serde_json::Value;
///
/// use karyon_jsonrpc::{RPCError, impl_rpc_service};
///
/// struct Hello {}
///
/// impl Hello {
///     async fn foo(&self, params: Value) -> Result<Value, RPCError> {
///         Ok(serde_json::json!("foo!"))
///     }
///
///     async fn bar(&self, params: Value) -> Result<Value, RPCError> {
///         Ok(serde_json::json!("bar!"))
///     }
/// }
///
/// impl_rpc_service!(Hello, foo, bar);
///
/// ```
#[macro_export]
macro_rules! impl_pubsub_rpc_service {
    ($t:ty, $($m:ident),*) => {
        impl karyon_jsonrpc::PubSubRPCService for $t {
            fn get_pubsub_method<'a>(
                &'a self,
                name: &'a str
            ) -> Option<karyon_jsonrpc::PubSubRPCMethod> {
                match name {
                $(
                    stringify!($m) => {
                        Some(Box::new(
                            move |chan: std::sync::Arc<karyon_jsonrpc::Channel>, method: String, params: serde_json::Value| {
                            Box::pin(self.$m(chan, method, params))
                        }))
                    }
                )*
                    _ => None,
                }


            }
            fn name(&self) -> String{
                stringify!($t).to_string()
            }
        }
    };
}