cannam@147
|
1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
cannam@147
|
2 // Licensed under the MIT License:
|
cannam@147
|
3 //
|
cannam@147
|
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
|
cannam@147
|
5 // of this software and associated documentation files (the "Software"), to deal
|
cannam@147
|
6 // in the Software without restriction, including without limitation the rights
|
cannam@147
|
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
cannam@147
|
8 // copies of the Software, and to permit persons to whom the Software is
|
cannam@147
|
9 // furnished to do so, subject to the following conditions:
|
cannam@147
|
10 //
|
cannam@147
|
11 // The above copyright notice and this permission notice shall be included in
|
cannam@147
|
12 // all copies or substantial portions of the Software.
|
cannam@147
|
13 //
|
cannam@147
|
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
cannam@147
|
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
cannam@147
|
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
cannam@147
|
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
cannam@147
|
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
cannam@147
|
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
cannam@147
|
20 // THE SOFTWARE.
|
cannam@147
|
21
|
cannam@147
|
22 #ifndef KJ_EXCEPTION_H_
|
cannam@147
|
23 #define KJ_EXCEPTION_H_
|
cannam@147
|
24
|
cannam@147
|
25 #if defined(__GNUC__) && !KJ_HEADER_WARNINGS
|
cannam@147
|
26 #pragma GCC system_header
|
cannam@147
|
27 #endif
|
cannam@147
|
28
|
cannam@147
|
29 #include "memory.h"
|
cannam@147
|
30 #include "array.h"
|
cannam@147
|
31 #include "string.h"
|
cannam@147
|
32
|
cannam@147
|
33 namespace kj {
|
cannam@147
|
34
|
cannam@147
|
35 class ExceptionImpl;
|
cannam@147
|
36
|
cannam@147
|
37 class Exception {
|
cannam@147
|
38 // Exception thrown in case of fatal errors.
|
cannam@147
|
39 //
|
cannam@147
|
40 // Actually, a subclass of this which also implements std::exception will be thrown, but we hide
|
cannam@147
|
41 // that fact from the interface to avoid #including <exception>.
|
cannam@147
|
42
|
cannam@147
|
43 public:
|
cannam@147
|
44 enum class Type {
|
cannam@147
|
45 // What kind of failure?
|
cannam@147
|
46
|
cannam@147
|
47 FAILED = 0,
|
cannam@147
|
48 // Something went wrong. This is the usual error type. KJ_ASSERT and KJ_REQUIRE throw this
|
cannam@147
|
49 // error type.
|
cannam@147
|
50
|
cannam@147
|
51 OVERLOADED = 1,
|
cannam@147
|
52 // The call failed because of a temporary lack of resources. This could be space resources
|
cannam@147
|
53 // (out of memory, out of disk space) or time resources (request queue overflow, operation
|
cannam@147
|
54 // timed out).
|
cannam@147
|
55 //
|
cannam@147
|
56 // The operation might work if tried again, but it should NOT be repeated immediately as this
|
cannam@147
|
57 // may simply exacerbate the problem.
|
cannam@147
|
58
|
cannam@147
|
59 DISCONNECTED = 2,
|
cannam@147
|
60 // The call required communication over a connection that has been lost. The callee will need
|
cannam@147
|
61 // to re-establish connections and try again.
|
cannam@147
|
62
|
cannam@147
|
63 UNIMPLEMENTED = 3
|
cannam@147
|
64 // The requested method is not implemented. The caller may wish to revert to a fallback
|
cannam@147
|
65 // approach based on other methods.
|
cannam@147
|
66
|
cannam@147
|
67 // IF YOU ADD A NEW VALUE:
|
cannam@147
|
68 // - Update the stringifier.
|
cannam@147
|
69 // - Update Cap'n Proto's RPC protocol's Exception.Type enum.
|
cannam@147
|
70 };
|
cannam@147
|
71
|
cannam@147
|
72 Exception(Type type, const char* file, int line, String description = nullptr) noexcept;
|
cannam@147
|
73 Exception(Type type, String file, int line, String description = nullptr) noexcept;
|
cannam@147
|
74 Exception(const Exception& other) noexcept;
|
cannam@147
|
75 Exception(Exception&& other) = default;
|
cannam@147
|
76 ~Exception() noexcept;
|
cannam@147
|
77
|
cannam@147
|
78 const char* getFile() const { return file; }
|
cannam@147
|
79 int getLine() const { return line; }
|
cannam@147
|
80 Type getType() const { return type; }
|
cannam@147
|
81 StringPtr getDescription() const { return description; }
|
cannam@147
|
82 ArrayPtr<void* const> getStackTrace() const { return arrayPtr(trace, traceCount); }
|
cannam@147
|
83
|
cannam@147
|
84 struct Context {
|
cannam@147
|
85 // Describes a bit about what was going on when the exception was thrown.
|
cannam@147
|
86
|
cannam@147
|
87 const char* file;
|
cannam@147
|
88 int line;
|
cannam@147
|
89 String description;
|
cannam@147
|
90 Maybe<Own<Context>> next;
|
cannam@147
|
91
|
cannam@147
|
92 Context(const char* file, int line, String&& description, Maybe<Own<Context>>&& next)
|
cannam@147
|
93 : file(file), line(line), description(mv(description)), next(mv(next)) {}
|
cannam@147
|
94 Context(const Context& other) noexcept;
|
cannam@147
|
95 };
|
cannam@147
|
96
|
cannam@147
|
97 inline Maybe<const Context&> getContext() const {
|
cannam@147
|
98 KJ_IF_MAYBE(c, context) {
|
cannam@147
|
99 return **c;
|
cannam@147
|
100 } else {
|
cannam@147
|
101 return nullptr;
|
cannam@147
|
102 }
|
cannam@147
|
103 }
|
cannam@147
|
104
|
cannam@147
|
105 void wrapContext(const char* file, int line, String&& description);
|
cannam@147
|
106 // Wraps the context in a new node. This becomes the head node returned by getContext() -- it
|
cannam@147
|
107 // is expected that contexts will be added in reverse order as the exception passes up the
|
cannam@147
|
108 // callback stack.
|
cannam@147
|
109
|
cannam@147
|
110 KJ_NOINLINE void extendTrace(uint ignoreCount);
|
cannam@147
|
111 // Append the current stack trace to the exception's trace, ignoring the first `ignoreCount`
|
cannam@147
|
112 // frames (see `getStackTrace()` for discussion of `ignoreCount`).
|
cannam@147
|
113
|
cannam@147
|
114 KJ_NOINLINE void truncateCommonTrace();
|
cannam@147
|
115 // Remove the part of the stack trace which the exception shares with the caller of this method.
|
cannam@147
|
116 // This is used by the async library to remove the async infrastructure from the stack trace
|
cannam@147
|
117 // before replacing it with the async trace.
|
cannam@147
|
118
|
cannam@147
|
119 void addTrace(void* ptr);
|
cannam@147
|
120 // Append the given pointer to the backtrace, if it is not already full. This is used by the
|
cannam@147
|
121 // async library to trace through the promise chain that led to the exception.
|
cannam@147
|
122
|
cannam@147
|
123 private:
|
cannam@147
|
124 String ownFile;
|
cannam@147
|
125 const char* file;
|
cannam@147
|
126 int line;
|
cannam@147
|
127 Type type;
|
cannam@147
|
128 String description;
|
cannam@147
|
129 Maybe<Own<Context>> context;
|
cannam@147
|
130 void* trace[32];
|
cannam@147
|
131 uint traceCount;
|
cannam@147
|
132
|
cannam@147
|
133 friend class ExceptionImpl;
|
cannam@147
|
134 };
|
cannam@147
|
135
|
cannam@147
|
136 StringPtr KJ_STRINGIFY(Exception::Type type);
|
cannam@147
|
137 String KJ_STRINGIFY(const Exception& e);
|
cannam@147
|
138
|
cannam@147
|
139 // =======================================================================================
|
cannam@147
|
140
|
cannam@147
|
141 enum class LogSeverity {
|
cannam@147
|
142 INFO, // Information describing what the code is up to, which users may request to see
|
cannam@147
|
143 // with a flag like `--verbose`. Does not indicate a problem. Not printed by
|
cannam@147
|
144 // default; you must call setLogLevel(INFO) to enable.
|
cannam@147
|
145 WARNING, // A problem was detected but execution can continue with correct output.
|
cannam@147
|
146 ERROR, // Something is wrong, but execution can continue with garbage output.
|
cannam@147
|
147 FATAL, // Something went wrong, and execution cannot continue.
|
cannam@147
|
148 DBG // Temporary debug logging. See KJ_DBG.
|
cannam@147
|
149
|
cannam@147
|
150 // Make sure to update the stringifier if you add a new severity level.
|
cannam@147
|
151 };
|
cannam@147
|
152
|
cannam@147
|
153 StringPtr KJ_STRINGIFY(LogSeverity severity);
|
cannam@147
|
154
|
cannam@147
|
155 class ExceptionCallback {
|
cannam@147
|
156 // If you don't like C++ exceptions, you may implement and register an ExceptionCallback in order
|
cannam@147
|
157 // to perform your own exception handling. For example, a reasonable thing to do is to have
|
cannam@147
|
158 // onRecoverableException() set a flag indicating that an error occurred, and then check for that
|
cannam@147
|
159 // flag just before writing to storage and/or returning results to the user. If the flag is set,
|
cannam@147
|
160 // discard whatever you have and return an error instead.
|
cannam@147
|
161 //
|
cannam@147
|
162 // ExceptionCallbacks must always be allocated on the stack. When an exception is thrown, the
|
cannam@147
|
163 // newest ExceptionCallback on the calling thread's stack is called. The default implementation
|
cannam@147
|
164 // of each method calls the next-oldest ExceptionCallback for that thread. Thus the callbacks
|
cannam@147
|
165 // behave a lot like try/catch blocks, except that they are called before any stack unwinding
|
cannam@147
|
166 // occurs.
|
cannam@147
|
167
|
cannam@147
|
168 public:
|
cannam@147
|
169 ExceptionCallback();
|
cannam@147
|
170 KJ_DISALLOW_COPY(ExceptionCallback);
|
cannam@147
|
171 virtual ~ExceptionCallback() noexcept(false);
|
cannam@147
|
172
|
cannam@147
|
173 virtual void onRecoverableException(Exception&& exception);
|
cannam@147
|
174 // Called when an exception has been raised, but the calling code has the ability to continue by
|
cannam@147
|
175 // producing garbage output. This method _should_ throw the exception, but is allowed to simply
|
cannam@147
|
176 // return if garbage output is acceptable.
|
cannam@147
|
177 //
|
cannam@147
|
178 // The global default implementation throws an exception unless the library was compiled with
|
cannam@147
|
179 // -fno-exceptions, in which case it logs an error and returns.
|
cannam@147
|
180
|
cannam@147
|
181 virtual void onFatalException(Exception&& exception);
|
cannam@147
|
182 // Called when an exception has been raised and the calling code cannot continue. If this method
|
cannam@147
|
183 // returns normally, abort() will be called. The method must throw the exception to avoid
|
cannam@147
|
184 // aborting.
|
cannam@147
|
185 //
|
cannam@147
|
186 // The global default implementation throws an exception unless the library was compiled with
|
cannam@147
|
187 // -fno-exceptions, in which case it logs an error and returns.
|
cannam@147
|
188
|
cannam@147
|
189 virtual void logMessage(LogSeverity severity, const char* file, int line, int contextDepth,
|
cannam@147
|
190 String&& text);
|
cannam@147
|
191 // Called when something wants to log some debug text. `contextDepth` indicates how many levels
|
cannam@147
|
192 // of context the message passed through; it may make sense to indent the message accordingly.
|
cannam@147
|
193 //
|
cannam@147
|
194 // The global default implementation writes the text to stderr.
|
cannam@147
|
195
|
cannam@147
|
196 enum class StackTraceMode {
|
cannam@147
|
197 FULL,
|
cannam@147
|
198 // Stringifying a stack trace will attempt to determine source file and line numbers. This may
|
cannam@147
|
199 // be expensive. For example, on Linux, this shells out to `addr2line`.
|
cannam@147
|
200 //
|
cannam@147
|
201 // This is the default in debug builds.
|
cannam@147
|
202
|
cannam@147
|
203 ADDRESS_ONLY,
|
cannam@147
|
204 // Stringifying a stack trace will only generate a list of code addresses.
|
cannam@147
|
205 //
|
cannam@147
|
206 // This is the default in release builds.
|
cannam@147
|
207
|
cannam@147
|
208 NONE
|
cannam@147
|
209 // Generating a stack trace will always return an empty array.
|
cannam@147
|
210 //
|
cannam@147
|
211 // This avoids ever unwinding the stack. On Windows in particular, the stack unwinding library
|
cannam@147
|
212 // has been observed to be pretty slow, so exception-heavy code might benefit significantly
|
cannam@147
|
213 // from this setting. (But exceptions should be rare...)
|
cannam@147
|
214 };
|
cannam@147
|
215
|
cannam@147
|
216 virtual StackTraceMode stackTraceMode();
|
cannam@147
|
217 // Returns the current preferred stack trace mode.
|
cannam@147
|
218
|
cannam@147
|
219 protected:
|
cannam@147
|
220 ExceptionCallback& next;
|
cannam@147
|
221
|
cannam@147
|
222 private:
|
cannam@147
|
223 ExceptionCallback(ExceptionCallback& next);
|
cannam@147
|
224
|
cannam@147
|
225 class RootExceptionCallback;
|
cannam@147
|
226 friend ExceptionCallback& getExceptionCallback();
|
cannam@147
|
227 };
|
cannam@147
|
228
|
cannam@147
|
229 ExceptionCallback& getExceptionCallback();
|
cannam@147
|
230 // Returns the current exception callback.
|
cannam@147
|
231
|
cannam@147
|
232 KJ_NOINLINE KJ_NORETURN(void throwFatalException(kj::Exception&& exception, uint ignoreCount = 0));
|
cannam@147
|
233 // Invoke the exception callback to throw the given fatal exception. If the exception callback
|
cannam@147
|
234 // returns, abort.
|
cannam@147
|
235
|
cannam@147
|
236 KJ_NOINLINE void throwRecoverableException(kj::Exception&& exception, uint ignoreCount = 0);
|
cannam@147
|
237 // Invoke the exception callback to throw the given recoverable exception. If the exception
|
cannam@147
|
238 // callback returns, return normally.
|
cannam@147
|
239
|
cannam@147
|
240 // =======================================================================================
|
cannam@147
|
241
|
cannam@147
|
242 namespace _ { class Runnable; }
|
cannam@147
|
243
|
cannam@147
|
244 template <typename Func>
|
cannam@147
|
245 Maybe<Exception> runCatchingExceptions(Func&& func) noexcept;
|
cannam@147
|
246 // Executes the given function (usually, a lambda returning nothing) catching any exceptions that
|
cannam@147
|
247 // are thrown. Returns the Exception if there was one, or null if the operation completed normally.
|
cannam@147
|
248 // Non-KJ exceptions will be wrapped.
|
cannam@147
|
249 //
|
cannam@147
|
250 // If exception are disabled (e.g. with -fno-exceptions), this will still detect whether any
|
cannam@147
|
251 // recoverable exceptions occurred while running the function and will return those.
|
cannam@147
|
252
|
cannam@147
|
253 class UnwindDetector {
|
cannam@147
|
254 // Utility for detecting when a destructor is called due to unwind. Useful for:
|
cannam@147
|
255 // - Avoiding throwing exceptions in this case, which would terminate the program.
|
cannam@147
|
256 // - Detecting whether to commit or roll back a transaction.
|
cannam@147
|
257 //
|
cannam@147
|
258 // To use this class, either inherit privately from it or declare it as a member. The detector
|
cannam@147
|
259 // works by comparing the exception state against that when the constructor was called, so for
|
cannam@147
|
260 // an object that was actually constructed during exception unwind, it will behave as if no
|
cannam@147
|
261 // unwind is taking place. This is usually the desired behavior.
|
cannam@147
|
262
|
cannam@147
|
263 public:
|
cannam@147
|
264 UnwindDetector();
|
cannam@147
|
265
|
cannam@147
|
266 bool isUnwinding() const;
|
cannam@147
|
267 // Returns true if the current thread is in a stack unwind that it wasn't in at the time the
|
cannam@147
|
268 // object was constructed.
|
cannam@147
|
269
|
cannam@147
|
270 template <typename Func>
|
cannam@147
|
271 void catchExceptionsIfUnwinding(Func&& func) const;
|
cannam@147
|
272 // Runs the given function (e.g., a lambda). If isUnwinding() is true, any exceptions are
|
cannam@147
|
273 // caught and treated as secondary faults, meaning they are considered to be side-effects of the
|
cannam@147
|
274 // exception that is unwinding the stack. Otherwise, exceptions are passed through normally.
|
cannam@147
|
275
|
cannam@147
|
276 private:
|
cannam@147
|
277 uint uncaughtCount;
|
cannam@147
|
278
|
cannam@147
|
279 void catchExceptionsAsSecondaryFaults(_::Runnable& runnable) const;
|
cannam@147
|
280 };
|
cannam@147
|
281
|
cannam@147
|
282 namespace _ { // private
|
cannam@147
|
283
|
cannam@147
|
284 class Runnable {
|
cannam@147
|
285 public:
|
cannam@147
|
286 virtual void run() = 0;
|
cannam@147
|
287 };
|
cannam@147
|
288
|
cannam@147
|
289 template <typename Func>
|
cannam@147
|
290 class RunnableImpl: public Runnable {
|
cannam@147
|
291 public:
|
cannam@147
|
292 RunnableImpl(Func&& func): func(kj::mv(func)) {}
|
cannam@147
|
293 void run() override {
|
cannam@147
|
294 func();
|
cannam@147
|
295 }
|
cannam@147
|
296 private:
|
cannam@147
|
297 Func func;
|
cannam@147
|
298 };
|
cannam@147
|
299
|
cannam@147
|
300 Maybe<Exception> runCatchingExceptions(Runnable& runnable) noexcept;
|
cannam@147
|
301
|
cannam@147
|
302 } // namespace _ (private)
|
cannam@147
|
303
|
cannam@147
|
304 template <typename Func>
|
cannam@147
|
305 Maybe<Exception> runCatchingExceptions(Func&& func) noexcept {
|
cannam@147
|
306 _::RunnableImpl<Decay<Func>> runnable(kj::fwd<Func>(func));
|
cannam@147
|
307 return _::runCatchingExceptions(runnable);
|
cannam@147
|
308 }
|
cannam@147
|
309
|
cannam@147
|
310 template <typename Func>
|
cannam@147
|
311 void UnwindDetector::catchExceptionsIfUnwinding(Func&& func) const {
|
cannam@147
|
312 if (isUnwinding()) {
|
cannam@147
|
313 _::RunnableImpl<Decay<Func>> runnable(kj::fwd<Func>(func));
|
cannam@147
|
314 catchExceptionsAsSecondaryFaults(runnable);
|
cannam@147
|
315 } else {
|
cannam@147
|
316 func();
|
cannam@147
|
317 }
|
cannam@147
|
318 }
|
cannam@147
|
319
|
cannam@147
|
320 #define KJ_ON_SCOPE_SUCCESS(code) \
|
cannam@147
|
321 ::kj::UnwindDetector KJ_UNIQUE_NAME(_kjUnwindDetector); \
|
cannam@147
|
322 KJ_DEFER(if (!KJ_UNIQUE_NAME(_kjUnwindDetector).isUnwinding()) { code; })
|
cannam@147
|
323 // Runs `code` if the current scope is exited normally (not due to an exception).
|
cannam@147
|
324
|
cannam@147
|
325 #define KJ_ON_SCOPE_FAILURE(code) \
|
cannam@147
|
326 ::kj::UnwindDetector KJ_UNIQUE_NAME(_kjUnwindDetector); \
|
cannam@147
|
327 KJ_DEFER(if (KJ_UNIQUE_NAME(_kjUnwindDetector).isUnwinding()) { code; })
|
cannam@147
|
328 // Runs `code` if the current scope is exited due to an exception.
|
cannam@147
|
329
|
cannam@147
|
330 // =======================================================================================
|
cannam@147
|
331
|
cannam@147
|
332 KJ_NOINLINE ArrayPtr<void* const> getStackTrace(ArrayPtr<void*> space, uint ignoreCount);
|
cannam@147
|
333 // Attempt to get the current stack trace, returning a list of pointers to instructions. The
|
cannam@147
|
334 // returned array is a slice of `space`. Provide a larger `space` to get a deeper stack trace.
|
cannam@147
|
335 // If the platform doesn't support stack traces, returns an empty array.
|
cannam@147
|
336 //
|
cannam@147
|
337 // `ignoreCount` items will be truncated from the front of the trace. This is useful for chopping
|
cannam@147
|
338 // off a prefix of the trace that is uninteresting to the developer because it's just locations
|
cannam@147
|
339 // inside the debug infrastructure that is requesting the trace. Be careful to mark functions as
|
cannam@147
|
340 // KJ_NOINLINE if you intend to count them in `ignoreCount`. Note that, unfortunately, the
|
cannam@147
|
341 // ignored entries will still waste space in the `space` array (and the returned array's `begin()`
|
cannam@147
|
342 // is never exactly equal to `space.begin()` due to this effect, even if `ignoreCount` is zero
|
cannam@147
|
343 // since `getStackTrace()` needs to ignore its own internal frames).
|
cannam@147
|
344
|
cannam@147
|
345 String stringifyStackTrace(ArrayPtr<void* const>);
|
cannam@147
|
346 // Convert the stack trace to a string with file names and line numbers. This may involve executing
|
cannam@147
|
347 // suprocesses.
|
cannam@147
|
348
|
cannam@147
|
349 String getStackTrace();
|
cannam@147
|
350 // Get a stack trace right now and stringify it. Useful for debugging.
|
cannam@147
|
351
|
cannam@147
|
352 void printStackTraceOnCrash();
|
cannam@147
|
353 // Registers signal handlers on common "crash" signals like SIGSEGV that will (attempt to) print
|
cannam@147
|
354 // a stack trace. You should call this as early as possible on program startup. Programs using
|
cannam@147
|
355 // KJ_MAIN get this automatically.
|
cannam@147
|
356
|
cannam@147
|
357 kj::StringPtr trimSourceFilename(kj::StringPtr filename);
|
cannam@147
|
358 // Given a source code file name, trim off noisy prefixes like "src/" or
|
cannam@147
|
359 // "/ekam-provider/canonical/".
|
cannam@147
|
360
|
cannam@147
|
361 } // namespace kj
|
cannam@147
|
362
|
cannam@147
|
363 #endif // KJ_EXCEPTION_H_
|