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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use std::iter::FusedIterator;
use std::ffi::{CStr, CString};
use std::vec;
use crate::error::ReturnCode;
use super::ConversationHandler;
#[derive(Debug, Clone)]
pub enum LogEntry {
Info(CString),
Error(CString),
}
#[derive(Debug, Clone)]
pub struct Conversation {
pub username: String,
pub password: String,
pub log: vec::Vec<LogEntry>,
}
impl Conversation {
#[must_use]
pub const fn new() -> Self {
Self {
username: String::new(),
password: String::new(),
log: vec::Vec::new()
}
}
#[must_use]
pub fn with_credentials(username: impl Into<String>, password: impl Into<String>) -> Self {
Self {
username: username.into(),
password: password.into(),
log: vec::Vec::new()
}
}
pub fn clear_log(&mut self) {
self.log.clear();
}
pub fn errors(&self) -> impl Iterator<Item=&CString> + FusedIterator {
self.log.iter().filter_map(|x| match x {
LogEntry::Info(_) => None,
LogEntry::Error(msg) => Some(msg)
})
}
pub fn infos(&self) -> impl Iterator<Item=&CString> + FusedIterator {
self.log.iter().filter_map(|x| match x {
LogEntry::Info(msg) => Some(msg),
LogEntry::Error(_) => None
})
}
}
impl Default for Conversation {
fn default() -> Self {
Self::new()
}
}
impl ConversationHandler for Conversation {
fn init(&mut self, default_user: Option<impl AsRef<str>>) {
if let Some(user) = default_user {
if self.username.is_empty() {
self.username = user.as_ref().to_string();
}
}
}
fn prompt_echo_on(&mut self, _msg: &CStr) -> Result<CString, ReturnCode> {
CString::new(self.username.clone()).map_err(|_| ReturnCode::CONV_ERR)
}
fn prompt_echo_off(&mut self, _msg: &CStr) -> Result<CString, ReturnCode> {
CString::new(self.password.clone()).map_err(|_| ReturnCode::CONV_ERR)
}
fn text_info(&mut self, msg: &CStr) {
self.log.push(LogEntry::Info(msg.to_owned()))
}
fn error_msg(&mut self, msg: &CStr) {
self.log.push(LogEntry::Error(msg.to_owned()))
}
}