[Lldb-commits] [PATCH] D122025: [lldb] Remove lldbassert from CommandInterpreter::PrintCommandOutput
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 22 20:57:32 PDT 2022
JDevlieghere updated this revision to Diff 417483.
JDevlieghere added a comment.
Use `StringRef::split`
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122025/new/
https://reviews.llvm.org/D122025
Files:
lldb/source/Interpreter/CommandInterpreter.cpp
Index: lldb/source/Interpreter/CommandInterpreter.cpp
===================================================================
--- lldb/source/Interpreter/CommandInterpreter.cpp
+++ lldb/source/Interpreter/CommandInterpreter.cpp
@@ -2982,24 +2982,18 @@
lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP()
: io_handler.GetErrorStreamFileSP();
// Split the output into lines and poll for interrupt requests
- const char *data = str.data();
size_t size = str.size();
while (size > 0 && !WasInterrupted()) {
- size_t chunk_size = 0;
- for (; chunk_size < size; ++chunk_size) {
- lldbassert(data[chunk_size] != '\0');
- if (data[chunk_size] == '\n') {
- ++chunk_size;
- break;
- }
- }
+ llvm::StringRef line;
+ size_t written = 0;
+ std::tie(line, str) = str.split('\n');
{
std::lock_guard<std::recursive_mutex> guard(io_handler.GetOutputMutex());
- chunk_size = stream->Write(data, chunk_size);
+ written += stream->Write(line.data(), line.size());
+ written += stream->Write("\n", 1);
}
- lldbassert(size >= chunk_size);
- data += chunk_size;
- size -= chunk_size;
+ lldbassert(size >= written);
+ size -= written;
}
std::lock_guard<std::recursive_mutex> guard(io_handler.GetOutputMutex());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D122025.417483.patch
Type: text/x-patch
Size: 1362 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20220323/b7770389/attachment-0001.bin>
More information about the lldb-commits
mailing list