fix(compatibility): handle ansi properly with shit performance
This commit is contained in:
parent
5f87e9aea7
commit
1ae1d76041
2 changed files with 98 additions and 35 deletions
|
|
@ -69,8 +69,8 @@ impl Screen {
|
||||||
receiver,
|
receiver,
|
||||||
send_screen_instructions: sender,
|
send_screen_instructions: sender,
|
||||||
full_screen_ws: full_screen_ws.clone(),
|
full_screen_ws: full_screen_ws.clone(),
|
||||||
vertical_separator: TerminalCharacter::new('│').ansi_code(String::from("\u{1b}[m")), // TODO: better
|
vertical_separator: TerminalCharacter::new('│').with_ansi_code(String::from("\u{1b}[m")), // TODO: better
|
||||||
horizontal_separator: TerminalCharacter::new('─').ansi_code(String::from("\u{1b}[m")), // TODO: better
|
horizontal_separator: TerminalCharacter::new('─').with_ansi_code(String::from("\u{1b}[m")), // TODO: better
|
||||||
terminals: BTreeMap::new(),
|
terminals: BTreeMap::new(),
|
||||||
active_terminal: None,
|
active_terminal: None,
|
||||||
os_api,
|
os_api,
|
||||||
|
|
|
||||||
|
|
@ -8,27 +8,20 @@ use ::vte::Perform;
|
||||||
use crate::VteEvent;
|
use crate::VteEvent;
|
||||||
|
|
||||||
const DEBUGGING: bool = false;
|
const DEBUGGING: bool = false;
|
||||||
const EMPTY_TERMINAL_CHARACTER: TerminalCharacter = TerminalCharacter { character: ' ', ansi_code: None };
|
const EMPTY_TERMINAL_CHARACTER: TerminalCharacter = TerminalCharacter { character: ' ', ansi_codes: None, no_style: true };
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct TerminalCharacter {
|
pub struct TerminalCharacter {
|
||||||
pub character: char,
|
pub character: char,
|
||||||
pub ansi_code: Option<String>,
|
pub ansi_codes: Option<Vec<String>>,
|
||||||
|
pub no_style: bool, // TODO: better - this currently means that the style should be reset
|
||||||
|
// we do this here because we need to restructure ansi_codes and otherwise
|
||||||
|
// EMPTY_TERMINAL_CHARACTER won't be Copy, hacky but yeah
|
||||||
}
|
}
|
||||||
|
|
||||||
impl PartialEq for TerminalCharacter {
|
impl PartialEq for TerminalCharacter {
|
||||||
fn eq(&self, other: &Self) -> bool {
|
fn eq(&self, other: &Self) -> bool {
|
||||||
match (&self.ansi_code, &other.ansi_code) {
|
self.ansi_codes == other.ansi_codes
|
||||||
(Some(self_code), Some(other_code)) => {
|
|
||||||
self_code == other_code && self.character == other.character
|
|
||||||
},
|
|
||||||
(None, None) => {
|
|
||||||
self.character == other.character
|
|
||||||
}
|
|
||||||
_ => {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -38,23 +31,36 @@ impl TerminalCharacter {
|
||||||
pub fn new (character: char) -> Self {
|
pub fn new (character: char) -> Self {
|
||||||
TerminalCharacter {
|
TerminalCharacter {
|
||||||
character,
|
character,
|
||||||
ansi_code: None
|
ansi_codes: Some(vec![]),
|
||||||
|
no_style: false,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pub fn ansi_code(mut self, ansi_code: String) -> Self {
|
pub fn with_ansi_code (mut self, ansi_code: String) -> Self {
|
||||||
self.ansi_code = Some(ansi_code);
|
if let Some(ansi_codes) = self.ansi_codes.as_mut() {
|
||||||
|
ansi_codes.push(ansi_code);
|
||||||
self
|
self
|
||||||
|
} else {
|
||||||
|
let mut ansi_codes = vec![];
|
||||||
|
ansi_codes.push(ansi_code);
|
||||||
|
self.ansi_codes = Some(ansi_codes);
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
impl Display for TerminalCharacter {
|
impl Display for TerminalCharacter {
|
||||||
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
||||||
match &self.ansi_code {
|
let mut code_string = String::new(); // TODO: better
|
||||||
Some(code) => write!(f, "{}{}", code, self.character),
|
if self.no_style {
|
||||||
None => write!(f, "{}", self.character)
|
code_string.push_str("\u{1b}[m"); // TODO: better, see comment on no_style
|
||||||
|
} else if let Some(ansi_codes) = self.ansi_codes.as_ref() {
|
||||||
|
for code in ansi_codes {
|
||||||
|
code_string.push_str(&code);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
write!(f, "{}{}", code_string, self.character)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ::std::fmt::Debug for TerminalCharacter {
|
impl ::std::fmt::Debug for TerminalCharacter {
|
||||||
|
|
@ -74,7 +80,7 @@ pub struct TerminalOutput {
|
||||||
cursor_position: usize,
|
cursor_position: usize,
|
||||||
newline_indices: Vec<usize>, // canonical line breaks we get from the vt interpreter
|
newline_indices: Vec<usize>, // canonical line breaks we get from the vt interpreter
|
||||||
linebreak_indices: Vec<usize>, // linebreaks from line wrapping
|
linebreak_indices: Vec<usize>, // linebreaks from line wrapping
|
||||||
pending_ansi_code: Option<String>, // this is used eg. in a carriage return, where we need to preserve the style
|
pending_ansi_codes: Vec<String>, // this is used eg. in a carriage return, where we need to preserve the style
|
||||||
}
|
}
|
||||||
|
|
||||||
impl TerminalOutput {
|
impl TerminalOutput {
|
||||||
|
|
@ -88,7 +94,7 @@ impl TerminalOutput {
|
||||||
display_rows: ws.ws_row,
|
display_rows: ws.ws_row,
|
||||||
display_cols: ws.ws_col,
|
display_cols: ws.ws_col,
|
||||||
should_render: true,
|
should_render: true,
|
||||||
pending_ansi_code: None,
|
pending_ansi_codes: vec![],
|
||||||
x_coords,
|
x_coords,
|
||||||
y_coords,
|
y_coords,
|
||||||
}
|
}
|
||||||
|
|
@ -419,7 +425,7 @@ impl TerminalOutput {
|
||||||
self.newline_indices.push(self.characters.len());
|
self.newline_indices.push(self.characters.len());
|
||||||
self.cursor_position = self.characters.len();
|
self.cursor_position = self.characters.len();
|
||||||
self.should_render = true;
|
self.should_render = true;
|
||||||
self.pending_ansi_code = None;
|
self.pending_ansi_codes = vec![];
|
||||||
}
|
}
|
||||||
fn move_to_beginning_of_line (&mut self) {
|
fn move_to_beginning_of_line (&mut self) {
|
||||||
let last_newline_index = if self.newline_indices.is_empty() {
|
let last_newline_index = if self.newline_indices.is_empty() {
|
||||||
|
|
@ -434,11 +440,16 @@ impl TerminalOutput {
|
||||||
|
|
||||||
impl vte::Perform for TerminalOutput {
|
impl vte::Perform for TerminalOutput {
|
||||||
fn print(&mut self, c: char) {
|
fn print(&mut self, c: char) {
|
||||||
|
// print!("-{:?}>>{:?}<<-", &self.pending_ansi_code.clone().unwrap_or(String::from("None")), c);
|
||||||
if DEBUGGING {
|
if DEBUGGING {
|
||||||
println!("\r[print] {:?}", c);
|
println!("\r[print] {:?}", c);
|
||||||
} else {
|
} else {
|
||||||
let mut terminal_character = TerminalCharacter::new(c);
|
let mut terminal_character = TerminalCharacter::new(c);
|
||||||
terminal_character.ansi_code = self.pending_ansi_code.clone();
|
let mut ansi_codes = vec![];
|
||||||
|
for ansi_code in &self.pending_ansi_codes {
|
||||||
|
ansi_codes.push(ansi_code.clone());
|
||||||
|
}
|
||||||
|
terminal_character.ansi_codes = Some(ansi_codes);
|
||||||
if self.characters.len() == self.cursor_position {
|
if self.characters.len() == self.cursor_position {
|
||||||
self.characters.push(terminal_character);
|
self.characters.push(terminal_character);
|
||||||
|
|
||||||
|
|
@ -452,8 +463,11 @@ impl vte::Perform for TerminalOutput {
|
||||||
self.characters.remove(self.cursor_position);
|
self.characters.remove(self.cursor_position);
|
||||||
self.characters.insert(self.cursor_position, terminal_character);
|
self.characters.insert(self.cursor_position, terminal_character);
|
||||||
} else {
|
} else {
|
||||||
|
// let mut space_character = TerminalCharacter::new(' ');
|
||||||
let mut space_character = TerminalCharacter::new(' ');
|
let mut space_character = TerminalCharacter::new(' ');
|
||||||
space_character.ansi_code = self.pending_ansi_code.clone();
|
// space_character.ansi_code = self.pending_ansi_code.clone();
|
||||||
|
let reset_style = "\u{1b}[m";
|
||||||
|
space_character.ansi_codes = Some(vec![ String::from(reset_style) ]);
|
||||||
for _ in self.characters.len()..self.cursor_position {
|
for _ in self.characters.len()..self.cursor_position {
|
||||||
self.characters.push(space_character.clone());
|
self.characters.push(space_character.clone());
|
||||||
};
|
};
|
||||||
|
|
@ -520,6 +534,10 @@ impl vte::Perform for TerminalOutput {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn csi_dispatch(&mut self, params: &[i64], intermediates: &[u8], ignore: bool, c: char) {
|
fn csi_dispatch(&mut self, params: &[i64], intermediates: &[u8], ignore: bool, c: char) {
|
||||||
|
// println!(
|
||||||
|
// "\r[csi_dispatch] params={:?}, intermediates={:?}, ignore={:?}, char={:?}",
|
||||||
|
// params, intermediates, ignore, c
|
||||||
|
// );
|
||||||
if DEBUGGING {
|
if DEBUGGING {
|
||||||
println!(
|
println!(
|
||||||
"\r[csi_dispatch] params={:?}, intermediates={:?}, ignore={:?}, char={:?}",
|
"\r[csi_dispatch] params={:?}, intermediates={:?}, ignore={:?}, char={:?}",
|
||||||
|
|
@ -527,15 +545,49 @@ impl vte::Perform for TerminalOutput {
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
if c == 'm' {
|
if c == 'm' {
|
||||||
|
// TODO:
|
||||||
|
// 38 => foreground
|
||||||
|
// 48 => background
|
||||||
|
// * change pending_ansi_code to pending_ansi_foreground and pending_ansi_background
|
||||||
|
// * delete them accordingly and treat htem accordingly, see if this solves the
|
||||||
|
// diskonaut problem
|
||||||
|
//
|
||||||
// change foreground color (only?)
|
// change foreground color (only?)
|
||||||
if params.len() == 1 && params[0] == 0 {
|
|
||||||
// eg. \u{1b}[m
|
|
||||||
self.pending_ansi_code = Some(String::from("\u{1b}[m"));
|
|
||||||
} else {
|
|
||||||
// eg. \u{1b}[38;5;0m
|
|
||||||
let param_string = params.iter().map(|p| p.to_string()).collect::<Vec<String>>().join(";");
|
let param_string = params.iter().map(|p| p.to_string()).collect::<Vec<String>>().join(";");
|
||||||
self.pending_ansi_code = Some(format!("\u{1b}[{}m", param_string));
|
self.pending_ansi_codes.push(format!("\u{1b}[{}m", param_string));
|
||||||
}
|
// if params.len() == 1 {
|
||||||
|
//
|
||||||
|
// // if params[0] == 0 ???
|
||||||
|
// if params[0] == 39 {
|
||||||
|
// self.pending_ansi_foreground_code = Some(String::from("\u{1b}[39m"));
|
||||||
|
// } else if params[0] == 49 {
|
||||||
|
// self.pending_ansi_background_code = Some(String::from("\u{1b}[49m"));
|
||||||
|
// } else {
|
||||||
|
// // ?????
|
||||||
|
// let param_string = params.iter().map(|p| p.to_string()).collect::<Vec<String>>().join(";");
|
||||||
|
// self.pending_ansi_foreground_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// self.pending_ansi_background_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// }
|
||||||
|
// // eg. \u{1b}[m
|
||||||
|
// // self.pending_ansi_code = Some(String::from("\u{1b}[m"));
|
||||||
|
// // self.pending_ansi_code = Some(String::from("\u{1b}[0m"));
|
||||||
|
// // self.pending_ansi_code = Some(String::from("\u{1b}[39m\u{1b}[49m")); // reset
|
||||||
|
// } else {
|
||||||
|
// // eg. \u{1b}[38;5;0m
|
||||||
|
// let param_string = params.iter().map(|p| p.to_string()).collect::<Vec<String>>().join(";");
|
||||||
|
// if params[0] == 38 {
|
||||||
|
// self.pending_ansi_foreground_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// } else if params[0] == 48 {
|
||||||
|
// self.pending_ansi_background_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// } else {
|
||||||
|
// // ???
|
||||||
|
// self.pending_ansi_foreground_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// self.pending_ansi_background_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// }
|
||||||
|
//// let param_string = params.iter().map(|p| p.to_string()).collect::<Vec<String>>().join(";");
|
||||||
|
//// self.pending_ansi_code = Some(format!("\u{1b}[{}m", param_string));
|
||||||
|
// }
|
||||||
} else if c == 'C' { // move cursor forward
|
} else if c == 'C' { // move cursor forward
|
||||||
self.cursor_position += params[0] as usize; // TODO: negative value?
|
self.cursor_position += params[0] as usize; // TODO: negative value?
|
||||||
} else if c == 'K' { // clear line (0 => right, 1 => left, 2 => all)
|
} else if c == 'K' { // clear line (0 => right, 1 => left, 2 => all)
|
||||||
|
|
@ -584,6 +636,17 @@ impl vte::Perform for TerminalOutput {
|
||||||
let index_of_start_of_row = self.newline_indices.get(row - 1).unwrap();
|
let index_of_start_of_row = self.newline_indices.get(row - 1).unwrap();
|
||||||
self.cursor_position = index_of_start_of_row + col;
|
self.cursor_position = index_of_start_of_row + col;
|
||||||
}
|
}
|
||||||
|
} else if c == 'D' {
|
||||||
|
// move cursor backwards, stop at left edge of screen
|
||||||
|
self.cursor_position -= params[0] as usize;
|
||||||
|
// TODO: stop at left edge of screen
|
||||||
|
} else if c == 'l' {
|
||||||
|
// TBD
|
||||||
|
} else if c == 'h' {
|
||||||
|
// TBD
|
||||||
|
} else {
|
||||||
|
println!("unhandled csi: {:?}->{:?}", c, params);
|
||||||
|
panic!("aaa!!!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue