1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! This module contains a routines for running and utilizing an interacting session with a [`Session`].
//!
//! use expectrl::{
//! interact::actions::lookup::Lookup,
//! spawn, stream::stdin::Stdin, Regex
//! };
//!
//! #[derive(Debug)]
//! enum Answer {
//! Yes,
//! No,
//! Unrecognized,
//! }
//!
//! let mut session = spawn("cat").expect("Can't spawn a session");
//!
//! let mut input_action = Lookup::new();
//!
//! let mut stdin = Stdin::open().unwrap();
//! let stdout = std::io::stdout();
//!
//! let mut term = session.interact(&mut stdin, stdout).with_state(Answer::Unrecognized);
//! term.set_input_action(move |mut ctx| {
//! let m = input_action.on(ctx.buf, ctx.eof, "yes")?;
//! if m.is_some() {
//! *ctx.state = Answer::Yes;
//! };
//!
//! let m = input_action.on(ctx.buf, ctx.eof, "no")?;
//! if m.is_some() {
//! *ctx.state = Answer::No;
//! };
//!
//! Ok(false)
//! });
//!
//! term.spawn().expect("Failed to run an interact session");
//!
//! let answer = term.into_state();
//!
//! stdin.close().unwrap();
//!
//! println!("It was said {:?}", answer);
//! ```
//!
//! [`Session`]: crate::session::Session
pub use Context;
pub use InteractSession;