// Code adapted from: https://github.com/althea-net/guac_rs/tree/master/web3/src/jsonrpc use ethers_core::types::U256; use serde::{Deserialize, Serialize}; use serde_json::Value; use std::fmt; use thiserror::Error; #[derive(Serialize, Deserialize, Debug, Clone, Error)] /// A JSON-RPC 2.0 error pub struct JsonRpcError { /// The error code pub code: i64, /// The error message pub message: String, /// Additional data pub data: Option, } impl fmt::Display for JsonRpcError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, "(code: {}, message: {}, data: {:?})", self.code, self.message, self.data) } } fn is_zst(_t: &T) -> bool { std::mem::size_of::() == 0 } #[derive(Serialize, Deserialize, Debug)] /// A JSON-RPC request pub struct Request<'a, T> { id: u64, jsonrpc: &'a str, method: &'a str, #[serde(skip_serializing_if = "is_zst")] params: T, } #[derive(Serialize, Deserialize, Debug)] /// A JSON-RPC Notifcation pub struct Notification { jsonrpc: String, method: String, pub params: Subscription, } #[derive(Serialize, Deserialize, Debug)] pub struct Subscription { pub subscription: U256, pub result: R, } impl<'a, T> Request<'a, T> { /// Creates a new JSON RPC request pub fn new(id: u64, method: &'a str, params: T) -> Self { Self { id, jsonrpc: "2.0", method, params } } } #[derive(Serialize, Deserialize, Debug, Clone)] pub struct Response { pub(crate) id: u64, jsonrpc: String, #[serde(flatten)] pub data: ResponseData, } #[derive(Serialize, Deserialize, Debug, Clone)] #[serde(untagged)] pub enum ResponseData { Error { error: JsonRpcError }, Success { result: R }, } impl ResponseData { /// Consume response and return value pub fn into_result(self) -> Result { match self { ResponseData::Success { result } => Ok(result), ResponseData::Error { error } => Err(error), } } } impl ResponseData { /// Encode the error to json value if it is an error #[allow(dead_code)] pub fn into_value(self) -> serde_json::Result { match self { ResponseData::Success { result } => Ok(result), ResponseData::Error { error } => serde_json::to_value(error), } } } #[cfg(test)] mod tests { use super::*; #[test] fn deser_response() { let response: Response = serde_json::from_str(r#"{"jsonrpc": "2.0", "result": 19, "id": 1}"#).unwrap(); assert_eq!(response.id, 1); assert_eq!(response.data.into_result().unwrap(), 19); } #[test] fn ser_request() { let request: Request<()> = Request::new(300, "method_name", ()); assert_eq!( &serde_json::to_string(&request).unwrap(), r#"{"id":300,"jsonrpc":"2.0","method":"method_name"}"# ); let request: Request = Request::new(300, "method_name", 1); assert_eq!( &serde_json::to_string(&request).unwrap(), r#"{"id":300,"jsonrpc":"2.0","method":"method_name","params":1}"# ); } }