Phew, a lot of classes were affected by this. The rationale for the changes are as follows: - When a type X declares any constructor, the default constructor is not declared, so there is no need for X() = delete there. In fact, there is brutal difference between those two: deleted members participate in overload resolution, but not-declared members do not! - When a type X wants to be non-copyable (e.g. to be only movable, like threads, unique_ptrs, and so on), you can either do it by inheriting from boost::noncopyable (the old way), or better declare both (!) the copy constructor _and_ the copy assignment operator as deleted: X(X const&) = delete; X& operator=(X const&) = delete; We had tons of types with deleted copy constructors that were lacking a corresponding deleted copy assignment operator, making them still copyable and you wouldn't even notice (read: scary)! References: - http://accu.org/content/conf2014/Howard_Hinnant_Accu_2014.pdf - http://www.boost.org/doc/libs/master/libs/core/doc/html/core/noncopyable.html Note: I know, I'm quoting Hinnant's extraordinary slides a lot, but getting the sematic right here is so incredibly important.
56 lines
788 B
C++
56 lines
788 B
C++
#ifndef SIMPLE_LOGGER_HPP
|
|
#define SIMPLE_LOGGER_HPP
|
|
|
|
#include <atomic>
|
|
#include <mutex>
|
|
#include <sstream>
|
|
|
|
enum LogLevel
|
|
{
|
|
logINFO,
|
|
logWARNING,
|
|
logDEBUG
|
|
};
|
|
|
|
namespace osrm
|
|
{
|
|
namespace util
|
|
{
|
|
|
|
class LogPolicy
|
|
{
|
|
public:
|
|
void Unmute();
|
|
|
|
void Mute();
|
|
|
|
bool IsMute() const;
|
|
|
|
static LogPolicy &GetInstance();
|
|
|
|
LogPolicy(const LogPolicy &) = delete;
|
|
LogPolicy &operator=(const LogPolicy &) = delete;
|
|
|
|
private:
|
|
LogPolicy() : m_is_mute(true) {}
|
|
std::atomic<bool> m_is_mute;
|
|
};
|
|
|
|
class SimpleLogger
|
|
{
|
|
public:
|
|
SimpleLogger();
|
|
|
|
virtual ~SimpleLogger();
|
|
std::mutex &get_mutex();
|
|
std::ostringstream &Write(LogLevel l = logINFO) noexcept;
|
|
|
|
private:
|
|
std::ostringstream os;
|
|
LogLevel level;
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif /* SIMPLE_LOGGER_HPP */
|