commit | 9d1ecedac865a9639415dd825c3710d9f8ae4e97 | [log] [tgz] |
---|---|---|
author | Bob Badour <[email protected]> | Thu Mar 09 01:42:48 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Thu Mar 09 01:42:48 2023 +0000 |
tree | e72a6e66abfea32d5e54a2c8891fc8944c00a664 | |
parent | 6e206a924a2067fe0a3f2879f528d08bd0372e03 [diff] | |
parent | b68e97005604c85edaac6b894704be9d9e6e5795 [diff] |
[LSC] Add LOCAL_LICENSE_KINDS to external/rust/crates/anes am: 823c751b73 am: e04f8b41ca am: 6ff0048789 am: b68e970056 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/anes/+/2478195 Change-Id: I0bd8c156d976fbe1381992fee3dba5ef54eb2040 Signed-off-by: Automerger Merge Worker <[email protected]>
A Rust library which provides an ANSI escape sequences (or codes, whatever you like more) and a parser allowing you to parse data from the STDIN (or /dev/tty
) in the raw mode.
Not all ANSI escape sequences are supported by all terminals. You can use the interactive-test to test them. Checkout the repository and then:
$ cd anes-rs $ cargo run --bin interactive-test
[dependencies] anes = "0.1"
An example how to retrieve the ANSI escape sequence as a String
:
use anes::SaveCursorPosition; fn main() { let string = format!("{}", SaveCursorPosition); assert_eq!(&string, "\x1B7"); }
An example how to use the ANSI escape sequence:
use std::io::{Result, Write}; use anes::execute; fn main() -> Result<()> { let mut stdout = std::io::stdout(); execute!( &mut stdout, anes::SaveCursorPosition, anes::MoveCursorTo(10, 10), anes::RestoreCursorPosition )?; Ok(()) }
You have to enable parser
feature in order to use the parser. It's disabled by default.
[dependencies] anes = { version = "0.1", features = ["parser"] }
An example how to parse cursor position:
use anes::parser::{Parser, Sequence}; let mut parser = Parser::default(); parser.advance(b"\x1B[20;10R", false); assert_eq!(Some(Sequence::CursorPosition(10, 20)), parser.next()); assert!(parser.next().is_none());
The ANES crate is dual-licensed under Apache 2.0 and MIT terms.
Copyrights in the ANES project are retained by their contributors. No copyright assignment is required to contribute to the ANES project.