diff options
author | eldritch horrors <pennae@lix.systems> | 2024-07-14 23:50:16 +0200 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-07-20 12:33:49 +0000 |
commit | 0109368c3faf5516aeddde45e8dc3c33e7163838 (patch) | |
tree | f497a0354d3472be4ab7e32c111a6a57cf32aa84 /src/libmain/progress-bar.cc | |
parent | d8c09b583644105c25e3023e98ffceb75333af2e (diff) |
libutil: make basic loggers thread-safe
SimpleLogger is not fully thread-safe, and all loggers that wrap it are
also not safe accordingly. this does not affect much, but in rare cases
it can cause interleaving of messages on stderr when used with the json
or raw log formats. the fix applied here is a bit of a hack, but fixing
this properly requires rearchitecting the logger infrastructure. nested
loggers are not the most natural abstraction here, and it is biting us.
Change-Id: Ifbf34fe1e85c60e73b59faee50e7411c7b5e7c12
Diffstat (limited to 'src/libmain/progress-bar.cc')
-rw-r--r-- | src/libmain/progress-bar.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libmain/progress-bar.cc b/src/libmain/progress-bar.cc index 48a52f442..f0270df04 100644 --- a/src/libmain/progress-bar.cc +++ b/src/libmain/progress-bar.cc @@ -91,7 +91,7 @@ void ProgressBar::resume() nextWakeup = draw(*state, {}); state.wait_for(quitCV, std::chrono::milliseconds(50)); } - writeToStderr("\r\e[K"); + writeLogsToStderr("\r\e[K"); }); } @@ -124,7 +124,7 @@ void ProgressBar::log(State & state, Verbosity lvl, std::string_view s) } else { auto s2 = s + ANSI_NORMAL "\n"; if (!isTTY) s2 = filterANSIEscapes(s2, true); - writeToStderr(s2); + writeLogsToStderr(s2); } } @@ -322,9 +322,9 @@ void ProgressBar::eraseProgressDisplay(State & state) { if (printMultiline && (state.lastLines >= 1)) { // FIXME: make sure this works on windows - writeToStderr(fmt("\e[G\e[%dF\e[J", state.lastLines)); + writeLogsToStderr(fmt("\e[G\e[%dF\e[J", state.lastLines)); } else { - writeToStderr("\r\e[K"); + writeLogsToStderr("\r\e[K"); } } @@ -346,7 +346,7 @@ std::chrono::milliseconds ProgressBar::draw(State & state, const std::optional<s state.lastLines = 0; if (s != std::nullopt) - writeToStderr(filterANSIEscapes(s.value(), !isTTY) + ANSI_NORMAL "\n"); + writeLogsToStderr(filterANSIEscapes(s.value(), !isTTY) + ANSI_NORMAL "\n"); std::string line; std::string status = getStatus(state); @@ -356,7 +356,7 @@ std::chrono::milliseconds ProgressBar::draw(State & state, const std::optional<s line += "]"; } if (printMultiline && !line.empty()) { - writeToStderr(filterANSIEscapes(line, false, width) + ANSI_NORMAL "\n"); + writeLogsToStderr(filterANSIEscapes(line, false, width) + ANSI_NORMAL "\n"); state.lastLines++; } @@ -398,7 +398,7 @@ std::chrono::milliseconds ProgressBar::draw(State & state, const std::optional<s if (printMultiline) { if (state.lastLines < (height -1)) { - writeToStderr(filterANSIEscapes(activity_line, false, width) + ANSI_NORMAL "\n"); + writeLogsToStderr(filterANSIEscapes(activity_line, false, width) + ANSI_NORMAL "\n"); state.lastLines++; } else moreActivities++; } @@ -406,7 +406,7 @@ std::chrono::milliseconds ProgressBar::draw(State & state, const std::optional<s } if (printMultiline && moreActivities) - writeToStderr(fmt("And %d more...", moreActivities)); + writeLogsToStderr(fmt("And %d more...", moreActivities)); if (!printMultiline) { if (!line.empty()) { @@ -414,7 +414,7 @@ std::chrono::milliseconds ProgressBar::draw(State & state, const std::optional<s } line += activity_line; if (!line.empty()) { - writeToStderr(filterANSIEscapes(line, false, width) + ANSI_NORMAL); + writeLogsToStderr(filterANSIEscapes(line, false, width) + ANSI_NORMAL); } } |