Skip to main content

shep_core/protocol/
frame.rs

1//! Anything the daemon writes to a connected client
2//!
3//! The server sends two kinds of frames on one socket: [`Reply`] (answers to
4//! requests) and [`BusEvent`] (broadcast events). This type decodes either,
5//! untagged, because their JSON key sets are disjoint (`id`/`result` vs
6//! `event`), at zero cost to the wire.
7//!
8//! Deserialization needs `serde/std` for buffered content semantics, available
9//! via `serde_json`'s `std` feature (already enabled workspace-wide).
10
11use serde::{Deserialize, Serialize};
12
13use crate::protocol::{BusEvent, Reply};
14
15/// Anything the daemon writes to a connected client
16///
17/// Round-trips to byte-identical output, since the daemon serializes
18/// `Reply`/`BusEvent` directly (pinned by `server_frame_is_byte_identical`).
19// wire format: changing existing variants is a breaking change
20#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
21#[serde(untagged)]
22// Growth is anticipated: a future frame kind (progress, flow control) is
23// additive here and stays additive on the wire.
24#[non_exhaustive]
25pub enum ServerFrame {
26    /// An answer to one request (from [`Envelope`](crate::protocol::Envelope))
27    Reply(Reply),
28    /// One subscribed bus event
29    Event(BusEvent),
30}
31
32#[cfg(test)]
33mod tests {
34    use super::*;
35    use crate::protocol::{
36        BusEvent, ProcessEventKind, ProcessInfo, Reply, Response, RpcError, RpcErrorCode,
37        encode_frame,
38    };
39    use crate::status::ProcStatus;
40
41    fn sample_reply() -> Reply {
42        Reply {
43            id: 7,
44            result: Ok(Response::Pong),
45        }
46    }
47
48    fn sample_event() -> BusEvent {
49        BusEvent::Process {
50            event: ProcessEventKind::Online,
51            info: ProcessInfo {
52                id: 3,
53                name: "web".to_string(),
54                status: ProcStatus::Online,
55                pid: Some(4242),
56                restarts: 0,
57                uptime_ms: 0,
58                fold: None,
59                out_file: Some("/home/ada/.shep/logs/web-0-out.log".to_string()),
60                err_file: Some("/home/ada/.shep/logs/web-0-err.log".to_string()),
61                cpu_percent: None,
62                memory_bytes: None,
63                dog: None,
64                lambs: None,
65                last_exit: None,
66                smit: None,
67                instance: None,
68                handshook: None,
69                dog_stale: None,
70                pending: None,
71                overridden: None,
72            },
73            manually: false,
74            at_ms: 1_700_000_000_000,
75        }
76    }
77
78    #[test]
79    fn server_frame_decodes_both_directions_of_the_stream() {
80        // The two shapes are disjoint: a Reply has no `event` key and an
81        // event has no `id`/`result` pair, so untagged never guesses wrong.
82        let reply = r#"{"id":1,"result":{"Ok":{"kind":"pong"}}}"#;
83        assert!(matches!(
84            serde_json::from_str::<ServerFrame>(reply).unwrap(),
85            ServerFrame::Reply(Reply { id: 1, .. })
86        ));
87        let event = r#"{"event":"log_out","data":{"id":3,"line":"ready"}}"#;
88        assert!(matches!(
89            serde_json::from_str::<ServerFrame>(event).unwrap(),
90            ServerFrame::Event(BusEvent::LogOut { id: 3, .. })
91        ));
92    }
93
94    #[test]
95    fn server_frame_is_byte_identical_to_its_payload() {
96        // The daemon encodes Reply/BusEvent directly; if wrapping ever
97        // started adding bytes, every client would break at once.
98        let reply = sample_reply();
99        assert_eq!(
100            encode_frame(&ServerFrame::Reply(reply.clone())).unwrap(),
101            encode_frame(&reply).unwrap()
102        );
103        let event = sample_event();
104        assert_eq!(
105            encode_frame(&ServerFrame::Event(event.clone())).unwrap(),
106            encode_frame(&event).unwrap()
107        );
108    }
109
110    #[test]
111    fn an_error_reply_still_decodes_as_a_reply_frame() {
112        let err = Reply {
113            id: 2,
114            result: Err(RpcError {
115                code: RpcErrorCode::DeadlineExceeded,
116                message: "request deadline of 5000 ms expired".to_string(),
117                daemon_version: None,
118            }),
119        };
120        let json = serde_json::to_string(&err).unwrap();
121        assert_eq!(
122            serde_json::from_str::<ServerFrame>(&json).unwrap(),
123            ServerFrame::Reply(err)
124        );
125    }
126}