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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
use super::xterm::Terminal;
use std::cell::Cell;
use std::fmt::{self, Debug};
use std::io::{Error as IoError, ErrorKind, Result as IoResult, Write};
use std::ops::Deref;
pub struct XtermJsCrosstermBackend<'a> {
pub terminal: &'a Terminal,
buffer: Cell<Vec<u8>>,
}
impl<'a> Debug for XtermJsCrosstermBackend<'a> {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct(core::any::type_name::<Self>())
.field("terminal", &self.terminal)
.finish()
}
}
impl<'a> Deref for XtermJsCrosstermBackend<'a> {
type Target = Terminal;
fn deref(&self) -> &Terminal {
self.flush_immutable().unwrap();
self.terminal
}
}
impl<'a> Drop for XtermJsCrosstermBackend<'a> {
fn drop(&mut self) {
self.flush().unwrap()
}
}
impl<'a> XtermJsCrosstermBackend<'a> {
#[must_use]
pub fn new(terminal: &'a Terminal) -> Self {
Self::new_with_capacity(terminal, 0)
}
#[must_use]
pub fn new_with_capacity(terminal: &'a Terminal, capacity: usize) -> Self {
Self {
terminal,
buffer: Cell::new(Vec::with_capacity(capacity)),
}
}
pub fn write_immediately(&mut self, commands: String) -> IoResult<()> {
self.flush()?;
self.terminal.write(commands);
Ok(())
}
#[inline]
fn flush_immutable(&self) -> IoResult<()> {
let s = String::from_utf8(self.buffer.replace(Vec::new()))
.map_err(|e| IoError::new(ErrorKind::Other, e))?;
self.terminal.write(s);
Ok(())
}
}
impl<'a> Write for XtermJsCrosstermBackend<'a> {
fn write(&mut self, buf: &[u8]) -> IoResult<usize> {
self.buffer.get_mut().write(buf)
}
fn flush(&mut self) -> IoResult<()> {
self.buffer.get_mut().flush()?;
self.flush_immutable()
}
}
impl<'a> From<&'a Terminal> for XtermJsCrosstermBackend<'a> {
fn from(terminal: &'a Terminal) -> Self {
Self::new(terminal)
}
}