-
Notifications
You must be signed in to change notification settings - Fork 119
Herdr support #30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Herdr support #30
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,368 @@ | ||
| use std::io::{self, BufRead, BufReader, Write}; | ||
| use std::os::unix::net::UnixStream; | ||
| use std::path::PathBuf; | ||
| use std::time::Duration; | ||
|
|
||
| use crate::canvas::Canvas; | ||
| use crate::terminal::FrameFile; | ||
|
|
||
| const ACK_TIMEOUT: Duration = Duration::from_secs(5); | ||
| const OPEN_TIMEOUT: Duration = Duration::from_secs(2); | ||
| const SLOTS: u64 = 3; | ||
|
|
||
| pub(crate) struct Herdr { | ||
| frames: BufReader<UnixStream>, | ||
| directory: PathBuf, | ||
| cell: (u32, u32), | ||
| files: Vec<FrameFile>, | ||
| retired: Vec<FrameFile>, | ||
| generation: u64, | ||
| seq: u64, | ||
| } | ||
|
|
||
| impl Herdr { | ||
| pub(crate) fn open() -> Option<Self> { | ||
| Self::connect( | ||
| &std::env::var("HERDR_PANE_ID").ok()?, | ||
| &std::env::var("HERDR_SOCKET_PATH").ok()?, | ||
| ) | ||
| } | ||
|
|
||
| fn connect(pane: &str, socket: &str) -> Option<Self> { | ||
| let info = request( | ||
| socket, | ||
| &format!( | ||
| r#"{{"id":"info","method":"pane.graphics.info","params":{{"pane_id":{}}}}}"#, | ||
| quote(pane) | ||
| ), | ||
| ) | ||
| .ok()?; | ||
|
|
||
| if field_str(&info, "file_frame_transport")? != "direct-kitty" { | ||
| return None; | ||
| } | ||
| let directory = PathBuf::from(field_str(&info, "file_frame_directory")?); | ||
| let cell = ( | ||
| field_u32(&info, "cell_width_px")?, | ||
| field_u32(&info, "cell_height_px")?, | ||
| ); | ||
| if cell.0 == 0 || cell.1 == 0 { | ||
| return None; | ||
| } | ||
|
|
||
| let stream = UnixStream::connect(socket).ok()?; | ||
| stream.set_read_timeout(Some(OPEN_TIMEOUT)).ok()?; | ||
| let mut frames = BufReader::new(stream); | ||
| write_line( | ||
| frames.get_mut(), | ||
| &format!( | ||
| r#"{{"id":"stream","method":"pane.graphics.stream","params":{{"pane_id":{},"layer_id":"primary","z_index":0}}}}"#, | ||
| // checkme: how does pane get here? | ||
| quote(pane) | ||
| ), | ||
| ) | ||
| .ok()?; | ||
| if !accepted(&read_line(&mut frames).ok()?) { | ||
| return None; | ||
| } | ||
| frames.get_ref().set_read_timeout(Some(ACK_TIMEOUT)).ok()?; | ||
|
|
||
| crate::logging::info("herdr", "frames go straight to herdr as files"); | ||
| Some(Self { | ||
| frames, | ||
| directory, | ||
| cell, | ||
| files: Vec::new(), | ||
| retired: Vec::new(), | ||
| generation: 0, | ||
| seq: 0, | ||
| }) | ||
| } | ||
|
|
||
| pub(crate) fn cell(&self) -> (u32, u32) { | ||
| self.cell | ||
| } | ||
|
|
||
| pub(crate) fn present(&mut self, canvas: &Canvas) -> io::Result<usize> { | ||
| let path = crate::profiler::span("herdr.handoff", || self.write_frame(&canvas.pixels))?; | ||
| let header = format!( | ||
| r#"{{"format":"rgba","image_width":{},"image_height":{},"file":{{"path":{}}},"sequence":{},"revision":0,"placement":{{"viewport_col":0,"viewport_row":0,"grid_cols":{},"grid_rows":{}}}}}"#, | ||
| canvas.width, | ||
| canvas.height, | ||
| quote(&path), | ||
| self.seq, | ||
| canvas.width.div_ceil(self.cell.0).max(1), | ||
| canvas.height.div_ceil(self.cell.1).max(1), | ||
| ); | ||
| self.seq += 1; | ||
| write_line(self.frames.get_mut(), &header)?; | ||
|
|
||
| let ack = crate::profiler::span("herdr.ack", || read_line(&mut self.frames))?; | ||
| if !accepted(&ack) { | ||
| return Err(io::Error::other(format!("herdr rejected a frame: {ack}"))); | ||
| } | ||
| self.retired.clear(); | ||
| Ok(header.len()) | ||
| } | ||
|
|
||
| fn write_frame(&mut self, pixels: &[u8]) -> io::Result<String> { | ||
| if self.files.first().is_none_or(|file| file.len() != pixels.len()) { | ||
| self.generation += 1; | ||
| self.retired = std::mem::take(&mut self.files); | ||
| for slot in 0..SLOTS { | ||
| self.files.push(FrameFile::create( | ||
| self.directory.join(format!( | ||
| "px-{}-{}-{slot}", | ||
| std::process::id(), | ||
| self.generation | ||
| )), | ||
| pixels.len(), | ||
| )?); | ||
| } | ||
|
RobPruzan marked this conversation as resolved.
|
||
| } | ||
| let file = &mut self.files[(self.seq % SLOTS) as usize]; | ||
| file.write(pixels); | ||
| Ok(file.path().to_string_lossy().into_owned()) | ||
| } | ||
| } | ||
|
|
||
| fn request(socket: &str, line: &str) -> io::Result<String> { | ||
| let stream = UnixStream::connect(socket)?; | ||
| stream.set_read_timeout(Some(OPEN_TIMEOUT))?; | ||
| let mut reader = BufReader::new(stream); | ||
| write_line(reader.get_mut(), line)?; | ||
| read_line(&mut reader) | ||
| } | ||
|
|
||
| fn write_line(stream: &mut UnixStream, line: &str) -> io::Result<()> { | ||
| stream.write_all(line.as_bytes())?; | ||
| stream.write_all(b"\n")?; | ||
| stream.flush() | ||
| } | ||
|
|
||
| fn read_line(reader: &mut BufReader<UnixStream>) -> io::Result<String> { | ||
| let mut line = String::new(); | ||
| if reader.read_line(&mut line)? == 0 { | ||
| return Err(io::Error::other("herdr closed the connection")); | ||
| } | ||
| Ok(line) | ||
| } | ||
|
|
||
| fn accepted(response: &str) -> bool { | ||
| response.contains(r#""result""#) && !response.contains(r#""error""#) | ||
| } | ||
|
|
||
| fn quote(value: &str) -> String { | ||
| let mut out = String::with_capacity(value.len() + 2); | ||
| out.push('"'); | ||
| for ch in value.chars() { | ||
| match ch { | ||
| '"' => out.push_str("\\\""), | ||
| '\\' => out.push_str("\\\\"), | ||
| _ => out.push(ch), | ||
| } | ||
| } | ||
| out.push('"'); | ||
| out | ||
| } | ||
|
|
||
| fn value_after<'a>(json: &'a str, key: &str) -> Option<&'a str> { | ||
| let at = json.find(&format!("\"{key}\":"))? + key.len() + 3; | ||
| Some(json[at..].trim_start()) | ||
| } | ||
|
|
||
| fn field_str(json: &str, key: &str) -> Option<String> { | ||
| let rest = value_after(json, key)?.strip_prefix('"')?; | ||
| let mut out = String::new(); | ||
| let mut chars = rest.chars(); | ||
| while let Some(ch) = chars.next() { | ||
| match ch { | ||
| '"' => return Some(out), | ||
| '\\' => out.push(chars.next()?), | ||
| _ => out.push(ch), | ||
| } | ||
| } | ||
| None | ||
| } | ||
|
|
||
| fn field_u32(json: &str, key: &str) -> Option<u32> { | ||
| let rest = value_after(json, key)?; | ||
| let end = rest.find(|c: char| !c.is_ascii_digit())?; | ||
| rest[..end].parse().ok() | ||
| } | ||
|
|
||
| #[cfg_attr(not(test), expect(dead_code, reason = "herdr reports pane_visible; nothing skips rendering on it yet"))] | ||
| fn field_bool(json: &str, key: &str) -> Option<bool> { | ||
| match value_after(json, key)? { | ||
| rest if rest.starts_with("true") => Some(true), | ||
| rest if rest.starts_with("false") => Some(false), | ||
| _ => None, | ||
| } | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use super::*; | ||
|
|
||
| const INFO: &str = r#"{"id":"info","result":{"type":"pane_graphics_info","cell_width_px":9,"cell_height_px":19,"pane_visible":true,"file_frame_directory":"/tmp/herdr/frames/source","file_frame_formats":["rgba","bgra"],"max_layers_per_pane":16,"pixel_mouse":false,"file_frame_transport":"direct-kitty"}}"#; | ||
|
|
||
| #[test] | ||
| fn reads_the_fields_an_info_reply_carries() { | ||
| assert_eq!(field_u32(INFO, "cell_width_px"), Some(9)); | ||
| assert_eq!(field_u32(INFO, "cell_height_px"), Some(19)); | ||
| assert_eq!(field_bool(INFO, "pane_visible"), Some(true)); | ||
| assert_eq!( | ||
| field_str(INFO, "file_frame_directory").as_deref(), | ||
| Some("/tmp/herdr/frames/source") | ||
| ); | ||
| assert_eq!( | ||
| field_str(INFO, "file_frame_transport").as_deref(), | ||
| Some("direct-kitty") | ||
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn a_missing_field_is_absent_rather_than_wrong() { | ||
| assert_eq!(field_u32(INFO, "nope"), None); | ||
| assert_eq!(field_str(INFO, "nope"), None); | ||
| assert_eq!(field_bool(INFO, "nope"), None); | ||
| assert_eq!(field_bool(INFO, "file_frame_transport"), None); | ||
| } | ||
|
|
||
| #[test] | ||
| fn an_info_reply_without_file_transport_is_not_ours_to_use() { | ||
| let plain = r#"{"id":"info","result":{"cell_width_px":9,"cell_height_px":19,"pane_visible":true}}"#; | ||
| assert_eq!(field_str(plain, "file_frame_transport"), None); | ||
| } | ||
|
|
||
| #[test] | ||
| fn only_a_result_counts_as_accepted() { | ||
| assert!(accepted( | ||
| r#"{"id":"stream","result":{"type":"pane_graphics_frame_ack","sequence":0,"revision":0}}"# | ||
| )); | ||
| assert!(!accepted( | ||
| r#"{"id":"stream","error":{"code":"feature_disabled","message":"nope"}}"# | ||
| )); | ||
| } | ||
|
|
||
| /// Answers like herdr does: one info reply per connection, then a stream | ||
| /// that acks every frame. Collects the frame headers it was sent. | ||
| fn fake_herdr( | ||
| directory: &std::path::Path, | ||
| transport: &str, | ||
| ) -> (PathBuf, std::sync::mpsc::Receiver<String>) { | ||
| let socket = directory.join("herdr.sock"); | ||
| let listener = std::os::unix::net::UnixListener::bind(&socket).unwrap(); | ||
| let (tx, rx) = std::sync::mpsc::channel(); | ||
| let info = format!( | ||
| r#"{{"id":"info","result":{{"cell_width_px":10,"cell_height_px":20,"pane_visible":true,"file_frame_directory":{},"file_frame_transport":"{transport}"}}}}"#, | ||
| quote(&directory.to_string_lossy()) | ||
| ); | ||
| std::thread::spawn(move || { | ||
| for connection in listener.incoming().take(2) { | ||
| let mut reader = BufReader::new(connection.unwrap()); | ||
| let mut opening = String::new(); | ||
| reader.read_line(&mut opening).unwrap(); | ||
| if opening.contains("pane.graphics.info") { | ||
| write_line(reader.get_mut(), &info).unwrap(); | ||
| continue; | ||
| } | ||
| write_line(reader.get_mut(), r#"{"id":"stream","result":{"type":"ok"}}"#).unwrap(); | ||
| let mut frame = String::new(); | ||
| while reader.read_line(&mut frame).map(|n| n > 0).unwrap_or(false) { | ||
| tx.send(frame.clone()).unwrap(); | ||
| let ack = r#"{"id":"stream","result":{"type":"pane_graphics_frame_ack"}}"#; | ||
| if write_line(reader.get_mut(), ack).is_err() { | ||
| break; | ||
| } | ||
| frame.clear(); | ||
| } | ||
| } | ||
| }); | ||
| (socket, rx) | ||
| } | ||
|
|
||
| fn scratch(name: &str) -> PathBuf { | ||
| let dir = std::env::temp_dir().join(format!("pixel-herdr-{}-{name}", std::process::id())); | ||
| let _ = std::fs::remove_dir_all(&dir); | ||
| std::fs::create_dir_all(&dir).unwrap(); | ||
| dir | ||
| } | ||
|
|
||
| #[test] | ||
| fn a_frame_reaches_herdr_as_a_file_the_header_points_at() { | ||
| let dir = scratch("present"); | ||
| let (socket, frames) = fake_herdr(&dir, "direct-kitty"); | ||
| let mut herdr = | ||
| Herdr::connect("w1:p1", &socket.to_string_lossy()).expect("herdr offered files"); | ||
|
|
||
| assert_eq!(herdr.cell(), (10, 20)); | ||
| let canvas = Canvas::new(40, 40); | ||
| herdr.present(&canvas).unwrap(); | ||
|
|
||
| let header = frames.recv_timeout(Duration::from_secs(5)).unwrap(); | ||
| assert!(header.contains(r#""format":"rgba""#)); | ||
| assert!(header.contains(r#""image_width":40,"image_height":40"#)); | ||
| assert!(header.contains(r#""grid_cols":4,"grid_rows":2"#)); | ||
|
|
||
| let path = PathBuf::from(field_str(&header, "path").unwrap()); | ||
| assert_eq!(path.parent(), Some(dir.as_path())); | ||
| assert_eq!(std::fs::metadata(&path).unwrap().len(), 40 * 40 * 4); | ||
| } | ||
|
|
||
| #[test] | ||
| fn a_resize_keeps_the_previous_pixels_until_the_next_frame_is_taken() { | ||
| let dir = scratch("resize"); | ||
| let (socket, frames) = fake_herdr(&dir, "direct-kitty"); | ||
| let mut herdr = Herdr::connect("w1:p1", &socket.to_string_lossy()).unwrap(); | ||
|
|
||
| let before = PathBuf::from(herdr.write_frame(&vec![0; 40 * 40 * 4]).unwrap()); | ||
| let after = PathBuf::from(herdr.write_frame(&vec![0; 60 * 60 * 4]).unwrap()); | ||
|
|
||
| assert_ne!(before, after, "a stale path must never find new pixels"); | ||
| assert!(before.exists(), "herdr may still replay the placement it has"); | ||
| assert_eq!(std::fs::metadata(&after).unwrap().len(), 60 * 60 * 4); | ||
|
|
||
| herdr.present(&Canvas::new(60, 60)).unwrap(); | ||
| frames.recv_timeout(Duration::from_secs(5)).unwrap(); | ||
| assert!(!before.exists(), "herdr has the new frame, so it can go"); | ||
| } | ||
|
|
||
| #[test] | ||
| fn frames_cycle_through_slots_so_herdr_reads_one_we_are_not_writing() { | ||
| let dir = scratch("slots"); | ||
| let (socket, frames) = fake_herdr(&dir, "direct-kitty"); | ||
| let mut herdr = Herdr::connect("w1:p1", &socket.to_string_lossy()).unwrap(); | ||
|
|
||
| let canvas = Canvas::new(40, 40); | ||
| let mut paths = Vec::new(); | ||
| for _ in 0..SLOTS { | ||
| herdr.present(&canvas).unwrap(); | ||
| let header = frames.recv_timeout(Duration::from_secs(5)).unwrap(); | ||
| paths.push(field_str(&header, "path").unwrap()); | ||
| } | ||
|
|
||
| paths.dedup(); | ||
| assert_eq!(paths.len(), SLOTS as usize, "consecutive frames shared a file"); | ||
| } | ||
|
|
||
| #[test] | ||
| fn a_terminal_without_file_frames_is_left_to_the_caller() { | ||
| let dir = scratch("inline"); | ||
| let (socket, _frames) = fake_herdr(&dir, ""); | ||
| assert!(Herdr::connect("w1:p1", &socket.to_string_lossy()).is_none()); | ||
| } | ||
|
|
||
| #[test] | ||
| fn nothing_listening_is_simply_not_herdr() { | ||
| let dir = scratch("absent"); | ||
| let socket = dir.join("missing.sock"); | ||
| assert!(Herdr::connect("w1:p1", &socket.to_string_lossy()).is_none()); | ||
| } | ||
|
|
||
| #[test] | ||
| fn quoting_survives_a_path_with_characters_json_cares_about() { | ||
| assert_eq!(quote(r#"/tmp/a"b\c"#), r#""/tmp/a\"b\\c""#); | ||
| assert_eq!(field_str(&format!(r#"{{"p":{}}}"#, quote(r#"/a"b\c"#)), "p").as_deref(), Some(r#"/a"b\c"#)); | ||
| } | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Leftover question-to-self comment in the new rendering code
A leftover note asking how a value arrives is committed in the middle of the connection request (
// checkme: how does pane get here?atengine/crates/pixel-core/src/herdr.rs:60), which the repository rules disallow.Impact: Readers are left with an unanswered question in shipped code.
Rule reference
AGENTS.md: "Do not proactively write comments in code. We prefer code to be self explanatory ... Comments should be understandable to someone who was just dropped into the codebase for the first time." The
checkmenote is a personal reminder rather than an explanation.Was this helpful? React with 👍 or 👎 to provide feedback.