sui_aws_orchestrator/
display.rs

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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use std::{fmt::Display, io::stdout};

use crossterm::{
    cursor::{RestorePosition, SavePosition},
    style::{Print, PrintStyledContent, Stylize},
    terminal::{Clear, ClearType},
};
use prettytable::format::{self};

pub fn header<S: Display>(message: S) {
    crossterm::execute!(
        stdout(),
        PrintStyledContent(format!("\n{message}\n").green().bold()),
    )
    .unwrap();
}

pub fn error<S: Display>(message: S) {
    crossterm::execute!(
        stdout(),
        PrintStyledContent(format!("\n{message}\n").red().bold()),
    )
    .unwrap();
}

pub fn warn<S: Display>(message: S) {
    crossterm::execute!(
        stdout(),
        PrintStyledContent(format!("\n{message}\n").bold()),
    )
    .unwrap();
}

pub fn config<N: Display, V: Display>(name: N, value: V) {
    crossterm::execute!(
        stdout(),
        PrintStyledContent(format!("{name}: ").bold()),
        Print(format!("{value}\n"))
    )
    .unwrap();
}

pub fn action<S: Display>(message: S) {
    crossterm::execute!(stdout(), Print(format!("{message} ... ")), SavePosition).unwrap();
}

pub fn status<S: Display>(status: S) {
    crossterm::execute!(
        stdout(),
        RestorePosition,
        SavePosition,
        Clear(ClearType::UntilNewLine),
        Print(format!("[{status}]"))
    )
    .unwrap();
}

pub fn done() {
    crossterm::execute!(
        stdout(),
        RestorePosition,
        Clear(ClearType::UntilNewLine),
        Print(format!("[{}]\n", "Ok".green()))
    )
    .unwrap();
}

pub fn newline() {
    crossterm::execute!(stdout(), Print("\n")).unwrap();
}

/// Default style for tables printed to stdout.
pub fn default_table_format() -> format::TableFormat {
    format::FormatBuilder::new()
        .separators(
            &[
                format::LinePosition::Top,
                format::LinePosition::Bottom,
                format::LinePosition::Title,
            ],
            format::LineSeparator::new('-', '-', '-', '-'),
        )
        .padding(1, 1)
        .build()
}

#[cfg(test)]
mod test {
    use std::time::Duration;

    use tokio::time::sleep;

    use crate::display::status;

    use super::{action, config, done, error, header, newline, warn};

    #[tokio::test]
    #[ignore = "only used to manually check if prints work correctly"]
    async fn display() {
        header("This is a header");
        config("This is a config", 2);
        action("Running a long function");
        for i in 0..5 {
            sleep(Duration::from_secs(1)).await;
            if i == 2 {
                warn("This is a warning!");
            }
            status(format!("{}/5", i + 1));
        }
        done();
        error("This is an error!");
        warn("This is a warning!");
        newline();
    }
}