1 //===----- lib/Support/Error.cpp - Error and associated utilities ---------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "llvm/Support/Error.h"
11 #include "llvm/ADT/Twine.h"
12 #include "llvm/Support/ErrorHandling.h"
13 #include "llvm/Support/ManagedStatic.h"
14 #include <system_error>
15 
16 using namespace llvm;
17 
18 namespace {
19 
20   enum class ErrorErrorCode : int {
21     MultipleErrors = 1,
22     FileError,
23     InconvertibleError
24   };
25 
26   // FIXME: This class is only here to support the transition to llvm::Error. It
27   // will be removed once this transition is complete. Clients should prefer to
28   // deal with the Error value directly, rather than converting to error_code.
29   class ErrorErrorCategory : public std::error_category {
30   public:
name() const31     const char *name() const noexcept override { return "Error"; }
32 
message(int condition) const33     std::string message(int condition) const override {
34       switch (static_cast<ErrorErrorCode>(condition)) {
35       case ErrorErrorCode::MultipleErrors:
36         return "Multiple errors";
37       case ErrorErrorCode::InconvertibleError:
38         return "Inconvertible error value. An error has occurred that could "
39                "not be converted to a known std::error_code. Please file a "
40                "bug.";
41       case ErrorErrorCode::FileError:
42           return "A file error occurred.";
43       }
44       llvm_unreachable("Unhandled error code");
45     }
46   };
47 
48 }
49 
50 static ManagedStatic<ErrorErrorCategory> ErrorErrorCat;
51 
52 namespace llvm {
53 
anchor()54 void ErrorInfoBase::anchor() {}
55 char ErrorInfoBase::ID = 0;
56 char ErrorList::ID = 0;
anchor()57 void ECError::anchor() {}
58 char ECError::ID = 0;
59 char StringError::ID = 0;
60 char FileError::ID = 0;
61 
logAllUnhandledErrors(Error E,raw_ostream & OS,Twine ErrorBanner)62 void logAllUnhandledErrors(Error E, raw_ostream &OS, Twine ErrorBanner) {
63   if (!E)
64     return;
65   OS << ErrorBanner;
66   handleAllErrors(std::move(E), [&](const ErrorInfoBase &EI) {
67     EI.log(OS);
68     OS << "\n";
69   });
70 }
71 
72 
convertToErrorCode() const73 std::error_code ErrorList::convertToErrorCode() const {
74   return std::error_code(static_cast<int>(ErrorErrorCode::MultipleErrors),
75                          *ErrorErrorCat);
76 }
77 
inconvertibleErrorCode()78 std::error_code inconvertibleErrorCode() {
79   return std::error_code(static_cast<int>(ErrorErrorCode::InconvertibleError),
80                          *ErrorErrorCat);
81 }
82 
convertToErrorCode() const83 std::error_code FileError::convertToErrorCode() const {
84   return std::error_code(static_cast<int>(ErrorErrorCode::FileError),
85                          *ErrorErrorCat);
86 }
87 
errorCodeToError(std::error_code EC)88 Error errorCodeToError(std::error_code EC) {
89   if (!EC)
90     return Error::success();
91   return Error(llvm::make_unique<ECError>(ECError(EC)));
92 }
93 
errorToErrorCode(Error Err)94 std::error_code errorToErrorCode(Error Err) {
95   std::error_code EC;
96   handleAllErrors(std::move(Err), [&](const ErrorInfoBase &EI) {
97     EC = EI.convertToErrorCode();
98   });
99   if (EC == inconvertibleErrorCode())
100     report_fatal_error(EC.message());
101   return EC;
102 }
103 
104 #if LLVM_ENABLE_ABI_BREAKING_CHECKS
fatalUncheckedError() const105 void Error::fatalUncheckedError() const {
106   dbgs() << "Program aborted due to an unhandled Error:\n";
107   if (getPtr())
108     getPtr()->log(dbgs());
109   else
110     dbgs() << "Error value was Success. (Note: Success values must still be "
111               "checked prior to being destroyed).\n";
112   abort();
113 }
114 #endif
115 
StringError(std::error_code EC,const Twine & S)116 StringError::StringError(std::error_code EC, const Twine &S)
117     : Msg(S.str()), EC(EC) {}
118 
StringError(const Twine & S,std::error_code EC)119 StringError::StringError(const Twine &S, std::error_code EC)
120     : Msg(S.str()), EC(EC), PrintMsgOnly(true) {}
121 
log(raw_ostream & OS) const122 void StringError::log(raw_ostream &OS) const {
123   if (PrintMsgOnly) {
124     OS << Msg;
125   } else {
126     OS << EC.message();
127     if (!Msg.empty())
128       OS << (" " + Msg);
129   }
130 }
131 
convertToErrorCode() const132 std::error_code StringError::convertToErrorCode() const {
133   return EC;
134 }
135 
createStringError(std::error_code EC,char const * Msg)136 Error createStringError(std::error_code EC, char const *Msg) {
137   return make_error<StringError>(Msg, EC);
138 }
139 
report_fatal_error(Error Err,bool GenCrashDiag)140 void report_fatal_error(Error Err, bool GenCrashDiag) {
141   assert(Err && "report_fatal_error called with success value");
142   std::string ErrMsg;
143   {
144     raw_string_ostream ErrStream(ErrMsg);
145     logAllUnhandledErrors(std::move(Err), ErrStream);
146   }
147   report_fatal_error(ErrMsg);
148 }
149 
150 } // end namespace llvm
151 
LLVMGetErrorTypeId(LLVMErrorRef Err)152 LLVMErrorTypeId LLVMGetErrorTypeId(LLVMErrorRef Err) {
153   return reinterpret_cast<ErrorInfoBase *>(Err)->dynamicClassID();
154 }
155 
LLVMConsumeError(LLVMErrorRef Err)156 void LLVMConsumeError(LLVMErrorRef Err) { consumeError(unwrap(Err)); }
157 
LLVMGetErrorMessage(LLVMErrorRef Err)158 char *LLVMGetErrorMessage(LLVMErrorRef Err) {
159   std::string Tmp = toString(unwrap(Err));
160   char *ErrMsg = new char[Tmp.size() + 1];
161   memcpy(ErrMsg, Tmp.data(), Tmp.size());
162   ErrMsg[Tmp.size()] = '\0';
163   return ErrMsg;
164 }
165 
LLVMDisposeErrorMessage(char * ErrMsg)166 void LLVMDisposeErrorMessage(char *ErrMsg) { delete[] ErrMsg; }
167 
LLVMGetStringErrorTypeId()168 LLVMErrorTypeId LLVMGetStringErrorTypeId() {
169   return reinterpret_cast<void *>(&StringError::ID);
170 }
171 
172 #ifndef _MSC_VER
173 namespace llvm {
174 
175 // One of these two variables will be referenced by a symbol defined in
176 // llvm-config.h. We provide a link-time (or load time for DSO) failure when
177 // there is a mismatch in the build configuration of the API client and LLVM.
178 #if LLVM_ENABLE_ABI_BREAKING_CHECKS
179 int EnableABIBreakingChecks;
180 #else
181 int DisableABIBreakingChecks;
182 #endif
183 
184 } // end namespace llvm
185 #endif
186