NcEngine
LogInternal.h
1#pragma once
2
3#include "ncutility/platform/SourceLocation.h"
4
5#include "fmt/format.h"
6
7#include <exception>
8#include <utility>
9
10namespace nc::detail
11{
12void LogException(const std::exception& e) noexcept;
13
14constexpr auto TrimToFilename(const char* path) noexcept -> const char*
15{
16 constexpr auto separator =
17 #if defined(_WIN32) && ! defined(__MINGW32__)
18 '\\';
19 #else
20 '/';
21 #endif
22
23 auto file = path;
24 while (*path)
25 {
26 if (*path++ == separator)
27 file = path;
28 }
29
30 return file;
31}
32} // namespace nc::detail
33
34#define NC_LOG_CAPTURE_DEFAULT_ARGS(...) \
35"NcEngine", nc::detail::TrimToFilename(NC_SOURCE_FILE), NC_SOURCE_LINE, fmt::format(__VA_ARGS__)
36
37#define NC_LOG_FMT_MSG(category, subsystem, file, line, msg) \
38(file.empty() \
39 ? fmt::format("{} [{}] {}\n", std::to_underlying(category), subsystem, msg) \
40 : fmt::format("{} [{}] {}:{}: {}\n", std::to_underlying(category), subsystem, file, line, msg) \
41)
42
43#define NC_VA_OPT_SUPPORTED_SELECT(a,b,c,...) c
44#define NC_VA_OPT_SUPPORTED_IMPL(...) NC_VA_OPT_SUPPORTED_SELECT(__VA_OPT__(,),true,false,)
45#define NC_VA_OPT_SUPPORTED NC_VA_OPT_SUPPORTED_IMPL(?)
46
47#if NC_VA_OPT_SUPPORTED
48 #define NC_OPT_EXPAND(...) __VA_OPT__(,) __VA_ARGS__
49#elif defined(__GNUC__)
50 #define NC_OPT_EXPAND(...) , ##__VA_ARGS__
51#else
52 #define NC_OPT_EXPAND(...) , __VA_ARGS__
53#endif