crossterm/
lib.rs

1#![deny(unused_imports, unused_must_use)]
2
3//! # Crossterm
4//!
5//! Have you ever been disappointed when a terminal library for rust was only written for UNIX systems?
6//! Crossterm provides clearing, event (input) handling, styling, cursor movement, and terminal actions for both
7//! Windows and UNIX systems.
8//!
9//! Crossterm aims to be simple and easy to call in code. Through the simplicity of Crossterm, you do not
10//! have to worry about the platform you are working with.
11//!
12//! This crate supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested
13//! see [Tested Terminals](https://github.com/crossterm-rs/crossterm#tested-terminals)
14//! for more info).
15//!
16//! ## Command API
17//!
18//! The command API makes the use of `crossterm` much easier and offers more control over when and how a
19//! command is executed. A command is just an action you can perform on the terminal e.g. cursor movement.
20//!
21//! The command API offers:
22//!
23//! * Better Performance.
24//! * Complete control over when to flush.
25//! * Complete control over where the ANSI escape commands are executed to.
26//! * Way easier and nicer API.
27//!
28//! There are two ways to use the API command:
29//!
30//! * Functions can execute commands on types that implement Write. Functions are easier to use and debug.
31//!   There is a disadvantage, and that is that there is a boilerplate code involved.
32//! * Macros are generally seen as more difficult and aren't always well supported by editors but offer an API with less boilerplate code. If you are
33//!   not afraid of macros, this is a recommendation.
34//!
35//! Linux and Windows 10 systems support ANSI escape codes. Those ANSI escape codes are strings or rather a
36//! byte sequence. When we `write` and `flush` those to the terminal we can perform some action.
37//! For older windows systems a WinAPI call is made.
38//!
39//! ### Supported Commands
40//!
41//! - Module [`cursor`](cursor/index.html)
42//!   - Visibility - [`Show`](cursor/struct.Show.html), [`Hide`](cursor/struct.Hide.html)
43//!   - Appearance - [`EnableBlinking`](cursor/struct.EnableBlinking.html),
44//!     [`DisableBlinking`](cursor/struct.DisableBlinking.html)
45//!   - Position -
46//!     [`SavePosition`](cursor/struct.SavePosition.html), [`RestorePosition`](cursor/struct.RestorePosition.html),
47//!     [`MoveUp`](cursor/struct.MoveUp.html), [`MoveDown`](cursor/struct.MoveDown.html),
48//!     [`MoveLeft`](cursor/struct.MoveLeft.html), [`MoveRight`](cursor/struct.MoveRight.html),
49//!     [`MoveTo`](cursor/struct.MoveTo.html), [`MoveToColumn`](cursor/struct.MoveToColumn.html),[`MoveToRow`](cursor/struct.MoveToRow.html),
50//!     [`MoveToNextLine`](cursor/struct.MoveToNextLine.html), [`MoveToPreviousLine`](cursor/struct.MoveToPreviousLine.html),
51//!    - Shape -
52//!      [`SetCursorShape`](cursor/struct.SetCursorShape.html)
53//! - Module [`event`](event/index.html)
54//!   - Mouse events - [`EnableMouseCapture`](event/struct.EnableMouseCapture.html),
55//!     [`DisableMouseCapture`](event/struct.DisableMouseCapture.html)
56//! - Module [`style`](style/index.html)
57//!   - Colors - [`SetForegroundColor`](style/struct.SetForegroundColor.html),
58//!     [`SetBackgroundColor`](style/struct.SetBackgroundColor.html),
59//!     [`ResetColor`](style/struct.ResetColor.html), [`SetColors`](style/struct.SetColors.html)
60//!   - Attributes - [`SetAttribute`](style/struct.SetAttribute.html), [`SetAttributes`](style/struct.SetAttributes.html),
61//!     [`PrintStyledContent`](style/struct.PrintStyledContent.html)
62//! - Module [`terminal`](terminal/index.html)
63//!   - Scrolling - [`ScrollUp`](terminal/struct.ScrollUp.html),
64//!     [`ScrollDown`](terminal/struct.ScrollDown.html)
65//!   - Miscellaneous - [`Clear`](terminal/struct.Clear.html),
66//!     [`SetSize`](terminal/struct.SetSize.html)
67//!     [`SetTitle`](terminal/struct.SetTitle.html)
68//!     [`DisableLineWrap`](terminal/struct.DisableLineWrap.html)
69//!     [`EnableLineWrap`](terminal/struct.EnableLineWrap.html)
70//!   - Alternate screen - [`EnterAlternateScreen`](terminal/struct.EnterAlternateScreen.html),
71//!     [`LeaveAlternateScreen`](terminal/struct.LeaveAlternateScreen.html)
72//!
73//! ### Command Execution
74//!
75//! There are two different ways to execute commands:
76//!
77//! * [Lazy Execution](#lazy-execution)
78//! * [Direct Execution](#direct-execution)
79//!
80//! #### Lazy Execution
81//!
82//! Flushing bytes to the terminal buffer is a heavy system call. If we perform a lot of actions with the terminal,
83//! we want to do this periodically - like with a TUI editor - so that we can flush more data to the terminal buffer
84//! at the same time.
85//!
86//! Crossterm offers the possibility to do this with `queue`.
87//! With `queue` you can queue commands, and when you call [Write::flush][flush] these commands will be executed.
88//!
89//! You can pass a custom buffer implementing [std::io::Write][write] to this `queue` operation.
90//! The commands will be executed on that buffer.
91//! The most common buffer is [std::io::stdout][stdout] however, [std::io::stderr][stderr] is used sometimes as well.
92//!
93//! ##### Examples
94//!
95//! A simple demonstration that shows the command API in action with cursor commands.
96//!
97//! Functions:
98//!
99//! ```no_run
100//! use std::io::{Write, stdout};
101//! use crossterm::{QueueableCommand, cursor};
102//!
103//! let mut stdout = stdout();
104//! stdout.queue(cursor::MoveTo(5,5));
105//!
106//! // some other code ...
107//!
108//! stdout.flush();
109//! ```
110//!
111//! The [queue](./trait.QueueableCommand.html) function returns itself, therefore you can use this to queue another
112//! command. Like `stdout.queue(Goto(5,5)).queue(Clear(ClearType::All))`.
113//!
114//! Macros:
115//!
116//! ```no_run
117//! use std::io::{Write, stdout};
118//! use crossterm::{queue, QueueableCommand, cursor};
119//!
120//! let mut stdout = stdout();
121//! queue!(stdout,  cursor::MoveTo(5, 5));
122//!
123//! // some other code ...
124//!
125//! // move operation is performed only if we flush the buffer.
126//! stdout.flush();
127//! ```
128//!
129//! You can pass more than one command into the [queue](./macro.queue.html) macro like
130//! `queue!(stdout, MoveTo(5, 5), Clear(ClearType::All))` and
131//! they will be executed in the given order from left to right.
132//!
133//! #### Direct Execution
134//!
135//! For many applications it is not at all important to be efficient with 'flush' operations.
136//! For this use case there is the `execute` operation.
137//! This operation executes the command immediately, and calls the `flush` under water.
138//!
139//! You can pass a custom buffer implementing [std::io::Write][write] to this `execute` operation.
140//! The commands will be executed on that buffer.
141//! The most common buffer is [std::io::stdout][stdout] however, [std::io::stderr][stderr] is used sometimes as well.
142//!
143//! ##### Examples
144//!
145//! Functions:
146//!
147//! ```no_run
148//! use std::io::{Write, stdout};
149//! use crossterm::{ExecutableCommand, cursor};
150//!
151//! let mut stdout = stdout();
152//! stdout.execute(cursor::MoveTo(5,5));
153//! ```
154//! The [execute](./trait.ExecutableCommand.html) function returns itself, therefore you can use this to queue
155//! another command. Like `stdout.execute(Goto(5,5))?.execute(Clear(ClearType::All))`.
156//!
157//! Macros:
158//!
159//! ```no_run
160//! use std::io::{Write, stdout};
161//! use crossterm::{execute, ExecutableCommand, cursor};
162//!
163//! let mut stdout = stdout();
164//! execute!(stdout, cursor::MoveTo(5, 5));
165//! ```
166//! You can pass more than one command into the [execute](./macro.execute.html) macro like
167//! `execute!(stdout, MoveTo(5, 5), Clear(ClearType::All))` and they will be executed in the given order from
168//! left to right.
169//!
170//! ## Examples
171//!
172//! Print a rectangle colored with magenta and use both direct execution and lazy execution.
173//!
174//! Functions:
175//!
176//! ```no_run
177//! use std::io::{stdout, Write};
178//! use crossterm::{
179//!     ExecutableCommand, QueueableCommand,
180//!     terminal, cursor, style::{self, Stylize}, Result
181//! };
182//!
183//! fn main() -> Result<()> {
184//!   let mut stdout = stdout();
185//!
186//!   stdout.execute(terminal::Clear(terminal::ClearType::All))?;
187//!
188//!   for y in 0..40 {
189//!     for x in 0..150 {
190//!       if (y == 0 || y == 40 - 1) || (x == 0 || x == 150 - 1) {
191//!         // in this loop we are more efficient by not flushing the buffer.
192//!         stdout
193//!           .queue(cursor::MoveTo(x,y))?
194//!           .queue(style::PrintStyledContent( "█".magenta()))?;
195//!       }
196//!     }
197//!   }
198//!   stdout.flush()?;
199//!   Ok(())
200//! }
201//! ```
202//!
203//! Macros:
204//!
205//! ```no_run
206//! use std::io::{stdout, Write};
207//! use crossterm::{
208//!     execute, queue,
209//!     style::{self, Stylize}, cursor, terminal, Result
210//! };
211//!
212//! fn main() -> Result<()> {
213//!   let mut stdout = stdout();
214//!
215//!   execute!(stdout, terminal::Clear(terminal::ClearType::All))?;
216//!
217//!   for y in 0..40 {
218//!     for x in 0..150 {
219//!       if (y == 0 || y == 40 - 1) || (x == 0 || x == 150 - 1) {
220//!         // in this loop we are more efficient by not flushing the buffer.
221//!         queue!(stdout, cursor::MoveTo(x,y), style::PrintStyledContent( "█".magenta()))?;
222//!       }
223//!     }
224//!   }
225//!   stdout.flush()?;
226//!   Ok(())
227//! }
228//!```
229//!
230//! [write]: https://doc.rust-lang.org/std/io/trait.Write.html
231//! [stdout]: https://doc.rust-lang.org/std/io/fn.stdout.html
232//! [stderr]: https://doc.rust-lang.org/std/io/fn.stderr.html
233//! [flush]: https://doc.rust-lang.org/std/io/trait.Write.html#tymethod.flush
234
235pub use crate::{
236    command::{Command, ExecutableCommand, QueueableCommand},
237    error::{ErrorKind, Result},
238};
239
240/// A module to work with the terminal cursor
241pub mod cursor;
242/// A module to read events.
243pub mod event;
244/// A module to apply attributes and colors on your text.
245pub mod style;
246/// A module to work with the terminal.
247pub mod terminal;
248
249/// A module to query if the current instance is a tty.
250pub mod tty;
251
252#[cfg(windows)]
253/// A module that exposes one function to check if the current terminal supports ANSI sequences.
254pub mod ansi_support;
255mod command;
256mod error;
257pub(crate) mod macros;