debug.h 19.9 KB
Newer Older
Kenton Varda's avatar
Kenton Varda committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
// Licensed under the MIT License:
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
21

22 23 24
// This file declares convenient macros for debug logging and error handling.  The macros make
// it excessively easy to extract useful context information from code.  Example:
//
25
//     KJ_ASSERT(a == b, a, b, "a and b must be the same.");
26 27 28 29 30 31 32 33 34
//
// On failure, this will throw an exception whose description looks like:
//
//     myfile.c++:43: bug in code: expected a == b; a = 14; b = 72; a and b must be the same.
//
// As you can see, all arguments after the first provide additional context.
//
// The macros available are:
//
35 36
// * `KJ_LOG(severity, ...)`:  Just writes a log message, to stderr by default (but you can
//   intercept messages by implementing an ExceptionCallback).  `severity` is `INFO`, `WARNING`,
37 38 39 40 41 42 43 44
//   `ERROR`, or `FATAL`.  By default, `INFO` logs are not written, but for command-line apps the
//   user should be able to pass a flag like `--verbose` to enable them.  Other log levels are
//   enabled by default.  Log messages -- like exceptions -- can be intercepted by registering an
//   ExceptionCallback.
//
// * `KJ_DBG(...)`:  Like `KJ_LOG`, but intended specifically for temporary log lines added while
//   debugging a particular problem.  Calls to `KJ_DBG` should always be deleted before committing
//   code.  It is suggested that you set up a pre-commit hook that checks for this.
45
//
46 47
// * `KJ_ASSERT(condition, ...)`:  Throws an exception if `condition` is false, or aborts if
//   exceptions are disabled.  This macro should be used to check for bugs in the surrounding code
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
//   and its dependencies, but NOT to check for invalid input.  The macro may be followed by a
//   brace-delimited code block; if so, the block will be executed in the case where the assertion
//   fails, before throwing the exception.  If control jumps out of the block (e.g. with "break",
//   "return", or "goto"), then the error is considered "recoverable" -- in this case, if
//   exceptions are disabled, execution will continue normally rather than aborting (but if
//   exceptions are enabled, an exception will still be thrown on exiting the block). A "break"
//   statement in particular will jump to the code immediately after the block (it does not break
//   any surrounding loop or switch).  Example:
//
//       KJ_ASSERT(value >= 0, "Value cannot be negative.", value) {
//         // Assertion failed.  Set value to zero to "recover".
//         value = 0;
//         // Don't abort if exceptions are disabled.  Continue normally.
//         // (Still throw an exception if they are enabled, though.)
//         break;
//       }
//       // When exceptions are disabled, we'll get here even if the assertion fails.
//       // Otherwise, we get here only if the assertion passes.
66
//
67 68
// * `KJ_REQUIRE(condition, ...)`:  Like `KJ_ASSERT` but used to check preconditions -- e.g. to
//   validate parameters passed from a caller.  A failure indicates that the caller is buggy.
69
//
70 71 72 73
// * `KJ_SYSCALL(code, ...)`:  Executes `code` assuming it makes a system call.  A negative result
//   is considered an error, with error code reported via `errno`.  EINTR is handled by retrying.
//   Other errors are handled by throwing an exception.  If you need to examine the return code,
//   assign it to a variable like so:
74 75
//
//       int fd;
76 77 78
//       KJ_SYSCALL(fd = open(filename, O_RDONLY), filename);
//
//   `KJ_SYSCALL` can be followed by a recovery block, just like `KJ_ASSERT`.
79
//
80 81 82 83 84
// * `KJ_NONBLOCKING_SYSCALL(code, ...)`:  Like KJ_SYSCALL, but will not throw an exception on
//   EAGAIN/EWOULDBLOCK.  The calling code should check the syscall's return value to see if it
//   indicates an error; in this case, it can assume the error was EAGAIN because any other error
//   would have caused an exception to be thrown.
//
85 86
// * `KJ_CONTEXT(...)`:  Notes additional contextual information relevant to any exceptions thrown
//   from within the current scope.  That is, until control exits the block in which KJ_CONTEXT()
87 88
//   is used, if any exception is generated, it will contain the given information in its context
//   chain.  This is helpful because it can otherwise be very difficult to come up with error
89 90 91
//   messages that make sense within low-level helper code.  Note that the parameters to
//   KJ_CONTEXT() are only evaluated if an exception is thrown.  This implies that any variables
//   used must remain valid until the end of the scope.
92
//
93 94 95 96 97 98 99 100 101
// Notes:
// * Do not write expressions with side-effects in the message content part of the macro, as the
//   message will not necessarily be evaluated.
// * For every macro `FOO` above except `LOG`, there is also a `FAIL_FOO` macro used to report
//   failures that already happened.  For the macros that check a boolean condition, `FAIL_FOO`
//   omits the first parameter and behaves like it was `false`.  `FAIL_SYSCALL` and
//   `FAIL_RECOVERABLE_SYSCALL` take a string and an OS error number as the first two parameters.
//   The string should be the name of the failed system call.
// * For every macro `FOO` above, there is a `DFOO` version (or `RECOVERABLE_DFOO`) which is only
102 103 104 105
//   executed in debug mode, i.e. when KJ_DEBUG is defined.  KJ_DEBUG is defined automatically
//   by common.h when compiling without optimization (unless NDEBUG is defined), but you can also
//   define it explicitly (e.g. -DKJ_DEBUG).  Generally, production builds should NOT use KJ_DEBUG
//   as it may enable expensive checks that are unlikely to fail.
106

