aboutsummaryrefslogtreecommitdiff
path: root/srchr/src/output.rs
blob: 7eec147a5b85e2162aaa49196029a99054dfa2f0 (plain)
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
// Copyright (C) 2022 tslil clingman
//
// This file is part of srchr.
//
// srchr is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// srchr is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
// A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with
// srchr. If not, see <https://www.gnu.org/licenses/>.

use crate::config::*;

// This is a silly amount of work to genericise the below...
pub trait ToMyString {
    const BLANK_STRING: &'static str;
    fn to_my_string(&self) -> String;
}

impl ToMyString for char {
    const BLANK_STRING: &'static str = " ";
    fn to_my_string(&self) -> String {
        self.to_string()
    }
}

impl ToMyString for f32 {
    const BLANK_STRING: &'static str = "    ";
    fn to_my_string(&self) -> String {
        format!("{:>5.2}", *self)
    }
}

pub fn format_block_output<T: Iterator<Item = S>, S: ToMyString>(things: T) -> String {
    let mut result = String::new();
    for (i, t) in things.enumerate() {
        result += &t.to_my_string();
        if i < NUM_KEYS - 1 {
            result.push(' ');
        }
        if (i + 1) % 10 == 0 {
            result.push('\n');
            if NUM_KEYS < 30 && i == 19 {
                result += S::BLANK_STRING;
                result.push(' ')
            }
        } else if (i < 20 && (i + 1) % 5 == 0) || (i == (NUM_KEYS - 20) / 2 + 19) {
            result.push(' ');
        }
        if i + 1 >= NUM_KEYS {
            break;
        }
    }
    return result;
}