aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/logger/element.h
blob: fc9bff851ffe7ffecc58caebb4610d9863b63ef4 (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
#pragma once

#include "priority.h"

#include <util/stream/tempbuf.h>

class TLog;

/*
 * better do not use directly
 */
class TLogElement: public TTempBufOutput {
public:
    TLogElement(const TLog* parent);
    TLogElement(const TLog* parent, ELogPriority priority);

    TLogElement(TLogElement&&) noexcept = default;
    TLogElement& operator=(TLogElement&&) noexcept = default;

    ~TLogElement() override;

    template <class T>
    inline TLogElement& operator<<(const T& t) {
        static_cast<IOutputStream&>(*this) << t;

        return *this;
    }

    /*
         * for pretty usage: logger << TLOG_ERROR << "Error description";
         */
    inline TLogElement& operator<<(ELogPriority priority) {
        Flush();
        Priority_ = priority;
        return *this;
    }

    ELogPriority Priority() const noexcept {
        return Priority_;
    }

protected:
    void DoFlush() override;

protected:
    const TLog* Parent_;
    ELogPriority Priority_;
};