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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use serde::{Serialize, Deserialize};
use serde_json::Value;

#[derive(Debug,PartialEq,Eq)]
pub struct NumericID(pub usize);

impl Serialize for NumericID {
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: serde::Serializer {
        serializer.serialize_str(&self.0.to_string())
    }
}

impl<'de> Deserialize<'de> for NumericID {
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: serde::Deserializer<'de> {
        let s = <&str>::deserialize(deserializer)?;
        Ok(NumericID(usize::from_str_radix(s, 10).map_err(serde::de::Error::custom)?))
    }
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(tag = "msg")]
#[serde(rename_all = "camelCase")]
pub enum Message {
    Connect {
        version: String,
        support: Vec<String>,
        #[serde(skip_serializing_if="Option::is_none")]
        session: Option<String>,
    },
    Connected {
        session: String,
    },
    Failed {
        version: String,
    },

    Ping,
    Pong,

    Method { 
        id: NumericID, 
        method: String, 
        params: Vec<Value>
    },
    Updated { 
        methods: Vec<NumericID> 
    },
    Result(MethodResponse),
    Sub { 
        id: String, name: String, params: Vec<Value> 
    },
    Unsub { 
        id: String 
    },
    Nosub { 
        id: String, 
        #[serde(skip_serializing_if="Option::is_none")]
        error: Option<Value>
    },
    Added {
        collection: String,
        id: String,
        fields: Option<Value>,
    },
    Changed {
        collection: String,
        id: String,
        #[serde(skip_serializing_if="Option::is_none")]
        fields: Option<Value>,
        #[serde(skip_serializing_if="Option::is_none")]
        cleared: Option<Vec<String>>,
    },
    Removed {
        collection: String,
        id: String,
    },
    Ready {
        subs: Vec<String>,
    },
    AddedBefore {
        collection: String,
        id: String,
        #[serde(skip_serializing_if="Option::is_none")]
        fields: Option<Value>,
        before: Option<String>,
    },
    MovedBefore {
        before: Option<String>,
    }
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
#[serde(untagged)]
#[serde(rename_all = "lowercase")]
pub enum MethodResponse {
    Result { id: NumericID, result: Value },
    Error { id: NumericID, error: Value },
}

impl MethodResponse {
    pub fn id(&self) -> usize {
        match self {
            MethodResponse::Result { id, .. } => id.0,
            MethodResponse::Error { id, .. } => id.0,
        }
    }
}

impl Into<Result<Value,Value>> for MethodResponse {
    fn into(self) -> Result<Value,Value> {
        match self {
            MethodResponse::Result { result, .. } => Ok(result),
            MethodResponse::Error { error, .. } => Err(error),
        }
    }
}

#[test]
fn test_method_format() {

    fn check_message(msg: &Message) {
        let s = serde_json::to_string(msg).unwrap();
        let msg2: Message = serde_json::from_str(&s).unwrap();
        assert_eq!(msg, &msg2);
    }

    check_message(&Message::Result( 
        MethodResponse::Result {
            id: NumericID(123),
            result: Value::String("burp".to_string()),
        }
    ));

    check_message(&Message::Result(
        MethodResponse::Error {
            id: NumericID(456),
            error: Value::Bool(true),
        }
    ));

}