[Lldb-commits] [PATCH] D121502: [lldb] Use the debugger's asynchronous output stream for writing progress events.
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 14 10:31:30 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc231deb79167: [lldb] Use the debugger's asynchronous output stream for progress events. (authored by JDevlieghere).
Herald added a project: LLDB.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D121502/new/
https://reviews.llvm.org/D121502
Files:
lldb/source/Core/Debugger.cpp
Index: lldb/source/Core/Debugger.cpp
===================================================================
--- lldb/source/Core/Debugger.cpp
+++ lldb/source/Core/Debugger.cpp
@@ -1750,45 +1750,47 @@
// Determine whether the current output file is an interactive terminal with
// color support. We assume that if we support ANSI escape codes we support
// vt100 escape codes.
- File &output = GetOutputFile();
- if (!output.GetIsInteractive() || !output.GetIsTerminalWithColors())
+ File &file = GetOutputFile();
+ if (!file.GetIsInteractive() || !file.GetIsTerminalWithColors())
return;
+ StreamSP output = GetAsyncOutputStream();
+
// Print over previous line, if any.
- output.Printf("\r");
+ output->Printf("\r");
if (data->GetCompleted()) {
// Clear the current line.
- output.Printf("\x1B[2K");
- output.Flush();
+ output->Printf("\x1B[2K");
+ output->Flush();
return;
}
const bool use_color = GetUseColor();
llvm::StringRef ansi_prefix = GetShowProgressAnsiPrefix();
if (!ansi_prefix.empty())
- output.Printf(
+ output->Printf(
"%s", ansi::FormatAnsiTerminalCodes(ansi_prefix, use_color).c_str());
// Print the progress message.
std::string message = data->GetMessage();
if (data->GetTotal() != UINT64_MAX) {
- output.Printf("[%" PRIu64 "/%" PRIu64 "] %s...", data->GetCompleted(), data->GetTotal(),
- message.c_str());
+ output->Printf("[%" PRIu64 "/%" PRIu64 "] %s...", data->GetCompleted(),
+ data->GetTotal(), message.c_str());
} else {
- output.Printf("%s...", message.c_str());
+ output->Printf("%s...", message.c_str());
}
llvm::StringRef ansi_suffix = GetShowProgressAnsiSuffix();
if (!ansi_suffix.empty())
- output.Printf(
+ output->Printf(
"%s", ansi::FormatAnsiTerminalCodes(ansi_suffix, use_color).c_str());
// Clear until the end of the line.
- output.Printf("\x1B[K\r");
+ output->Printf("\x1B[K\r");
// Flush the output.
- output.Flush();
+ output->Flush();
}
bool Debugger::HasIOHandlerThread() { return m_io_handler_thread.IsJoinable(); }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D121502.415152.patch
Type: text/x-patch
Size: 2147 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220314/c27cb539/attachment.bin>
More information about the lldb-commits
mailing list