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
use anyhow::{anyhow, Context, Result};
use goxlr_ipc::{DaemonRequest, DaemonResponse, DaemonStatus, GoXLRCommand, Socket};
#[derive(Debug)]
pub struct Client {
socket: Socket<DaemonResponse, DaemonRequest>,
status: DaemonStatus,
}
impl Client {
pub fn new(socket: Socket<DaemonResponse, DaemonRequest>) -> Self {
Self {
socket,
status: DaemonStatus::default(),
}
}
pub async fn send(&mut self, request: DaemonRequest) -> Result<()> {
self.socket
.send(request)
.await
.context("Failed to send a command to the GoXLR daemon process")?;
let result = self
.socket
.read()
.await
.context("Failed to retrieve the command result from the GoXLR daemon process")?
.context("Failed to parse the command result from the GoXLR daemon process")?;
match result {
DaemonResponse::Status(status) => {
self.status = status;
Ok(())
}
DaemonResponse::Ok => Ok(()),
DaemonResponse::Error(error) => Err(anyhow!("{}", error)),
}
}
pub async fn poll_status(&mut self) -> Result<()> {
self.send(DaemonRequest::GetStatus).await
}
pub async fn command(&mut self, serial: &str, command: GoXLRCommand) -> Result<()> {
self.send(DaemonRequest::Command(serial.to_string(), command))
.await
}
pub fn status(&self) -> &DaemonStatus {
&self.status
}
}