lokinet/llarp/util/logging/logger_internal.hpp

65 lines
1.6 KiB
C++
Raw Normal View History

#pragma once
2019-04-11 12:58:23 +00:00
#include <llarp/util/time.hpp>
2019-07-16 22:55:58 +00:00
2019-04-11 12:58:23 +00:00
#include <ctime>
2019-07-16 22:55:58 +00:00
#include <sstream>
#include <llarp/util/thread/threading.hpp>
#include <type_traits>
2019-04-11 12:58:23 +00:00
namespace llarp
{
/** internal */
// true if T is the same as any of V...
template <typename T, typename... V>
constexpr bool is_same_any_v = (std::is_same_v<T, V> || ...);
template <typename TArg, typename... TArgs>
2019-04-11 12:58:23 +00:00
void
LogAppend(std::ostringstream& ss, TArg&& arg, TArgs&&... args) noexcept
2019-04-11 12:58:23 +00:00
{
// If you are logging a char/unsigned char/uint8_t then promote it to an integer so that we
// print numeric values rather than std::ostream's default of printing it as a raw char.
using PlainT = std::remove_reference_t<TArg>;
if constexpr (is_same_any_v<PlainT, char, unsigned char, signed char, uint8_t>)
ss << +std::forward<TArg>(arg); // Promote to int
else if constexpr (std::is_same_v<PlainT, std::byte>)
ss << std::to_integer<int>(arg);
else
ss << std::forward<TArg>(arg);
2021-03-26 14:18:39 +00:00
if constexpr (sizeof...(TArgs) > 0)
LogAppend(ss, std::forward<TArgs>(args)...);
2019-04-11 12:58:23 +00:00
}
2019-07-16 22:55:58 +00:00
inline std::string
2019-04-11 12:58:23 +00:00
thread_id_string()
{
auto tid = std::this_thread::get_id();
std::hash<std::thread::id> h;
2019-04-11 12:58:23 +00:00
uint16_t id = h(tid) % 1000;
#if defined(ANDROID)
2019-04-11 12:58:23 +00:00
char buff[8] = {0};
snprintf(buff, sizeof(buff), "%u", id);
return buff;
#else
return std::to_string(id);
#endif
}
struct log_timestamp
{
const char* format;
2019-06-10 13:20:48 +00:00
const llarp_time_t now;
const llarp_time_t delta;
2019-04-11 12:58:23 +00:00
2019-06-10 13:20:48 +00:00
log_timestamp();
2019-04-11 12:58:23 +00:00
2019-06-10 13:20:48 +00:00
explicit log_timestamp(const char* fmt);
2019-05-18 15:34:03 +00:00
};
std::ostream&
operator<<(std::ostream& out, const log_timestamp& ts);
2019-04-11 12:58:23 +00:00
} // namespace llarp