metaforce/hecl/lib/MultiProgressPrinter.cpp

343 lines
9.7 KiB
C++
Raw Normal View History

2018-03-23 21:40:12 +00:00
#include "hecl/MultiProgressPrinter.hpp"
#define BOLD "\033[1m"
#define NORMAL "\033[0m"
2019-07-20 04:22:58 +00:00
#define PREV_LINE "\r\033[{:d}A"
2018-03-23 21:40:12 +00:00
#define HIDE_CURSOR "\033[?25l"
#define SHOW_CURSOR "\033[?25h"
#if _WIN32
2018-12-08 05:18:42 +00:00
#define FOREGROUND_WHITE FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_BLUE
2018-03-23 21:40:12 +00:00
#endif
2018-12-08 05:18:42 +00:00
namespace hecl {
void MultiProgressPrinter::ThreadStat::print(const TermInfo& tinfo) const {
bool blocks = m_factor >= 0.f;
float factor = std::max(0.f, std::min(1.f, m_factor));
int iFactor = factor * 100.f;
int messageLen = m_message.size();
int submessageLen = m_submessage.size();
int half;
if (blocks)
half = (tinfo.width + 1) / 2 - 2;
else if (tinfo.truncate)
half = tinfo.width - 4;
else
half = messageLen;
if (half - messageLen < submessageLen - 2)
submessageLen = 0;
if (submessageLen) {
if (messageLen > half - submessageLen - 1)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {:.{}}... {} ")), m_message, half - submessageLen - 4, m_submessage);
2018-12-08 05:18:42 +00:00
else {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {}")), m_message);
2018-12-08 05:18:42 +00:00
for (int i = half - messageLen - submessageLen - 1; i >= 0; --i)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" ")));
fmt::print(fmt(_SYS_STR("{} ")), m_submessage);
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
} else {
if (messageLen > half)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {:.{}}... ")), m_message, half - 3);
2018-12-08 05:18:42 +00:00
else {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {}")), m_message);
2018-12-08 05:18:42 +00:00
for (int i = half - messageLen; i >= 0; --i)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" ")));
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
}
2018-03-23 21:40:12 +00:00
2018-12-08 05:18:42 +00:00
if (blocks) {
int rightHalf = tinfo.width - half - 4;
2019-07-20 04:22:58 +00:00
int nblocks = rightHalf - 7;
int filled = nblocks * factor;
int rem = nblocks - filled;
2018-03-23 21:40:12 +00:00
2018-12-08 05:18:42 +00:00
if (tinfo.xtermColor) {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" BOLD "{:3d}% [")), iFactor);
2018-12-08 05:18:42 +00:00
for (int b = 0; b < filled; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]" NORMAL "")));
2018-12-08 05:18:42 +00:00
} else {
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(tinfo.console, FOREGROUND_INTENSITY | FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("{:3d}% [")), iFactor);
2018-12-08 05:18:42 +00:00
for (int b = 0; b < filled; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]")));
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(tinfo.console, FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
}
2018-12-08 05:18:42 +00:00
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::DrawIndeterminateBar() {
int half = m_termInfo.width - 2;
int blocks = half - 2;
++m_indeterminateCounter;
if (m_indeterminateCounter <= -blocks)
m_indeterminateCounter = -blocks + 1;
else if (m_indeterminateCounter >= blocks)
m_indeterminateCounter = -blocks + 2;
int absCounter = std::abs(m_indeterminateCounter);
int pre = absCounter;
int rem = blocks - pre - 1;
if (m_termInfo.xtermColor) {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" BOLD " [")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < pre; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]" NORMAL "")));
2018-12-08 05:18:42 +00:00
} else {
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(m_termInfo.console, FOREGROUND_INTENSITY | FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" [")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < pre; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]")));
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(m_termInfo.console, FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
2018-12-08 05:18:42 +00:00
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::MoveCursorUp(int n) {
if (n) {
if (m_termInfo.xtermColor) {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" PREV_LINE "")), n);
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
#if _WIN32
else {
CONSOLE_SCREEN_BUFFER_INFO consoleInfo;
GetConsoleScreenBufferInfo(m_termInfo.console, &consoleInfo);
consoleInfo.dwCursorPosition.X = 0;
consoleInfo.dwCursorPosition.Y -= n;
SetConsoleCursorPosition(m_termInfo.console, consoleInfo.dwCursorPosition);
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
#endif
} else {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\r")));
2018-12-08 05:18:42 +00:00
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::DoPrint() {
auto logLk = logvisor::LockLog();
uint64_t logCounter = logvisor::GetLogCounter();
if (logCounter != m_lastLogCounter) {
m_curThreadLines = 0;
m_lastLogCounter = logCounter;
}
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
CONSOLE_CURSOR_INFO cursorInfo;
GetConsoleCursorInfo(m_termInfo.console, &cursorInfo);
cursorInfo.bVisible = FALSE;
SetConsoleCursorInfo(m_termInfo.console, &cursorInfo);
2018-03-23 21:40:12 +00:00
#endif
2018-12-08 05:18:42 +00:00
if (m_termInfo.xtermColor)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" HIDE_CURSOR "")));
2018-12-08 05:18:42 +00:00
if (m_dirty) {
m_termInfo.width = (hecl::GuiMode ? 120 : std::max(80, hecl::ConsoleWidth(&m_termInfo.truncate)));
MoveCursorUp(m_curThreadLines + m_curProgLines);
m_curThreadLines = m_curProgLines = 0;
if (m_newLineAfter) {
for (const ThreadStat& stat : m_threadStats) {
if (stat.m_active) {
stat.print(m_termInfo);
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\n")));
2018-12-08 05:18:42 +00:00
++m_curThreadLines;
}
}
if (m_mainIndeterminate
#ifndef _WIN32
2018-12-08 05:18:42 +00:00
&& m_termInfo.xtermColor
#endif
2018-12-08 05:18:42 +00:00
) {
DrawIndeterminateBar();
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\n")));
2018-12-08 05:18:42 +00:00
++m_curProgLines;
} else if (m_mainFactor >= 0.f) {
float factor = std::max(0.0f, std::min(1.0f, m_mainFactor));
int iFactor = factor * 100.0;
int half = m_termInfo.width - 2;
int blocks = half - 8;
int filled = blocks * factor;
int rem = blocks - filled;
if (m_termInfo.xtermColor) {
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" BOLD " {:3d}% [")), iFactor);
2018-12-08 05:18:42 +00:00
for (int b = 0; b < filled; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]" NORMAL "")));
2018-12-08 05:18:42 +00:00
} else {
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(m_termInfo.console, FOREGROUND_INTENSITY | FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR(" {:3d}% [")), iFactor);
2018-12-08 05:18:42 +00:00
for (int b = 0; b < filled; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("#")));
2018-12-08 05:18:42 +00:00
for (int b = 0; b < rem; ++b)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("-")));
fmt::print(fmt(_SYS_STR("]")));
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
SetConsoleTextAttribute(m_termInfo.console, FOREGROUND_WHITE);
2018-03-23 21:40:12 +00:00
#endif
}
2018-12-08 05:18:42 +00:00
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\n")));
2018-12-08 05:18:42 +00:00
++m_curProgLines;
}
} else if (m_latestThread != -1) {
const ThreadStat& stat = m_threadStats[m_latestThread];
stat.print(m_termInfo);
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\r")));
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
m_dirty = false;
} else if (m_mainIndeterminate
#ifndef _WIN32
&& m_termInfo.xtermColor
#endif
2018-12-08 05:18:42 +00:00
) {
m_termInfo.width = (hecl::GuiMode ? 120 : std::max(80, hecl::ConsoleWidth()));
MoveCursorUp(m_curProgLines);
m_curProgLines = 0;
DrawIndeterminateBar();
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\n")));
2018-12-08 05:18:42 +00:00
++m_curProgLines;
}
2018-03-23 21:40:12 +00:00
2018-12-08 05:18:42 +00:00
if (m_termInfo.xtermColor)
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("" SHOW_CURSOR "")));
2018-12-08 05:18:42 +00:00
fflush(stdout);
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
cursorInfo.bVisible = TRUE;
SetConsoleCursorInfo(m_termInfo.console, &cursorInfo);
2018-03-23 21:40:12 +00:00
#endif
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::LogProc() {
while (m_running) {
std::this_thread::sleep_for(std::chrono::milliseconds(100));
if (!m_dirty && !m_mainIndeterminate)
continue;
std::lock_guard<std::mutex> lk(m_logLock);
DoPrint();
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
MultiProgressPrinter::MultiProgressPrinter(bool activate) {
if (activate) {
/* Xterm check */
2018-03-23 21:40:12 +00:00
#if _WIN32
2018-12-08 05:18:42 +00:00
m_newLineAfter = true;
m_termInfo.console = GetStdHandle(STD_OUTPUT_HANDLE);
const char* conemuANSI = getenv("ConEmuANSI");
if (conemuANSI && !strcmp(conemuANSI, "ON"))
m_termInfo.xtermColor = true;
2018-03-23 21:40:12 +00:00
#else
2018-12-08 05:18:42 +00:00
m_newLineAfter = false;
const char* term = getenv("TERM");
if (term && !strncmp(term, "xterm", 5)) {
m_termInfo.xtermColor = true;
m_newLineAfter = true;
}
2018-03-23 21:40:12 +00:00
#endif
2018-12-08 05:18:42 +00:00
m_running = true;
m_logThread = std::thread(std::bind(&MultiProgressPrinter::LogProc, this));
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
MultiProgressPrinter::~MultiProgressPrinter() {
m_running = false;
if (m_logThread.joinable())
m_logThread.join();
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::print(const hecl::SystemChar* message, const hecl::SystemChar* submessage, float factor,
int threadIdx) const {
if (!m_running)
return;
std::lock_guard<std::mutex> lk(m_logLock);
if (threadIdx < 0)
threadIdx = 0;
if (threadIdx >= m_threadStats.size())
m_threadStats.resize(threadIdx + 1);
ThreadStat& stat = m_threadStats[threadIdx];
if (message)
stat.m_message = message;
else
stat.m_message.clear();
if (submessage)
stat.m_submessage = submessage;
else
stat.m_submessage.clear();
stat.m_factor = factor;
stat.m_active = true;
m_latestThread = threadIdx;
m_dirty = true;
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::setMainFactor(float factor) const {
if (!m_running)
return;
std::lock_guard<std::mutex> lk(m_logLock);
if (!m_mainIndeterminate)
m_dirty = true;
m_mainFactor = factor;
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::setMainIndeterminate(bool indeterminate) const {
if (!m_running)
return;
std::lock_guard<std::mutex> lk(m_logLock);
if (m_mainIndeterminate != indeterminate) {
m_mainIndeterminate = indeterminate;
m_dirty = true;
}
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::startNewLine() const {
if (!m_running)
return;
std::lock_guard<std::mutex> lk(m_logLock);
const_cast<MultiProgressPrinter&>(*this).DoPrint();
m_threadStats.clear();
m_latestThread = -1;
m_curThreadLines = 0;
m_mainFactor = -1.f;
auto logLk = logvisor::LockLog();
2019-07-20 04:22:58 +00:00
fmt::print(fmt(_SYS_STR("\n")));
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
void MultiProgressPrinter::flush() const {
std::lock_guard<std::mutex> lk(m_logLock);
const_cast<MultiProgressPrinter&>(*this).DoPrint();
2018-03-23 21:40:12 +00:00
}
2018-12-08 05:18:42 +00:00
} // namespace hecl