refactor: 📦 Share ConsoleOps implementation
This commit is contained in:
parent
4733c012ad
commit
625fc496ce
|
@ -27,11 +27,35 @@ pub mod interface {
|
||||||
#[allow(unused_variables)]
|
#[allow(unused_variables)]
|
||||||
pub trait ConsoleOps: SerialOps {
|
pub trait ConsoleOps: SerialOps {
|
||||||
/// Send a character
|
/// Send a character
|
||||||
fn write_char(&self, c: char);
|
fn write_char(&self, c: char) {
|
||||||
|
let mut bytes = [0u8; 4];
|
||||||
|
let _ = c.encode_utf8(&mut bytes);
|
||||||
|
for &b in bytes.iter().take(c.len_utf8()) {
|
||||||
|
self.write_byte(b);
|
||||||
|
}
|
||||||
|
}
|
||||||
/// Display a string
|
/// Display a string
|
||||||
fn write_string(&self, string: &str);
|
fn write_string(&self, string: &str) {
|
||||||
/// Receive a character
|
for c in string.chars() {
|
||||||
fn read_char(&self) -> char;
|
// convert newline to carriage return + newline
|
||||||
|
if c == '\n' {
|
||||||
|
self.write_char('\r')
|
||||||
|
}
|
||||||
|
|
||||||
|
self.write_char(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/// Receive a character -- FIXME: needs a state machine to read UTF-8 chars!
|
||||||
|
fn read_char(&self) -> char {
|
||||||
|
let mut ret = self.read_byte() as char;
|
||||||
|
|
||||||
|
// convert carriage return to newline
|
||||||
|
if ret == '\r' {
|
||||||
|
ret = '\n'
|
||||||
|
}
|
||||||
|
|
||||||
|
ret
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Trait alias for a full-fledged console.
|
/// Trait alias for a full-fledged console.
|
||||||
|
|
|
@ -319,40 +319,7 @@ impl SerialOps for MiniUartInner {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl interface::ConsoleOps for MiniUartInner {
|
impl interface::ConsoleOps for MiniUartInner {}
|
||||||
/// Send a character
|
|
||||||
fn write_char(&self, c: char) {
|
|
||||||
let mut bytes = [0u8; 4];
|
|
||||||
let _ = c.encode_utf8(&mut bytes);
|
|
||||||
for &b in bytes.iter().take(c.len_utf8()) {
|
|
||||||
self.write_byte(b);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Display a string
|
|
||||||
fn write_string(&self, string: &str) {
|
|
||||||
for c in string.chars() {
|
|
||||||
// convert newline to carriage return + newline
|
|
||||||
if c == '\n' {
|
|
||||||
self.write_char('\r')
|
|
||||||
}
|
|
||||||
|
|
||||||
self.write_char(c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Receive a character -- FIXME: needs a state machine to read UTF-8 chars!
|
|
||||||
fn read_char(&self) -> char {
|
|
||||||
let mut ret = self.read_byte() as char;
|
|
||||||
|
|
||||||
// convert carriage return to newline -- this doesn't work well for reading binaries...
|
|
||||||
if ret == '\r' {
|
|
||||||
ret = '\n'
|
|
||||||
}
|
|
||||||
|
|
||||||
ret
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl fmt::Write for MiniUartInner {
|
impl fmt::Write for MiniUartInner {
|
||||||
fn write_str(&mut self, s: &str) -> fmt::Result {
|
fn write_str(&mut self, s: &str) -> fmt::Result {
|
||||||
|
@ -386,7 +353,6 @@ impl SerialOps for MiniUart {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ??
|
|
||||||
impl interface::ConsoleOps for MiniUart {
|
impl interface::ConsoleOps for MiniUart {
|
||||||
fn write_char(&self, c: char) {
|
fn write_char(&self, c: char) {
|
||||||
self.inner.lock(|inner| inner.write_char(c))
|
self.inner.lock(|inner| inner.write_char(c))
|
||||||
|
|
Loading…
Reference in New Issue