aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/common/log.hpp
blob: cfb01a5642f0ac3348c7fb8eeea86a80aecac072 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "math-server" project.
// For details, see https://github.com/egor-tensin/math-server.
// Distributed under the MIT License.

#pragma once

#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/format.hpp>
#include <boost/system/error_code.hpp>

#include <ctime>
#include <iomanip>
#include <iostream>
#include <sstream>
#include <string>
#include <string_view>
#include <thread>
#include <utility>

namespace math::server::log {

namespace details {

inline std::thread::id get_tid() {
    return std::this_thread::get_id();
}

inline std::string get_timestamp() {
    const auto now = boost::posix_time::second_clock::universal_time();
    const auto tm = boost::posix_time::to_tm(now);
    std::ostringstream oss;
    oss << std::put_time(&tm, "%Y-%m-%d %H:%M:%S");
    return oss.str();
}

inline void log(const std::string& msg) {
    std::clog << get_timestamp() << " | " << get_tid() << " | " << msg << '\n';
}

} // namespace details

template <typename... Args>
inline void log(const std::string_view& fmt, Args&&... args) {
    details::log(boost::str((boost::format(fmt.data()) % ... % args)));
}

template <typename... Args>
inline void error(const std::string_view& fmt, Args&&... args) {
    details::log(boost::str((boost::format(fmt.data()) % ... % args)));
}

inline void error(const boost::system::error_code& ec) {
    details::log(ec.message());
}

} // namespace math::server::log