107 108
#ifndef KJ_DEBUG_H_
#define KJ_DEBUG_H_
109

110 111 112 113
#if defined(__GNUC__) && !KJ_HEADER_WARNINGS
#pragma GCC system_header
#endif

Kenton Varda's avatar
Kenton Varda committed
114
#include "string.h"
115 116
#include "exception.h"

117 118 119 120 121
#ifdef ERROR
// This is problematic because windows.h #defines ERROR, which we use in an enum here.
#error "Make sure to to undefine ERROR (or just #include <kj/windows-sanity.h>) before this file"
#endif

122
namespace kj {
123

124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
#if _MSC_VER
// MSVC does __VA_ARGS__ differently from GCC:
// - A trailing comma before an empty __VA_ARGS__ is removed automatically, whereas GCC wants
//   you to request this behavior with "##__VA_ARGS__".
// - If __VA_ARGS__ is passed directly as an argument to another macro, it will be treated as a
//   *single* argument rather than an argument list. This can be worked around by wrapping the
//   outer macro call in KJ_EXPAND(), which appraently forces __VA_ARGS__ to be expanded before
//   the macro is evaluated. I don't understand the C preprocessor.
// - Using "#__VA_ARGS__" to stringify __VA_ARGS__ expands to zero tokens when __VA_ARGS__ is
//   empty, rather than expanding to an empty string literal. We can work around by concatenating
//   with an empty string literal.

#define KJ_EXPAND(X) X

#define KJ_LOG(severity, ...) \
  if (!::kj::_::Debug::shouldLog(::kj::_::Debug::Severity::severity)) {} else \
    ::kj::_::Debug::log(__FILE__, __LINE__, ::kj::_::Debug::Severity::severity, \
                        "" #__VA_ARGS__, __VA_ARGS__)

#define KJ_DBG(...) KJ_EXPAND(KJ_LOG(DBG, __VA_ARGS__))

145
#define KJ_REQUIRE(cond, ...) \
146
  if (KJ_LIKELY(cond)) {} else \
147
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::FAILED, \
148 149
                                 #cond, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

150
#define KJ_FAIL_REQUIRE(...) \
151
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::FAILED, \
152 153 154 155
                               nullptr, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

#define KJ_SYSCALL(call, ...) \
  if (auto _kjSyscallResult = ::kj::_::Debug::syscall([&](){return (call);}, false)) {} else \
156
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
157 158 159 160
             _kjSyscallResult.getErrorNumber(), #call, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

#define KJ_NONBLOCKING_SYSCALL(call, ...) \
  if (auto _kjSyscallResult = ::kj::_::Debug::syscall([&](){return (call);}, true)) {} else \
161
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
162 163 164
             _kjSyscallResult.getErrorNumber(), #call, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

#define KJ_FAIL_SYSCALL(code, errorNumber, ...) \
165
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
166 167
           errorNumber, code, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

168 169 170 171
#define KJ_UNIMPLEMENTED(...) \
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::UNIMPLEMENTED, \
                               nullptr, "" #__VA_ARGS__, __VA_ARGS__);; f.fatal())

172 173 174
#define KJ_CONTEXT(...) \
  auto KJ_UNIQUE_NAME(_kjContextFunc) = [&]() -> ::kj::_::Debug::Context::Value { \
        return ::kj::_::Debug::Context::Value(__FILE__, __LINE__, \
175
            ::kj::_::Debug::makeDescription("" #__VA_ARGS__, __VA_ARGS__)); \
176 177 178 179
      }; \
  ::kj::_::Debug::ContextImpl<decltype(KJ_UNIQUE_NAME(_kjContextFunc))> \
      KJ_UNIQUE_NAME(_kjContext)(KJ_UNIQUE_NAME(_kjContextFunc))

180
#define KJ_REQUIRE_NONNULL(value, ...) \
181 182 183
  (*({ \
    auto _kj_result = ::kj::_::readMaybe(value); \
    if (KJ_UNLIKELY(!_kj_result)) { \
184
      ::kj::_::Debug::Fault(__FILE__, __LINE__, 0, \
185 186 187 188
                            #value " != nullptr", "" #__VA_ARGS__, __VA_ARGS__).fatal(); \
    } \
    _kj_result; \
  }))
189 190 191 192

#define KJ_EXCEPTION(type, ...) \
  ::kj::Exception(::kj::Exception::Type::type, __FILE__, __LINE__, \
      ::kj::_::Debug::makeDescription("" #__VA_ARGS__, __VA_ARGS__))
193 194 195

#else

Kenton Varda's avatar
Kenton Varda committed
196 197 198 199 200
#define KJ_LOG(severity, ...) \
  if (!::kj::_::Debug::shouldLog(::kj::_::Debug::Severity::severity)) {} else \
    ::kj::_::Debug::log(__FILE__, __LINE__, ::kj::_::Debug::Severity::severity, \
                        #__VA_ARGS__, __VA_ARGS__)

201
#define KJ_DBG(...) KJ_LOG(DBG, ##__VA_ARGS__)
Kenton Varda's avatar
Kenton Varda committed
202

203
#define KJ_REQUIRE(cond, ...) \
204
  if (KJ_LIKELY(cond)) {} else \
205
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::FAILED, \
Kenton Varda's avatar
Kenton Varda committed
206 207
                                 #cond, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())

208
#define KJ_FAIL_REQUIRE(...) \
209
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::FAILED, \
Kenton Varda's avatar
Kenton Varda committed
210
                               nullptr, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())
211

Kenton Varda's avatar
Kenton Varda committed
212
#define KJ_SYSCALL(call, ...) \
213
  if (auto _kjSyscallResult = ::kj::_::Debug::syscall([&](){return (call);}, false)) {} else \
214
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
215 216 217 218
             _kjSyscallResult.getErrorNumber(), #call, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())

#define KJ_NONBLOCKING_SYSCALL(call, ...) \
  if (auto _kjSyscallResult = ::kj::_::Debug::syscall([&](){return (call);}, true)) {} else \
219
    for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
Kenton Varda's avatar
Kenton Varda committed
220 221
             _kjSyscallResult.getErrorNumber(), #call, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())

222
#define KJ_FAIL_SYSCALL(code, errorNumber, ...) \
223
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, \
Kenton Varda's avatar
Kenton Varda committed
224 225
           errorNumber, code, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())

226 227 228 229
#define KJ_UNIMPLEMENTED(...) \
  for (::kj::_::Debug::Fault f(__FILE__, __LINE__, ::kj::Exception::Type::UNIMPLEMENTED, \
                               nullptr, #__VA_ARGS__, ##__VA_ARGS__);; f.fatal())

Kenton Varda's avatar
Kenton Varda committed
230
#define KJ_CONTEXT(...) \
231
  auto KJ_UNIQUE_NAME(_kjContextFunc) = [&]() -> ::kj::_::Debug::Context::Value { \
Kenton Varda's avatar
Kenton Varda committed
232
        return ::kj::_::Debug::Context::Value(__FILE__, __LINE__, \
233
            ::kj::_::Debug::makeDescription(#__VA_ARGS__, ##__VA_ARGS__)); \
Kenton Varda's avatar
Kenton Varda committed
234
      }; \
235 236
  ::kj::_::Debug::ContextImpl<decltype(KJ_UNIQUE_NAME(_kjContextFunc))> \
      KJ_UNIQUE_NAME(_kjContext)(KJ_UNIQUE_NAME(_kjContextFunc))
Kenton Varda's avatar
Kenton Varda committed
237

238
#define KJ_REQUIRE_NONNULL(value, ...) \
Kenton Varda's avatar
Kenton Varda committed
239
  (*({ \
240 241
    auto _kj_result = ::kj::_::readMaybe(value); \
    if (KJ_UNLIKELY(!_kj_result)) { \
242
      ::kj::_::Debug::Fault(__FILE__, __LINE__, 0, \
243 244
                            #value " != nullptr", #__VA_ARGS__, ##__VA_ARGS__).fatal(); \
    } \
245
    _kj_result; \
Kenton Varda's avatar
Kenton Varda committed
246
  }))
247 248 249 250

#define KJ_EXCEPTION(type, ...) \
  ::kj::Exception(::kj::Exception::Type::type, __FILE__, __LINE__, \
      ::kj::_::Debug::makeDescription(#__VA_ARGS__, ##__VA_ARGS__))
251

252 253
#endif

254 255 256 257 258 259
#define KJ_ASSERT KJ_REQUIRE
#define KJ_FAIL_ASSERT KJ_FAIL_REQUIRE
#define KJ_ASSERT_NONNULL KJ_REQUIRE_NONNULL
// Use "ASSERT" in place of "REQUIRE" when the problem is local to the immediate surrounding code.
// That is, if the assert ever fails, it indicates that the immediate surrounding code is broken.

260
#ifdef KJ_DEBUG
Kenton Varda's avatar
Kenton Varda committed
261 262 263
#define KJ_DLOG LOG
#define KJ_DASSERT KJ_ASSERT
#define KJ_DREQUIRE KJ_REQUIRE
264 265 266 267
#else
#define KJ_DLOG(...) do {} while (false)
#define KJ_DASSERT(...) do {} while (false)
#define KJ_DREQUIRE(...) do {} while (false)
Kenton Varda's avatar
Kenton Varda committed
268 269 270 271 272
#endif

namespace _ {  // private

class Debug {
273
public:
Kenton Varda's avatar
Kenton Varda committed
274 275
  Debug() = delete;

276
  enum class Severity {
277 278 279
    INFO,      // Information describing what the code is up to, which users may request to see
               // with a flag like `--verbose`.  Does not indicate a problem.  Not printed by
               // default; you must call setLogLevel(INFO) to enable.
280 281
    WARNING,   // A problem was detected but execution can continue with correct output.
    ERROR,     // Something is wrong, but execution can continue with garbage output.
282
    FATAL,     // Something went wrong, and execution cannot continue.
283
    DBG        // Temporary debug logging.  See KJ_DBG.
284 285 286 287 288

    // Make sure to update the stringifier if you add a new severity level.
  };

  static inline bool shouldLog(Severity severity) { return severity >= minSeverity; }
289 290
  // Returns whether messages of the given severity should be logged.

291
  static inline void setLogLevel(Severity severity) { minSeverity = severity; }
292
  // Set the minimum message severity which will be logged.
Kenton Varda's avatar
Kenton Varda committed
293 294
  //
  // TODO(someday):  Expose publicly.
295 296

  template <typename... Params>
Kenton Varda's avatar
Kenton Varda committed
297
  static void log(const char* file, int line, Severity severity, const char* macroArgs,
298 299
                  Params&&... params);

300 301 302
  class Fault {
  public:
    template <typename... Params>
303 304 305
    Fault(const char* file, int line, Exception::Type type,
          const char* condition, const char* macroArgs, Params&&... params);
    template <typename... Params>
306
    Fault(const char* file, int line, int osErrorNumber,
307
          const char* condition, const char* macroArgs, Params&&... params);
308 309
    Fault(const char* file, int line, Exception::Type type,
          const char* condition, const char* macroArgs);
310
    Fault(const char* file, int line, int osErrorNumber,
311
          const char* condition, const char* macroArgs);
312
    ~Fault() noexcept(false);
313

314
    KJ_NORETURN(void fatal());
315
    // Throw the exception.
316

317
  private:
318 319
    void init(const char* file, int line, Exception::Type type,
              const char* condition, const char* macroArgs, ArrayPtr<String> argValues);
320
    void init(const char* file, int line, int osErrorNumber,
321
              const char* condition, const char* macroArgs, ArrayPtr<String> argValues);
322

323 324
    Exception* exception;
  };
325

326 327 328 329 330
  class SyscallResult {
  public:
    inline SyscallResult(int errorNumber): errorNumber(errorNumber) {}
    inline operator void*() { return errorNumber == 0 ? this : nullptr; }
    inline int getErrorNumber() { return errorNumber; }
331

332 333 334 335 336
  private:
    int errorNumber;
  };

  template <typename Call>
337
  static SyscallResult syscall(Call&& call, bool nonblocking);
338

339 340 341
  class Context: public ExceptionCallback {
  public:
    Context();
342
    KJ_DISALLOW_COPY(Context);
343
    virtual ~Context() noexcept(false);
344 345 346 347 348 349 350 351 352 353 354

    struct Value {
      const char* file;
      int line;
      String description;

      inline Value(const char* file, int line, String&& description)
          : file(file), line(line), description(mv(description)) {}
    };

    virtual Value evaluate() = 0;
355 356 357

    virtual void onRecoverableException(Exception&& exception) override;
    virtual void onFatalException(Exception&& exception) override;
358
    virtual void logMessage(const char* file, int line, int contextDepth, String&& text) override;
359 360

  private:
361 362 363 364
    bool logged;
    Maybe<Value> value;

    Value ensureInitialized();
365 366 367 368 369
  };

  template <typename Func>
  class ContextImpl: public Context {
  public:
370
    inline ContextImpl(Func& func): func(func) {}
371
    KJ_DISALLOW_COPY(ContextImpl);
372

373 374
    Value evaluate() override {
      return func();
375 376
    }
  private:
377
    Func& func;
378 379 380
  };

  template <typename... Params>
381
  static String makeDescription(const char* macroArgs, Params&&... params);
382

383 384 385
private:
  static Severity minSeverity;

Kenton Varda's avatar
Kenton Varda committed
386
  static void logInternal(const char* file, int line, Severity severity, const char* macroArgs,
Kenton Varda's avatar
Kenton Varda committed
387
                          ArrayPtr<String> argValues);
388
  static String makeDescriptionInternal(const char* macroArgs, ArrayPtr<String> argValues);
389

390
  static int getOsErrorNumber(bool nonblocking);
391
  // Get the error code of the last error (e.g. from errno).  Returns -1 on EINTR.
392 393
};

Kenton Varda's avatar
Kenton Varda committed
394
ArrayPtr<const char> KJ_STRINGIFY(Debug::Severity severity);
395 396

template <typename... Params>
Kenton Varda's avatar
Kenton Varda committed
397 398
void Debug::log(const char* file, int line, Severity severity, const char* macroArgs,
                Params&&... params) {
Kenton Varda's avatar
Kenton Varda committed
399
  String argValues[sizeof...(Params)] = {str(params)...};
400 401 402
  logInternal(file, line, severity, macroArgs, arrayPtr(argValues, sizeof...(Params)));
}

403 404 405 406 407
template <>
inline void Debug::log<>(const char* file, int line, Severity severity, const char* macroArgs) {
  logInternal(file, line, severity, macroArgs, nullptr);
}

408 409 410 411 412 413 414 415 416
template <typename... Params>
Debug::Fault::Fault(const char* file, int line, Exception::Type type,
                    const char* condition, const char* macroArgs, Params&&... params)
    : exception(nullptr) {
  String argValues[sizeof...(Params)] = {str(params)...};
  init(file, line, type, condition, macroArgs,
       arrayPtr(argValues, sizeof...(Params)));
}

417
template <typename... Params>
418
Debug::Fault::Fault(const char* file, int line, int osErrorNumber,
Kenton Varda's avatar
Kenton Varda committed
419
                    const char* condition, const char* macroArgs, Params&&... params)
420
    : exception(nullptr) {
Kenton Varda's avatar
Kenton Varda committed
421
  String argValues[sizeof...(Params)] = {str(params)...};
422
  init(file, line, osErrorNumber, condition, macroArgs,
423
       arrayPtr(argValues, sizeof...(Params)));
424 425
}

426
inline Debug::Fault::Fault(const char* file, int line, int osErrorNumber,
427 428
                           const char* condition, const char* macroArgs)
    : exception(nullptr) {
429
  init(file, line, osErrorNumber, condition, macroArgs, nullptr);
430 431
}

432 433 434 435 436 437
inline Debug::Fault::Fault(const char* file, int line, kj::Exception::Type type,
                           const char* condition, const char* macroArgs)
    : exception(nullptr) {
  init(file, line, type, condition, macroArgs, nullptr);
}

438
template <typename Call>
439
Debug::SyscallResult Debug::syscall(Call&& call, bool nonblocking) {
440
  while (call() < 0) {
441 442 443 444
    int errorNum = getOsErrorNumber(nonblocking);
    // getOsErrorNumber() returns -1 to indicate EINTR.
    // Also, if nonblocking is true, then it returns 0 on EAGAIN, which will then be treated as a
    // non-error.
445
    if (errorNum != -1) {
446
      return SyscallResult(errorNum);
447 448
    }
  }
449
  return SyscallResult(0);
450 451
}

452
template <typename... Params>
453
String Debug::makeDescription(const char* macroArgs, Params&&... params) {
Kenton Varda's avatar
Kenton Varda committed
454
  String argValues[sizeof...(Params)] = {str(params)...};
455
  return makeDescriptionInternal(macroArgs, arrayPtr(argValues, sizeof...(Params)));
456 457
}

458
template <>
459 460
inline String Debug::makeDescription<>(const char* macroArgs) {
  return makeDescriptionInternal(macroArgs, nullptr);
461 462
}

Kenton Varda's avatar
Kenton Varda committed
463
}  // namespace _ (private)
464
}  // namespace kj
465

466
#endif  // KJ_DEBUG_H_