LLDB mainline
CommandReturnObject.cpp
Go to the documentation of this file.
1//===-- CommandReturnObject.cpp -------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
10
12#include "lldb/Utility/Status.h"
14
15using namespace lldb;
16using namespace lldb_private;
17
18static llvm::raw_ostream &error(Stream &strm) {
19 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Error,
20 llvm::ColorMode::Enable)
21 << "error: ";
22}
23
24static llvm::raw_ostream &warning(Stream &strm) {
25 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Warning,
26 llvm::ColorMode::Enable)
27 << "warning: ";
28}
29
30static llvm::raw_ostream &note(Stream &strm) {
31 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Note,
32 llvm::ColorMode::Enable)
33 << "note: ";
34}
35
36static void DumpStringToStreamWithNewline(Stream &strm, const std::string &s) {
37 bool add_newline = false;
38 if (!s.empty()) {
39 // We already checked for empty above, now make sure there is a newline in
40 // the error, and if there isn't one, add one.
41 strm.Write(s.c_str(), s.size());
42
43 const char last_char = *s.rbegin();
44 add_newline = last_char != '\n' && last_char != '\r';
45 }
46 if (add_newline)
47 strm.EOL();
48}
49
51 : m_out_stream(colors), m_err_stream(colors), m_colors(colors) {}
52
53void CommandReturnObject::AppendErrorWithFormat(const char *format, ...) {
55
56 if (!format)
57 return;
58 va_list args;
59 va_start(args, format);
60 StreamString sstrm;
61 sstrm.PrintfVarArg(format, args);
62 va_end(args);
63
64 const std::string &s = std::string(sstrm.GetString());
65 if (!s.empty()) {
68 }
69}
70
71void CommandReturnObject::AppendMessageWithFormat(const char *format, ...) {
72 if (!format)
73 return;
74 va_list args;
75 va_start(args, format);
76 StreamString sstrm;
77 sstrm.PrintfVarArg(format, args);
78 va_end(args);
79
80 GetOutputStream() << sstrm.GetString();
81}
82
83void CommandReturnObject::AppendNoteWithFormat(const char *format, ...) {
84 if (!format)
85 return;
86 va_list args;
87 va_start(args, format);
88 StreamString sstrm;
89 sstrm.PrintfVarArg(format, args);
90 va_end(args);
91
92 note(GetOutputStream()) << sstrm.GetString();
93}
94
95void CommandReturnObject::AppendWarningWithFormat(const char *format, ...) {
96 if (!format)
97 return;
98 va_list args;
99 va_start(args, format);
100 StreamString sstrm;
101 sstrm.PrintfVarArg(format, args);
102 va_end(args);
103
104 warning(GetErrorStream()) << sstrm.GetString();
105}
106
107void CommandReturnObject::AppendMessage(llvm::StringRef in_string) {
108 if (in_string.empty())
109 return;
110 GetOutputStream() << in_string.rtrim() << '\n';
111}
112
113void CommandReturnObject::AppendNote(llvm::StringRef in_string) {
114 if (in_string.empty())
115 return;
116 note(GetOutputStream()) << in_string.rtrim() << '\n';
117}
118
119void CommandReturnObject::AppendWarning(llvm::StringRef in_string) {
120 if (in_string.empty())
121 return;
122 warning(GetErrorStream()) << in_string.rtrim() << '\n';
123}
124
125void CommandReturnObject::AppendError(llvm::StringRef in_string) {
127 if (in_string.empty())
128 return;
129 // Workaround to deal with already fully formatted compiler diagnostics.
130 llvm::StringRef msg(in_string.rtrim());
131 msg.consume_front("error: ");
132 error(GetErrorStream()) << msg << '\n';
133}
134
138
140 // Retrieve any diagnostics.
141 error = llvm::handleErrors(std::move(error), [&](DiagnosticError &error) {
143 m_diagnostics = error.GetDetails();
144 });
145 if (error) {
146 AppendError(llvm::toString(std::move(error)));
147 }
148}
149
150std::string
152 StreamString diag_stream(m_colors);
153 RenderDiagnosticDetails(diag_stream, indent, true, m_diagnostics);
154 // Duplex the diagnostics to the secondary stream (but not inlined).
155 if (auto stream_sp = m_err_stream.GetStreamAtIndex(eImmediateStreamIndex))
156 RenderDiagnosticDetails(*stream_sp, std::nullopt, false, m_diagnostics);
157
158 return diag_stream.GetString().str();
159}
160
161std::string CommandReturnObject::GetErrorString(bool with_diagnostics) const {
162 StreamString stream(m_colors);
163 if (with_diagnostics)
164 RenderDiagnosticDetails(stream, std::nullopt, false, m_diagnostics);
165
166 lldb::StreamSP stream_sp(m_err_stream.GetStreamAtIndex(eStreamStringIndex));
167 if (stream_sp)
168 stream << std::static_pointer_cast<StreamString>(stream_sp)->GetString();
169 return stream.GetString().str();
170}
171
175
176// Similar to AppendError, but do not prepend 'Status: ' to message, and don't
177// append "\n" to the end of it.
178
179void CommandReturnObject::AppendRawError(llvm::StringRef in_string) {
181 assert(!in_string.empty() && "Expected a non-empty error message");
182 GetErrorStream() << in_string;
183}
184
186
188
192
197
199 lldb::StreamSP stream_sp;
200 stream_sp = m_out_stream.GetStreamAtIndex(eStreamStringIndex);
201 if (stream_sp)
202 static_cast<StreamString *>(stream_sp.get())->Clear();
203 stream_sp = m_err_stream.GetStreamAtIndex(eStreamStringIndex);
204 if (stream_sp)
205 static_cast<StreamString *>(stream_sp.get())->Clear();
206 m_diagnostics.clear();
210 m_interactive = true;
211}
212
216
220
222
224
228
static llvm::raw_ostream & error(Stream &strm)
static llvm::raw_ostream & warning(Stream &strm)
static void DumpStringToStreamWithNewline(Stream &strm, const std::string &s)
static llvm::raw_ostream & note(Stream &strm)
void AppendMessage(llvm::StringRef in_string)
void void AppendError(llvm::StringRef in_string)
std::string GetErrorString(bool with_diagnostics=true) const
Return the errors as a string.
void void AppendNote(llvm::StringRef in_string)
void AppendWarningWithFormat(const char *format,...) __attribute__((format(printf
bool m_interactive
If true, then the input handle from the debugger will be hooked up.
void AppendRawError(llvm::StringRef in_string)
void SetStatus(lldb::ReturnStatus status)
void AppendErrorWithFormat(const char *format,...) __attribute__((format(printf
void AppendMessageWithFormat(const char *format,...) __attribute__((format(printf
StructuredData::ObjectSP GetErrorData()
std::vector< DiagnosticDetail > m_diagnostics
void void AppendWarning(llvm::StringRef in_string)
void AppendNoteWithFormat(const char *format,...) __attribute__((format(printf
std::string GetInlineDiagnosticString(unsigned indent) const
Format any inline diagnostics with an indentation of indent.
An error handling class.
Definition Status.h:118
llvm::StringRef GetString() const
A stream class that can stream formatted output to a file.
Definition Stream.h:28
size_t Write(const void *src, size_t src_len)
Output character bytes to the stream.
Definition Stream.h:112
llvm::raw_ostream & AsRawOstream()
Returns a raw_ostream that forwards the data to this Stream object.
Definition Stream.h:400
size_t size_t PrintfVarArg(const char *format, va_list args)
Definition Stream.cpp:143
size_t EOL()
Output and End of Line character to the stream.
Definition Stream.cpp:155
std::shared_ptr< Object > ObjectSP
A class that represents a running process on the host machine.
StructuredData::ObjectSP Serialize(llvm::ArrayRef< DiagnosticDetail > details)
void RenderDiagnosticDetails(Stream &stream, std::optional< uint16_t > offset_in_command, bool show_inline, llvm::ArrayRef< DiagnosticDetail > details)
std::shared_ptr< lldb_private::Stream > StreamSP
ReturnStatus
Command Return Status Types.
@ eReturnStatusStarted
@ eReturnStatusSuccessContinuingResult
@ eReturnStatusFailed
@ eReturnStatusSuccessFinishResult