aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprpm/src/progress/CProgressBar.cpp
blob: 45602f826887f53f08b2ee87144a7bff722b0491 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include "CProgressBar.hpp"

#include <iostream>
#include <algorithm>
#include <cmath>
#include <format>

#include <sys/ioctl.h>
#include <stdio.h>
#include <unistd.h>

#include "../helpers/Colors.hpp"

void CProgressBar::printMessageAbove(const std::string& msg) {
    struct winsize w;
    ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);

    std::string spaces;
    for (size_t i = 0; i < w.ws_col; ++i) {
        spaces += ' ';
    }

    std::cout << "\r" << spaces << "\r" << msg << "\n";
    print();
}

void CProgressBar::print() {
    struct winsize w;
    ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);

    if (m_bFirstPrint)
        std::cout << "\n";
    m_bFirstPrint = false;

    std::string spaces;
    for (size_t i = 0; i < w.ws_col; ++i) {
        spaces += ' ';
    }

    std::cout << "\r" << spaces << "\r";

    std::string message = "";

    float       percentDone = 0;
    if (m_fPercentage >= 0)
        percentDone = m_fPercentage;
    else
        percentDone = (float)m_iSteps / (float)m_iMaxSteps;

    const auto BARWIDTH = std::clamp(w.ws_col - static_cast<unsigned long>(m_szCurrentMessage.length()) - 2, 0UL, 50UL);

    // draw bar
    message += std::string{" "} + Colors::GREEN;
    size_t i = 0;
    for (; i < std::floor(percentDone * BARWIDTH); ++i) {
        message += "━";
    }

    if (i < BARWIDTH) {
        i++;

        message += std::string{"╍"} + Colors::RESET;

        for (; i < BARWIDTH; ++i) {
            message += "━";
        }
    } else
        message += Colors::RESET;

    // draw progress
    if (m_fPercentage >= 0)
        message += "  " + std::format("{}%", static_cast<int>(percentDone * 100.0)) + " ";
    else
        message += "  " + std::format("{} / {}", m_iSteps, m_iMaxSteps) + " ";

    // draw message
    std::cout << message + " " + m_szCurrentMessage;

    std::fflush(stdout);
}