use std::borrow::Cow;
use crate::{
Params,
params::{Id, TwoPointZero},
};
use http::Extensions;
use serde::{Deserialize, Serialize};
use serde_json::value::RawValue;
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Request<'a> {
pub jsonrpc: TwoPointZero,
#[serde(borrow)]
pub id: Id<'a>,
#[serde(borrow)]
pub method: Cow<'a, str>,
#[serde(borrow)]
#[serde(skip_serializing_if = "Option::is_none")]
pub params: Option<Cow<'a, RawValue>>,
#[serde(skip)]
pub extensions: Extensions,
}
impl<'a> Request<'a> {
pub fn borrowed(method: &'a str, params: Option<&'a RawValue>, id: Id<'a>) -> Self {
Self {
jsonrpc: TwoPointZero,
id,
method: Cow::Borrowed(method),
params: params.map(Cow::Borrowed),
extensions: Extensions::new(),
}
}
pub fn owned(method: String, params: Option<Box<RawValue>>, id: Id<'a>) -> Self {
Self {
jsonrpc: TwoPointZero,
id,
method: Cow::Owned(method),
params: params.map(Cow::Owned),
extensions: Extensions::new(),
}
}
pub fn id(&self) -> Id<'a> {
self.id.clone()
}
pub fn method_name(&self) -> &str {
&self.method
}
pub fn params(&self) -> Params<'_> {
Params::new(self.params.as_ref().map(|p| RawValue::get(p)))
}
pub fn extensions(&self) -> &Extensions {
&self.extensions
}
pub fn extensions_mut(&mut self) -> &mut Extensions {
&mut self.extensions
}
}
#[derive(Deserialize, Debug, PartialEq, Eq, Clone)]
pub struct InvalidRequest<'a> {
#[serde(borrow)]
pub id: Id<'a>,
}
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Notification<'a, T> {
pub jsonrpc: TwoPointZero,
#[serde(borrow)]
pub method: Cow<'a, str>,
pub params: T,
#[serde(skip)]
pub extensions: Extensions,
}
impl<'a, T> Notification<'a, T> {
pub fn new(method: Cow<'a, str>, params: T) -> Self {
Self { jsonrpc: TwoPointZero, method, params, extensions: Extensions::new() }
}
pub fn method_name(&self) -> &str {
&self.method
}
pub fn extensions(&self) -> &Extensions {
&self.extensions
}
pub fn params(&self) -> &T {
&self.params
}
pub fn extensions_mut(&mut self) -> &mut Extensions {
&mut self.extensions
}
}
#[cfg(test)]
mod test {
use super::{Id, InvalidRequest, Notification, Request, TwoPointZero};
use serde_json::value::RawValue;
fn assert_request<'a>(request: Request<'a>, id: Id<'a>, method: &str, params: Option<&str>) {
assert_eq!(request.jsonrpc, TwoPointZero);
assert_eq!(request.id, id);
assert_eq!(request.method, method);
assert_eq!(request.params.as_ref().map(|p| RawValue::get(p)), params);
}
#[test]
fn deserialize_call() {
let method = "subtract";
let params = "[42, 23]";
let test_vector = vec![
(
r#"{"jsonrpc":"2.0", "method":"subtract", "params":[42, 23], "id":1}"#,
Id::Number(1),
Some(params),
method,
),
(r#"{"jsonrpc":"2.0", "method":"subtract", "id":null}"#, Id::Null, None, method),
(r#"{"jsonrpc":"2.0", "method":"\"m", "id":null}"#, Id::Null, None, "\"m"),
];
for (ser, id, params, method) in test_vector.into_iter() {
let request = serde_json::from_str(ser).unwrap();
assert_request(request, id, method, params);
}
}
#[test]
fn deserialize_call_escaped_method_name() {
let ser = r#"{"jsonrpc":"2.0","id":1,"method":"\"m\""}"#;
let req: Request = serde_json::from_str(ser).unwrap();
assert_request(req, Id::Number(1), "\"m\"", None);
}
#[test]
fn deserialize_valid_notif_works() {
let ser = r#"{"jsonrpc":"2.0","method":"say_hello","params":[]}"#;
let dsr: Notification<&RawValue> = serde_json::from_str(ser).unwrap();
assert_eq!(dsr.method, "say_hello");
assert_eq!(dsr.jsonrpc, TwoPointZero);
}
#[test]
fn deserialize_valid_notif_escaped_method() {
let ser = r#"{"jsonrpc":"2.0","method":"\"m\"","params":[]}"#;
let dsr: Notification<&RawValue> = serde_json::from_str(ser).unwrap();
assert_eq!(dsr.method, "\"m\"");
assert_eq!(dsr.jsonrpc, TwoPointZero);
}
#[test]
fn deserialize_call_bad_id_should_fail() {
let ser = r#"{"jsonrpc":"2.0","method":"say_hello","params":[],"id":{}}"#;
assert!(serde_json::from_str::<Request>(ser).is_err());
}
#[test]
fn deserialize_invalid_request() {
let s = r#"{"id":120,"method":"my_method","params":["foo", "bar"],"extra_field":[]}"#;
let deserialized: InvalidRequest = serde_json::from_str(s).unwrap();
assert_eq!(deserialized, InvalidRequest { id: Id::Number(120) });
}
#[test]
fn serialize_call() {
let method = "subtract";
let id = Id::Number(1); let params = Some(serde_json::value::to_raw_value(&[42, 23]).unwrap());
let test_vector: &[(&'static str, Option<_>, Option<_>, &'static str)] = &[
(
r#"{"jsonrpc":"2.0","id":1,"method":"subtract","params":[42,23]}"#,
Some(id.clone()),
params.clone(),
method,
),
(r#"{"jsonrpc":"2.0","id":1,"method":"\"m"}"#, Some(id.clone()), None, "\"m"),
(r#"{"jsonrpc":"2.0","id":null,"method":"subtract","params":[42,23]}"#, None, params, method),
(r#"{"jsonrpc":"2.0","id":1,"method":"subtract"}"#, Some(id), None, method),
(r#"{"jsonrpc":"2.0","id":null,"method":"subtract"}"#, None, None, method),
];
for (ser, id, params, method) in test_vector.iter().cloned() {
let request =
serde_json::to_string(&Request::borrowed(method, params.as_deref(), id.unwrap_or(Id::Null))).unwrap();
assert_eq!(&request, ser);
}
}
}