Files
ansi-parser/src/traits.rs
2020-10-05 12:19:37 +02:00

76 lines
1.9 KiB
Rust

use crate::enums::{Output};
use crate::parsers::parse_escape;
pub trait AnsiParser {
fn ansi_parse(&self) -> AnsiParseIterator<'_>;
}
impl AnsiParser for str {
fn ansi_parse(&self) -> AnsiParseIterator<'_> {
AnsiParseIterator {
dat: self
}
}
}
#[cfg(any(feature = "std", test))]
impl AnsiParser for String {
fn ansi_parse(&self) -> AnsiParseIterator<'_> {
AnsiParseIterator {
dat: self
}
}
}
pub struct AnsiParseIterator<'a> {
dat: &'a str,
}
impl<'a> Iterator for AnsiParseIterator<'a> {
type Item = Output<'a>;
fn next(&mut self) -> Option<Self::Item> {
if self.dat == "" {
return None;
}
let pos = self.dat.find('\u{1b}');
if let Some(loc) = pos {
if loc == 0 {
let res = parse_escape(&self.dat[loc..]);
if let Ok(ret) = res {
self.dat = &ret.0;
Some(Output::Escape(ret.1))
}else{
let pos = self.dat[(loc+1)..].find('\u{1b}');
if let Some(loc) = pos {
//Added to because it's based one character ahead
let loc = loc+1;
let temp = &self.dat[..loc];
self.dat = &self.dat[loc..];
Some(Output::TextBlock(temp))
}else{
let temp = self.dat;
self.dat = "";
Some(Output::TextBlock(temp))
}
}
}else {
let temp = &self.dat[..loc];
self.dat = &self.dat[loc..];
Some(Output::TextBlock(&temp))
}
}else{
let temp = self.dat;
self.dat = "";
Some(Output::TextBlock(temp))
}
}
}