Skip to content
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

add get_stderr() and get_stderr_all() to SBProcess #33

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,36 @@ impl SBProcess {
String::from_utf8(dst).ok()
}

/// Reads data from the current process's stderr stream until the end of the stream.
pub fn get_stderr_all(&self) -> Option<String> {
let dst_len = 0x1000;
let mut output = "".to_string();
let mut dst: Vec<u8> = Vec::with_capacity(dst_len);
loop {
let out_len =
unsafe { sys::SBProcessGetSTDERR(self.raw, dst.as_mut_ptr() as *mut i8, dst_len) };
if out_len == 0 {
break;
}
unsafe { dst.set_len(out_len) };
output += std::str::from_utf8(&dst).ok()?;
}

Some(output)
}

/// Reads data from the current process's stderr stream.
pub fn get_stderr(&self) -> Option<String> {
let dst_len = 0x1000;
let mut dst: Vec<u8> = Vec::with_capacity(dst_len);

let out_len =
unsafe { sys::SBProcessGetSTDERR(self.raw, dst.as_mut_ptr() as *mut i8, dst_len) };

unsafe { dst.set_len(out_len) };
String::from_utf8(dst).ok()
}

#[allow(missing_docs)]
pub fn broadcaster(&self) -> SBBroadcaster {
SBBroadcaster::wrap(unsafe { sys::SBProcessGetBroadcaster(self.raw) })
Expand Down