summaryrefslogtreecommitdiffstats
path: root/src/Core/Logger.h
blob: a43b340d093becff54fc476cb4e1d1549e33e238 (plain)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 * Logger.h
 *
 * Copyright (C) 2008 Johannes Thorn <dante@g4t3.de>
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License along
 * with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef MAD_CORE_LOGGER_H_
#define MAD_CORE_LOGGER_H_

#include <bitset>
#include <string>
#include <boost/date_time/posix_time/ptime.hpp>

namespace Mad {
namespace Core {

class LogManager;

class Logger {
  public:
    friend class LogManager;

    enum MessageLevel {
        LOG_CRITICAL = 1, LOG_ERROR, LOG_WARNING, LOG_DEFAULT, LOG_VERBOSE, LOG_DEBUG
    };

    enum MessageCategory {
        LOG_SYSTEM, LOG_NETWORK, LOG_DAEMON, LOG_USER, LOG_DISK, LOG_PROGRAM, LOG_GENERAL
    };

  private:
    std::bitset<16> categories;
    MessageLevel level;

    std::bitset<16> remoteCategories;
    MessageLevel remoteLevel;

    bool remote;

  protected:
    Logger() : level(LOG_DEFAULT), remoteLevel(LOG_DEFAULT) {setAllCategories(); setAllRemoteCategories(); remote = false;}
    virtual ~Logger() {}

    void log(MessageCategory category, MessageLevel level, boost::posix_time::ptime timestamp, const std::string &message, const std::string &source) {
      if((source.empty() && getLevel() >= level && isCategorySet(category))
        || (!source.empty() && remote && getRemoteLevel() >= level && isRemoteCategorySet(category)))
        logMessage(category, level, timestamp, message, source);
    }

    virtual void logMessage(MessageCategory category, MessageLevel level, boost::posix_time::ptime timestamp, const std::string &message, const std::string &source) = 0;

  public:
    void setCategory(MessageCategory newCategory) {
      categories.set(newCategory);
    }

    void unsetCategory(MessageCategory oldCategory) {
      categories.reset(oldCategory);
    }

    void setAllCategories() {
      categories.set();
    }

    void unsetAllCategories() {
      categories.reset();
    }

    bool isCategorySet(MessageCategory category) const {
      return categories.test(category);
    }


    void setRemoteCategory(MessageCategory newCategory) {
      remote = true;
      remoteCategories.set(newCategory);
    }

    void unsetRemoteCategory(MessageCategory oldCategory) {
      remote = true;
      remoteCategories.reset(oldCategory);
    }

    void setAllRemoteCategories() {
      remote = true;
      remoteCategories.set();
    }

    void unsetAllRemoteCategories() {
      remote = true;
      remoteCategories.reset();
    }

    bool isRemoteCategorySet(MessageCategory category) const {
      return remoteCategories.test(category);
    }


    MessageLevel getLevel() const {
      return level;
    }

    void setLevel(MessageLevel newLevel) {
      level = newLevel;
    }


    MessageLevel getRemoteLevel() const {
      return remoteLevel;
    }

    void setRemoteLevel(MessageLevel newLevel) {
      remote = true;
      remoteLevel = newLevel;
    }
};

}
}

#endif /* MAD_CORE_LOGGER_H_ */