blob: b11a3db64e6d2492fdb07e3198106afbfd39511b [file] [log] [blame]
Zachary Turner97206d52017-05-12 04:51:55 +00001//===-- Status.cpp -----------------------------------------------*- C++
2//-*-===//
Chris Lattner30fdc8d2010-06-08 16:52:24 +00003//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
Zachary Turner97206d52017-05-12 04:51:55 +000011#include "lldb/Utility/Status.h"
Zachary Turner4479ac12017-04-06 18:12:24 +000012
13#include "lldb/Utility/VASPrintf.h"
Pavel Labath10c41f32017-06-06 14:06:17 +000014#include "lldb/lldb-defines.h" // for LLDB_GENERIC_ERROR
15#include "lldb/lldb-enumerations.h" // for ErrorType, ErrorType::eErr...
16#include "llvm/ADT/SmallString.h" // for SmallString
17#include "llvm/ADT/StringRef.h" // for StringRef
18#include "llvm/Support/Errno.h"
Zachary Turner4479ac12017-04-06 18:12:24 +000019#include "llvm/Support/FormatProviders.h" // for format_provider
20
21#include <cerrno>
22#include <cstdarg>
23#include <string> // for string
24#include <system_error>
25
Charles Davis322fc842013-08-27 06:13:56 +000026#ifdef __APPLE__
Charles Davis510938e2013-08-27 05:04:57 +000027#include <mach/mach.h>
Charles Davis322fc842013-08-27 06:13:56 +000028#endif
Chris Lattner30fdc8d2010-06-08 16:52:24 +000029
Zachary Turner4479ac12017-04-06 18:12:24 +000030#include <stdint.h> // for uint32_t
Eugene Zelenkoa74f37a2016-03-10 23:57:12 +000031
Zachary Turner4479ac12017-04-06 18:12:24 +000032namespace llvm {
33class raw_ostream;
34}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000035
Chris Lattner30fdc8d2010-06-08 16:52:24 +000036using namespace lldb;
37using namespace lldb_private;
38
Zachary Turner97206d52017-05-12 04:51:55 +000039Status::Status() : m_code(0), m_type(eErrorTypeInvalid), m_string() {}
Greg Claytonca512b32011-01-14 04:54:56 +000040
Zachary Turner97206d52017-05-12 04:51:55 +000041Status::Status(ValueType err, ErrorType type)
Kate Stoneb9c1b512016-09-06 20:57:50 +000042 : m_code(err), m_type(type), m_string() {}
Greg Claytonca512b32011-01-14 04:54:56 +000043
Zachary Turner97206d52017-05-12 04:51:55 +000044Status::Status(std::error_code EC)
Zachary Turner7d86ee52017-03-08 17:56:08 +000045 : m_code(EC.value()), m_type(ErrorType::eErrorTypeGeneric),
46 m_string(EC.message()) {}
47
Zachary Turner97206d52017-05-12 04:51:55 +000048Status::Status(const Status &rhs) = default;
Greg Claytonca512b32011-01-14 04:54:56 +000049
Zachary Turner97206d52017-05-12 04:51:55 +000050Status::Status(const char *format, ...)
Kate Stoneb9c1b512016-09-06 20:57:50 +000051 : m_code(0), m_type(eErrorTypeInvalid), m_string() {
52 va_list args;
53 va_start(args, format);
54 SetErrorToGenericError();
55 SetErrorStringWithVarArg(format, args);
56 va_end(args);
Enrico Granataf2bbf712011-07-15 02:26:42 +000057}
58
Pavel Labath3adc4082017-06-15 11:23:26 +000059const Status &Status::operator=(llvm::Error error) {
60 if (!error) {
61 Clear();
62 return *this;
63 }
Pavel Labatha24a3a32017-05-18 12:46:50 +000064
65 // if the error happens to be a errno error, preserve the error code
66 error = llvm::handleErrors(
67 std::move(error), [&](std::unique_ptr<llvm::ECError> e) -> llvm::Error {
68 std::error_code ec = e->convertToErrorCode();
69 if (ec.category() == std::generic_category()) {
70 m_code = ec.value();
71 m_type = ErrorType::eErrorTypePOSIX;
72 return llvm::Error::success();
73 }
74 return llvm::Error(std::move(e));
75 });
76
77 // Otherwise, just preserve the message
Pavel Labath3adc4082017-06-15 11:23:26 +000078 if (error) {
79 SetErrorToGenericError();
Pavel Labatha24a3a32017-05-18 12:46:50 +000080 SetErrorString(llvm::toString(std::move(error)));
Pavel Labath3adc4082017-06-15 11:23:26 +000081 }
82
83 return *this;
Pavel Labatha24a3a32017-05-18 12:46:50 +000084}
85
86llvm::Error Status::ToError() const {
87 if (Success())
88 return llvm::Error::success();
89 if (m_type == ErrorType::eErrorTypePOSIX)
90 return llvm::errorCodeToError(std::error_code(m_code, std::generic_category()));
91 return llvm::make_error<llvm::StringError>(AsCString(),
92 llvm::inconvertibleErrorCode());
93}
94
Chris Lattner30fdc8d2010-06-08 16:52:24 +000095//----------------------------------------------------------------------
96// Assignment operator
97//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +000098const Status &Status::operator=(const Status &rhs) {
Kate Stoneb9c1b512016-09-06 20:57:50 +000099 if (this != &rhs) {
100 m_code = rhs.m_code;
101 m_type = rhs.m_type;
102 m_string = rhs.m_string;
103 }
104 return *this;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000105}
106
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000107//----------------------------------------------------------------------
108// Assignment operator
109//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000110const Status &Status::operator=(uint32_t err) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000111 m_code = err;
112 m_type = eErrorTypeMachKernel;
113 m_string.clear();
114 return *this;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000115}
116
Zachary Turner97206d52017-05-12 04:51:55 +0000117Status::~Status() = default;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000118
119//----------------------------------------------------------------------
120// Get the error value as a NULL C string. The error string will be
121// fetched and cached on demand. The cached error string value will
122// remain until the error value is changed or cleared.
123//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000124const char *Status::AsCString(const char *default_error_str) const {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000125 if (Success())
126 return nullptr;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000127
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128 if (m_string.empty()) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000129 switch (m_type) {
130 case eErrorTypeMachKernel:
131#if defined(__APPLE__)
Pavel Labath10c41f32017-06-06 14:06:17 +0000132 if (const char *s = ::mach_error_string(m_code))
133 m_string.assign(s);
Eli Friedman6eb685c2010-06-10 23:45:58 +0000134#endif
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000136
Kate Stoneb9c1b512016-09-06 20:57:50 +0000137 case eErrorTypePOSIX:
Pavel Labath10c41f32017-06-06 14:06:17 +0000138 m_string = llvm::sys::StrError(m_code);
Kate Stoneb9c1b512016-09-06 20:57:50 +0000139 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000140
Kate Stoneb9c1b512016-09-06 20:57:50 +0000141 default:
142 break;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000143 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000144 }
145 if (m_string.empty()) {
146 if (default_error_str)
147 m_string.assign(default_error_str);
148 else
149 return nullptr; // User wanted a nullptr string back...
150 }
151 return m_string.c_str();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000152}
153
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000154//----------------------------------------------------------------------
155// Clear the error and any cached error string that it might contain.
156//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000157void Status::Clear() {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000158 m_code = 0;
159 m_type = eErrorTypeInvalid;
160 m_string.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000161}
162
163//----------------------------------------------------------------------
164// Access the error value.
165//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000166Status::ValueType Status::GetError() const { return m_code; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000167
168//----------------------------------------------------------------------
169// Access the error type.
170//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000171ErrorType Status::GetType() const { return m_type; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000172
173//----------------------------------------------------------------------
Ed Maste75500e72016-07-19 15:28:02 +0000174// Returns true if this object contains a value that describes an
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000175// error or otherwise non-success result.
176//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000177bool Status::Fail() const { return m_code != 0; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000178
179//----------------------------------------------------------------------
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000180// Set accesssor for the error value to "err" and the type to
181// "eErrorTypeMachKernel"
182//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000183void Status::SetMachError(uint32_t err) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000184 m_code = err;
185 m_type = eErrorTypeMachKernel;
186 m_string.clear();
187}
188
Zachary Turner97206d52017-05-12 04:51:55 +0000189void Status::SetExpressionError(lldb::ExpressionResults result,
190 const char *mssg) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000191 m_code = result;
192 m_type = eErrorTypeExpression;
193 m_string = mssg;
194}
195
Zachary Turner97206d52017-05-12 04:51:55 +0000196int Status::SetExpressionErrorWithFormat(lldb::ExpressionResults result,
197 const char *format, ...) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000198 int length = 0;
199
200 if (format != nullptr && format[0]) {
201 va_list args;
202 va_start(args, format);
203 length = SetErrorStringWithVarArg(format, args);
204 va_end(args);
205 } else {
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000206 m_string.clear();
Kate Stoneb9c1b512016-09-06 20:57:50 +0000207 }
208 m_code = result;
209 m_type = eErrorTypeExpression;
210 return length;
Jim Ingham1624a2d2014-05-05 02:26:40 +0000211}
212
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000213//----------------------------------------------------------------------
214// Set accesssor for the error value and type.
215//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000216void Status::SetError(ValueType err, ErrorType type) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000217 m_code = err;
218 m_type = type;
219 m_string.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000220}
221
222//----------------------------------------------------------------------
223// Update the error value to be "errno" and update the type to
224// be "POSIX".
225//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000226void Status::SetErrorToErrno() {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000227 m_code = errno;
228 m_type = eErrorTypePOSIX;
229 m_string.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000230}
231
232//----------------------------------------------------------------------
233// Update the error value to be LLDB_GENERIC_ERROR and update the type
234// to be "Generic".
235//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000236void Status::SetErrorToGenericError() {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000237 m_code = LLDB_GENERIC_ERROR;
238 m_type = eErrorTypeGeneric;
239 m_string.clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000240}
241
242//----------------------------------------------------------------------
243// Set accessor for the error string value for a specific error.
244// This allows any string to be supplied as an error explanation.
245// The error string value will remain until the error value is
246// cleared or a new error value/type is assigned.
247//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000248void Status::SetErrorString(llvm::StringRef err_str) {
Zachary Turnerc1564272016-11-16 21:15:24 +0000249 if (!err_str.empty()) {
250 // If we have an error string, we should always at least have an error
251 // set to a generic value.
Kate Stoneb9c1b512016-09-06 20:57:50 +0000252 if (Success())
253 SetErrorToGenericError();
Zachary Turnerc1564272016-11-16 21:15:24 +0000254 }
255 m_string = err_str;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000256}
257
258//------------------------------------------------------------------
259/// Set the current error string to a formatted error string.
260///
261/// @param format
262/// A printf style format string
263//------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000264int Status::SetErrorStringWithFormat(const char *format, ...) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000265 if (format != nullptr && format[0]) {
266 va_list args;
267 va_start(args, format);
268 int length = SetErrorStringWithVarArg(format, args);
269 va_end(args);
270 return length;
271 } else {
272 m_string.clear();
273 }
274 return 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000275}
276
Zachary Turner97206d52017-05-12 04:51:55 +0000277int Status::SetErrorStringWithVarArg(const char *format, va_list args) {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000278 if (format != nullptr && format[0]) {
279 // If we have an error string, we should always at least have
280 // an error set to a generic value.
281 if (Success())
282 SetErrorToGenericError();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000283
Zachary Turner24ae6292017-02-16 19:38:21 +0000284 llvm::SmallString<1024> buf;
285 VASprintf(buf, format, args);
Pavel Labatha272fa82017-02-17 10:19:46 +0000286 m_string = buf.str();
Zachary Turner24ae6292017-02-16 19:38:21 +0000287 return buf.size();
Kate Stoneb9c1b512016-09-06 20:57:50 +0000288 } else {
289 m_string.clear();
290 }
291 return 0;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000292}
293
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000294//----------------------------------------------------------------------
295// Returns true if the error code in this object is considered a
296// successful return value.
297//----------------------------------------------------------------------
Zachary Turner97206d52017-05-12 04:51:55 +0000298bool Status::Success() const { return m_code == 0; }
Jim Ingham4e5c8212013-06-07 22:09:53 +0000299
Zachary Turner97206d52017-05-12 04:51:55 +0000300bool Status::WasInterrupted() const {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000301 return (m_type == eErrorTypePOSIX && m_code == EINTR);
Jim Ingham4e5c8212013-06-07 22:09:53 +0000302}
Zachary Turner33aba3c2017-02-06 18:31:44 +0000303
Zachary Turner97206d52017-05-12 04:51:55 +0000304void llvm::format_provider<lldb_private::Status>::format(
305 const lldb_private::Status &error, llvm::raw_ostream &OS,
Zachary Turner33aba3c2017-02-06 18:31:44 +0000306 llvm::StringRef Options) {
307 llvm::format_provider<llvm::StringRef>::format(error.AsCString(), OS,
308 Options);
309}