about summary refs log tree commit diff
path: root/src/libutil/logging.hh
blob: 277dff28005392fec89ba2193509dc3121eeeaf3 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#pragma once

#include "types.hh"

namespace nix {

typedef enum {
    lvlError = 0,
    lvlInfo,
    lvlTalkative,
    lvlChatty,
    lvlDebug,
    lvlVomit
} Verbosity;

class Activity;

class Logger
{
    friend class Activity;

public:

    virtual ~Logger() { }

    virtual void log(Verbosity lvl, const FormatOrString & fs) = 0;

    void log(const FormatOrString & fs)
    {
        log(lvlInfo, fs);
    }

    virtual void setExpected(const std::string & label, uint64_t value = 1) { }
    virtual void setProgress(const std::string & label, uint64_t value = 1) { }
    virtual void incExpected(const std::string & label, uint64_t value = 1) { }
    virtual void incProgress(const std::string & label, uint64_t value = 1) { }

private:

    virtual void startActivity(Activity & activity, Verbosity lvl, const FormatOrString & fs) = 0;

    virtual void stopActivity(Activity & activity) = 0;

};

class Activity
{
public:
    Logger & logger;

    Activity(Logger & logger, Verbosity lvl, const FormatOrString & fs)
        : logger(logger)
    {
        logger.startActivity(*this, lvl, fs);
    }

    ~Activity()
    {
        logger.stopActivity(*this);
    }
};

extern Logger * logger;

Logger * makeDefaultLogger();

extern Verbosity verbosity; /* suppress msgs > this */

#define printMsg(level, f) \
    do { \
        if (level <= nix::verbosity) { \
            logger->log(level, (f)); \
        } \
    } while (0)

#define debug(f) printMsg(lvlDebug, f)

void warnOnce(bool & haveWarned, const FormatOrString & fs);

void writeToStderr(const string & s);

}