aboutsummaryrefslogtreecommitdiffstats
path: root/src/blocking/output.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/blocking/output.rs')
-rw-r--r--src/blocking/output.rs92
1 files changed, 92 insertions, 0 deletions
diff --git a/src/blocking/output.rs b/src/blocking/output.rs
new file mode 100644
index 0000000..3049cac
--- /dev/null
+++ b/src/blocking/output.rs
@@ -0,0 +1,92 @@
+use std::io::Write as _;
+
+use crate::private::TextmodeImpl as _;
+
+pub struct ScreenGuard {
+ cleaned_up: bool,
+}
+
+impl ScreenGuard {
+ pub fn cleanup(&mut self) -> std::io::Result<()> {
+ if self.cleaned_up {
+ return Ok(());
+ }
+ self.cleaned_up = true;
+ write_stdout(crate::DEINIT)
+ }
+}
+
+impl Drop for ScreenGuard {
+ fn drop(&mut self) {
+ let _ = self.cleanup();
+ }
+}
+
+pub struct Output {
+ cur: vt100::Parser,
+ next: vt100::Parser,
+}
+
+impl crate::private::TextmodeImpl for Output {
+ fn cur(&self) -> &vt100::Parser {
+ &self.cur
+ }
+
+ fn cur_mut(&mut self) -> &mut vt100::Parser {
+ &mut self.cur
+ }
+
+ fn next(&self) -> &vt100::Parser {
+ &self.next
+ }
+
+ fn next_mut(&mut self) -> &mut vt100::Parser {
+ &mut self.next
+ }
+}
+
+impl crate::Textmode for Output {}
+
+impl Output {
+ pub fn new() -> std::io::Result<(Self, ScreenGuard)> {
+ write_stdout(crate::INIT)?;
+ Ok((
+ Self::new_without_screen(),
+ ScreenGuard { cleaned_up: false },
+ ))
+ }
+
+ pub fn new_without_screen() -> Self {
+ let (rows, cols) = match terminal_size::terminal_size() {
+ Some((terminal_size::Width(w), terminal_size::Height(h))) => {
+ (h, w)
+ }
+ _ => (24, 80),
+ };
+ let cur = vt100::Parser::new(rows, cols, 0);
+ let next = vt100::Parser::new(rows, cols, 0);
+
+ Self { cur, next }
+ }
+
+ pub fn refresh(&mut self) -> std::io::Result<()> {
+ let diffs = &[
+ self.next().screen().contents_diff(self.cur().screen()),
+ self.next().screen().input_mode_diff(self.cur().screen()),
+ self.next().screen().title_diff(self.cur().screen()),
+ self.next().screen().bells_diff(self.cur().screen()),
+ ];
+ for diff in diffs {
+ write_stdout(&diff)?;
+ self.cur_mut().process(&diff);
+ }
+ Ok(())
+ }
+}
+
+fn write_stdout(buf: &[u8]) -> std::io::Result<()> {
+ let mut stdout = std::io::stdout();
+ stdout.write_all(buf)?;
+ stdout.flush()?;
+ Ok(())
+}