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
56
//! This module contains a routines for running and utilizing an interacting session with a [`Session`].
//!
//! use expectrl::{interact::{InteractOptions, 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 opts = InteractOptions::new(Answer::Unrecognized)
//! .on_input(|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)
//! });
//!
//! session.interact(&mut stdin, stdout)
//! .spawn(&mut opts)
//! .expect("Failed to run an interact session");
//!
//! let answer = opts.into_inner();
//!
//! stdin.close().unwrap();
//!
//! println!("It was said {:?}", answer);
//! ```
//!
//! [`Session`]: crate::session::Session
pub use Context;
pub use ;
pub use InteractSession;