[Lldb-commits] [PATCH] D128768: [lldb/Core] Fix finite progress event reporting
Med Ismail Bennani via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jun 29 11:44:40 PDT 2022
mib updated this revision to Diff 441110.
mib added a comment.
Log only when verbose mode is enabled
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D128768/new/
https://reviews.llvm.org/D128768
Files:
lldb/source/Core/Debugger.cpp
Index: lldb/source/Core/Debugger.cpp
===================================================================
--- lldb/source/Core/Debugger.cpp
+++ lldb/source/Core/Debugger.cpp
@@ -1835,10 +1835,26 @@
// going to show the progress.
const uint64_t id = data->GetID();
if (m_current_event_id) {
+ Log *log = GetLog(LLDBLog::Events);
+ if (log && log->GetVerbose()) {
+ if (data->IsFinite())
+ LLDB_LOGF(log,
+ "%p Debugger('%llu')::HandleProgressEvent "
+ "(m_current_event_id = {%llu}, data = {id = %llu, message = "
+ "%s, completed = %llu, total = %llu})",
+ static_cast<void *>(this), m_uid, *m_current_event_id, id,
+ data->GetMessage().data(), data->GetCompleted(),
+ data->GetTotal());
+ else
+ LLDB_LOGF(
+ log,
+ "%p Debugger('%llu')::HandleProgressEvent (m_current_event_id = "
+ "{%llu}, data = {id = %llu, message = %s, infinite = true})",
+ static_cast<void *>(this), m_uid, *m_current_event_id, id,
+ data->GetMessage().data());
+ }
if (id != *m_current_event_id)
return;
- if (data->GetCompleted())
- m_current_event_id.reset();
} else {
m_current_event_id = id;
}
@@ -1860,8 +1876,9 @@
// Print over previous line, if any.
output->Printf("\r");
- if (data->GetCompleted()) {
+ if (data->GetCompleted() == data->GetTotal()) {
// Clear the current line.
+ m_current_event_id.reset();
output->Printf("\x1B[2K");
output->Flush();
return;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D128768.441110.patch
Type: text/x-patch
Size: 1607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220629/1df65d4f/attachment.bin>
More information about the lldb-commits
mailing list