1use crate::Result;
3use std::default::Default;
4
5#[derive(Clone, Copy, Debug, PartialEq, Eq)]
7pub struct Config {
8 max_history_size: usize, history_duplicates: HistoryDuplicates,
11 history_ignore_space: bool,
12 completion_type: CompletionType,
13 completion_prompt_limit: usize,
16 keyseq_timeout: Option<u16>,
19 edit_mode: EditMode,
21 auto_add_history: bool,
24 bell_style: BellStyle,
26 color_mode: ColorMode,
28 behavior: Behavior,
30 tab_stop: usize,
32 indent_size: usize,
34 check_cursor_position: bool,
36 enable_bracketed_paste: bool,
38 enable_signals: bool,
40}
41
42impl Config {
43 #[must_use]
45 pub fn builder() -> Builder {
46 Builder::new()
47 }
48
49 #[must_use]
51 pub fn max_history_size(&self) -> usize {
52 self.max_history_size
53 }
54
55 pub(crate) fn set_max_history_size(&mut self, max_size: usize) {
56 self.max_history_size = max_size;
57 }
58
59 #[must_use]
64 pub fn history_duplicates(&self) -> HistoryDuplicates {
65 self.history_duplicates
66 }
67
68 pub(crate) fn set_history_ignore_dups(&mut self, yes: bool) {
69 self.history_duplicates = if yes {
70 HistoryDuplicates::IgnoreConsecutive
71 } else {
72 HistoryDuplicates::AlwaysAdd
73 };
74 }
75
76 #[must_use]
81 pub fn history_ignore_space(&self) -> bool {
82 self.history_ignore_space
83 }
84
85 pub(crate) fn set_history_ignore_space(&mut self, yes: bool) {
86 self.history_ignore_space = yes;
87 }
88
89 #[must_use]
93 pub fn completion_type(&self) -> CompletionType {
94 self.completion_type
95 }
96
97 #[must_use]
101 pub fn completion_prompt_limit(&self) -> usize {
102 self.completion_prompt_limit
103 }
104
105 #[must_use]
111 pub fn keyseq_timeout(&self) -> Option<u16> {
112 self.keyseq_timeout
113 }
114
115 #[must_use]
117 pub fn edit_mode(&self) -> EditMode {
118 self.edit_mode
119 }
120
121 #[must_use]
125 pub fn auto_add_history(&self) -> bool {
126 self.auto_add_history
127 }
128
129 #[must_use]
131 pub fn bell_style(&self) -> BellStyle {
132 self.bell_style
133 }
134
135 #[must_use]
139 pub fn color_mode(&self) -> ColorMode {
140 self.color_mode
141 }
142
143 pub(crate) fn set_color_mode(&mut self, color_mode: ColorMode) {
144 self.color_mode = color_mode;
145 }
146
147 #[must_use]
151 pub fn behavior(&self) -> Behavior {
152 self.behavior
153 }
154
155 pub(crate) fn set_behavior(&mut self, behavior: Behavior) {
156 self.behavior = behavior;
157 }
158
159 #[must_use]
163 pub fn tab_stop(&self) -> usize {
164 self.tab_stop
165 }
166
167 pub(crate) fn set_tab_stop(&mut self, tab_stop: usize) {
168 self.tab_stop = tab_stop;
169 }
170
171 #[must_use]
175 pub fn check_cursor_position(&self) -> bool {
176 self.check_cursor_position
177 }
178
179 #[must_use]
183 pub fn indent_size(&self) -> usize {
184 self.indent_size
185 }
186
187 pub(crate) fn set_indent_size(&mut self, indent_size: usize) {
188 self.indent_size = indent_size;
189 }
190
191 #[must_use]
195 pub fn enable_bracketed_paste(&self) -> bool {
196 self.enable_bracketed_paste
197 }
198
199 #[must_use]
203 pub fn enable_signals(&self) -> bool {
204 self.enable_signals
205 }
206
207 pub(crate) fn set_enable_signals(&mut self, enable_signals: bool) {
208 self.enable_signals = enable_signals;
209 }
210}
211
212impl Default for Config {
213 fn default() -> Self {
214 Self {
215 max_history_size: 100,
216 history_duplicates: HistoryDuplicates::IgnoreConsecutive,
217 history_ignore_space: false,
218 completion_type: CompletionType::Circular, completion_prompt_limit: 100,
220 keyseq_timeout: None,
221 edit_mode: EditMode::Emacs,
222 auto_add_history: false,
223 bell_style: BellStyle::default(),
224 color_mode: ColorMode::Enabled,
225 behavior: Behavior::default(),
226 tab_stop: 8,
227 indent_size: 2,
228 check_cursor_position: false,
229 enable_bracketed_paste: true,
230 enable_signals: false,
231 }
232 }
233}
234
235#[derive(Clone, Copy, Debug, PartialEq, Eq)]
237pub enum BellStyle {
238 Audible,
240 None,
242 Visible,
244}
245
246impl Default for BellStyle {
249 #[cfg(any(windows, target_arch = "wasm32"))]
250 fn default() -> Self {
251 Self::None
252 }
253
254 #[cfg(unix)]
255 fn default() -> Self {
256 Self::Audible
257 }
258}
259
260#[derive(Clone, Copy, Debug, PartialEq, Eq)]
262pub enum HistoryDuplicates {
263 AlwaysAdd,
265 IgnoreConsecutive,
267}
268
269#[derive(Clone, Copy, Debug, PartialEq, Eq)]
271#[non_exhaustive]
272pub enum CompletionType {
273 Circular,
275 List,
279
280 #[cfg(all(unix, feature = "with-fuzzy"))]
285 Fuzzy,
286}
287
288#[derive(Clone, Copy, Debug, PartialEq, Eq)]
290#[non_exhaustive]
291pub enum EditMode {
292 Emacs,
294 Vi,
296}
297
298#[derive(Clone, Copy, Debug, PartialEq, Eq)]
300#[non_exhaustive]
301pub enum ColorMode {
302 Enabled,
304 Forced,
306 Disabled,
308}
309
310#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)]
312#[non_exhaustive]
313pub enum Behavior {
314 #[default]
316 Stdio,
317 PreferTerm,
320 }
324
325#[derive(Clone, Debug, Default)]
327pub struct Builder {
328 p: Config,
329}
330
331impl Builder {
332 #[must_use]
334 pub fn new() -> Self {
335 Self {
336 p: Config::default(),
337 }
338 }
339
340 pub fn max_history_size(mut self, max_size: usize) -> Result<Self> {
342 self.set_max_history_size(max_size)?;
343 Ok(self)
344 }
345
346 pub fn history_ignore_dups(mut self, yes: bool) -> Result<Self> {
351 self.set_history_ignore_dups(yes)?;
352 Ok(self)
353 }
354
355 #[must_use]
360 pub fn history_ignore_space(mut self, yes: bool) -> Self {
361 self.set_history_ignore_space(yes);
362 self
363 }
364
365 #[must_use]
367 pub fn completion_type(mut self, completion_type: CompletionType) -> Self {
368 self.set_completion_type(completion_type);
369 self
370 }
371
372 #[must_use]
375 pub fn completion_prompt_limit(mut self, completion_prompt_limit: usize) -> Self {
376 self.set_completion_prompt_limit(completion_prompt_limit);
377 self
378 }
379
380 #[must_use]
386 pub fn keyseq_timeout(mut self, keyseq_timeout_ms: Option<u16>) -> Self {
387 self.set_keyseq_timeout(keyseq_timeout_ms);
388 self
389 }
390
391 #[must_use]
393 pub fn edit_mode(mut self, edit_mode: EditMode) -> Self {
394 self.set_edit_mode(edit_mode);
395 self
396 }
397
398 #[must_use]
402 pub fn auto_add_history(mut self, yes: bool) -> Self {
403 self.set_auto_add_history(yes);
404 self
405 }
406
407 #[must_use]
409 pub fn bell_style(mut self, bell_style: BellStyle) -> Self {
410 self.set_bell_style(bell_style);
411 self
412 }
413
414 #[must_use]
418 pub fn color_mode(mut self, color_mode: ColorMode) -> Self {
419 self.set_color_mode(color_mode);
420 self
421 }
422
423 #[must_use]
427 pub fn behavior(mut self, behavior: Behavior) -> Self {
428 self.set_behavior(behavior);
429 self
430 }
431
432 #[must_use]
436 pub fn tab_stop(mut self, tab_stop: usize) -> Self {
437 self.set_tab_stop(tab_stop);
438 self
439 }
440
441 #[must_use]
445 pub fn check_cursor_position(mut self, yes: bool) -> Self {
446 self.set_check_cursor_position(yes);
447 self
448 }
449
450 #[must_use]
454 pub fn indent_size(mut self, indent_size: usize) -> Self {
455 self.set_indent_size(indent_size);
456 self
457 }
458
459 #[must_use]
463 pub fn bracketed_paste(mut self, enabled: bool) -> Self {
464 self.enable_bracketed_paste(enabled);
465 self
466 }
467
468 #[must_use]
472 pub fn enable_signals(mut self, enable_signals: bool) -> Self {
473 self.p.set_enable_signals(enable_signals);
474 self
475 }
476
477 #[must_use]
479 pub fn build(self) -> Config {
480 self.p
481 }
482}
483
484impl Configurer for Builder {
485 fn config_mut(&mut self) -> &mut Config {
486 &mut self.p
487 }
488}
489
490pub trait Configurer {
492 fn config_mut(&mut self) -> &mut Config;
494
495 fn set_max_history_size(&mut self, max_size: usize) -> Result<()> {
497 self.config_mut().set_max_history_size(max_size);
498 Ok(())
499 }
500
501 fn set_history_ignore_dups(&mut self, yes: bool) -> Result<()> {
506 self.config_mut().set_history_ignore_dups(yes);
507 Ok(())
508 }
509
510 fn set_history_ignore_space(&mut self, yes: bool) {
515 self.config_mut().set_history_ignore_space(yes);
516 }
517 fn set_completion_type(&mut self, completion_type: CompletionType) {
519 self.config_mut().completion_type = completion_type;
520 }
521
522 fn set_completion_prompt_limit(&mut self, completion_prompt_limit: usize) {
525 self.config_mut().completion_prompt_limit = completion_prompt_limit;
526 }
527
528 fn set_keyseq_timeout(&mut self, keyseq_timeout_ms: Option<u16>) {
530 self.config_mut().keyseq_timeout = keyseq_timeout_ms;
531 }
532
533 fn set_edit_mode(&mut self, edit_mode: EditMode) {
535 self.config_mut().edit_mode = edit_mode;
536 match edit_mode {
537 EditMode::Emacs => self.set_keyseq_timeout(None), EditMode::Vi => self.set_keyseq_timeout(Some(500)),
539 }
540 }
541
542 fn set_auto_add_history(&mut self, yes: bool) {
546 self.config_mut().auto_add_history = yes;
547 }
548
549 fn set_bell_style(&mut self, bell_style: BellStyle) {
551 self.config_mut().bell_style = bell_style;
552 }
553
554 fn set_color_mode(&mut self, color_mode: ColorMode) {
558 self.config_mut().set_color_mode(color_mode);
559 }
560
561 fn set_behavior(&mut self, behavior: Behavior) {
565 self.config_mut().set_behavior(behavior);
566 }
567
568 fn set_tab_stop(&mut self, tab_stop: usize) {
572 self.config_mut().set_tab_stop(tab_stop);
573 }
574
575 fn set_check_cursor_position(&mut self, yes: bool) {
579 self.config_mut().check_cursor_position = yes;
580 }
581 fn set_indent_size(&mut self, size: usize) {
585 self.config_mut().set_indent_size(size);
586 }
587
588 fn enable_bracketed_paste(&mut self, enabled: bool) {
592 self.config_mut().enable_bracketed_paste = enabled;
593 }
594
595 fn set_enable_signals(&mut self, enable_signals: bool) {
599 self.config_mut().set_enable_signals(enable_signals);
600 }
601}