-
-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
114 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,63 @@ | ||
use std::io::{self, Write}; | ||
//! Helper for blocking communication over the niri socket. | ||
|
||
use std::env; | ||
use std::io::{self, Read, Write}; | ||
use std::net::Shutdown; | ||
use std::os::unix::net::UnixStream; | ||
use std::path::Path; | ||
|
||
use serde_json::de::IoRead; | ||
use serde_json::StreamDeserializer; | ||
|
||
use crate::{Reply, Request}; | ||
|
||
/// Name of the environment variable containing the niri IPC socket path. | ||
pub const SOCKET_PATH_ENV: &str = "NIRI_SOCKET"; | ||
|
||
/// A client for the niri IPC server. | ||
/// Helper for blocking communication over the niri socket. | ||
/// | ||
/// This struct is used to communicate with the niri IPC server. It handles the socket connection | ||
/// and serialization/deserialization of messages. | ||
pub struct NiriSocket { | ||
pub struct Socket { | ||
stream: UnixStream, | ||
responses: StreamDeserializer<'static, IoRead<UnixStream>, Reply>, | ||
} | ||
|
||
impl TryFrom<UnixStream> for NiriSocket { | ||
type Error = io::Error; | ||
fn try_from(stream: UnixStream) -> io::Result<Self> { | ||
let responses = serde_json::Deserializer::from_reader(stream.try_clone()?).into_iter(); | ||
Ok(Self { stream, responses }) | ||
} | ||
} | ||
|
||
impl NiriSocket { | ||
/// Connects to the default niri IPC socket | ||
impl Socket { | ||
/// Connects to the default niri IPC socket. | ||
/// | ||
/// This is equivalent to calling [Self::connect] with the value of the [SOCKET_PATH_ENV] | ||
/// environment variable. | ||
pub fn new() -> io::Result<Self> { | ||
let socket_path = std::env::var_os(SOCKET_PATH_ENV).ok_or_else(|| { | ||
/// This is equivalent to calling [`Self::connect_to`] with the path taken from the | ||
/// [`SOCKET_PATH_ENV`] environment variable. | ||
pub fn connect() -> io::Result<Self> { | ||
let socket_path = env::var_os(SOCKET_PATH_ENV).ok_or_else(|| { | ||
io::Error::new( | ||
io::ErrorKind::NotFound, | ||
format!("{SOCKET_PATH_ENV} is not set, are you running this within niri?"), | ||
) | ||
})?; | ||
Self::connect(socket_path) | ||
Self::connect_to(socket_path) | ||
} | ||
|
||
/// Connect to the socket at the given path | ||
/// | ||
/// See also: [UnixStream::connect] | ||
pub fn connect(path: impl AsRef<Path>) -> io::Result<Self> { | ||
Self::try_from(UnixStream::connect(path.as_ref())?) | ||
/// Connects to the niri IPC socket at the given path. | ||
pub fn connect_to(path: impl AsRef<Path>) -> io::Result<Self> { | ||
let stream = UnixStream::connect(path.as_ref())?; | ||
Ok(Self { stream }) | ||
} | ||
|
||
/// Handle a request to the niri IPC server | ||
/// Sends a request to niri and returns the response. | ||
/// | ||
/// Return values: | ||
/// | ||
/// # Returns | ||
/// Ok(Ok([Response](crate::Response))) corresponds to a successful response from the running | ||
/// niri instance. Ok(Err([String])) corresponds to an error received from the running niri | ||
/// instance. Err([std::io::Error]) corresponds to an error in the IPC communication. | ||
pub fn send(mut self, request: Request) -> io::Result<Reply> { | ||
/// * `Ok(Ok(response))`: successful [`Response`](crate::Response) from niri | ||
/// * `Ok(Err(message))`: error message from niri | ||
/// * `Err(error)`: error communicating with niri | ||
pub fn send(self, request: Request) -> io::Result<Reply> { | ||
let Self { mut stream } = self; | ||
|
||
let mut buf = serde_json::to_vec(&request).unwrap(); | ||
writeln!(buf).unwrap(); | ||
self.stream.write_all(&buf)?; // .context("error writing IPC request")?; | ||
self.stream.flush()?; | ||
stream.write_all(&buf)?; | ||
stream.shutdown(Shutdown::Write)?; | ||
|
||
buf.clear(); | ||
stream.read_to_end(&mut buf)?; | ||
|
||
if let Some(next) = self.responses.next() { | ||
next.map_err(|err| io::Error::new(io::ErrorKind::InvalidData, err)) | ||
} else { | ||
Err(io::Error::new( | ||
io::ErrorKind::UnexpectedEof, | ||
"no response from server", | ||
)) | ||
} | ||
let reply = serde_json::from_slice(&buf)?; | ||
Ok(reply) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters