-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathLog.cpp
189 lines (158 loc) · 4.12 KB
/
Log.cpp
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#include "LogInstanceFile.h"
#include <istat/Log.h>
#include <istat/Atomic.h>
#include <boost/make_shared.hpp>
#include <iostream>
#include <string.h>
#include <stdio.h>
namespace istat
{
int64_t stderrDisableCount_;
DisableStderr::DisableStderr()
{
istat::atomic_add(&stderrDisableCount_, 1);
}
DisableStderr::~DisableStderr()
{
istat::atomic_add(&stderrDisableCount_, -1);
}
class StderrLog : public LogInstance
{
public:
virtual void output(char const *text, size_t size)
{
if (stderrDisableCount_ == 0)
{
std::cerr << std::string(text, size);
}
}
virtual void rollOver()
{
}
};
static lock logFileLock_;
static boost::shared_ptr<LogInstance> cerrLog_(boost::make_shared<StderrLog>());
static boost::shared_ptr<LogInstance> logFile_;
static std::string g_logFileName_ = "./istat.log";
static LogLevel g_logLevel_ = LL_Warning;
static LogLevel g_stderrLogLevel_ = LL_Warning;
static int logN_;
static int sameCount_;
static size_t sameSize_;
static char sameBuf_[1024];
static boost::shared_ptr<LogInstance> getOrMakeLogFile()
{
// must be called with lock held
if (!logFile_)
{
logFile_ = boost::make_shared<LogInstanceFile>(g_logFileName_.c_str());
}
return logFile_;
}
static void setLogFileName(char const *name)
{
grab aholdof(logFileLock_);
logFile_.reset();
g_logFileName_ = name;
}
Log::Log(LogLevel level, char const *facility) :
level_(level),
tag_(facility)
{
}
Log::~Log()
{
}
void LogConfig::setLogLevel(LogLevel ll)
{
g_logLevel_ = ll;
}
void LogConfig::setStderrLogLevel(LogLevel ll)
{
g_stderrLogLevel_ = ll;
}
void LogConfig::getLogLevels(LogLevel &a, LogLevel &b)
{
a = g_logLevel_;
b = g_stderrLogLevel_;
}
bool LogConfig::levelEnabled(LogLevel ll)
{
return g_logLevel_ >= ll || g_stderrLogLevel_ >= ll;
}
void LogConfig::setOutputFile(char const *path)
{
setLogFileName(path);
}
void LogConfig::setOutputInstance(boost::shared_ptr<LogInstance> inst)
{
grab aholdof(logFileLock_);
logFile_ = inst;
}
static bool msg_is_duplicate(char const *data, size_t size)
{
// super hack!
// The date/time is the first 20 characters.
// Don't count that as part of the equality
if (size == sameSize_ && size > 20 && !strncmp(data, "2011", 4))
{
if (!memcmp(&sameBuf_[20], data + 20, size - 20))
{
return true;
}
}
return false;
}
static void remember_for_duplicate(char const *data, size_t size)
{
if (sameCount_ > 0)
{
snprintf(sameBuf_, sizeof(sameBuf_), "... repeated %d more time%s ...\n",
sameCount_, (sameCount_ > 1) ? "s" : "");
getOrMakeLogFile()->output(sameBuf_, strlen(sameBuf_));
sameCount_ = 0;
}
if (size > 0 && size < 1024)
{
memcpy(sameBuf_, data, size);
sameSize_ = size;
}
else
{
sameSize_ = 0;
}
}
static void flush_duplicate()
{
remember_for_duplicate(0, 0);
}
void LogConfig::outputToFile(LogLevel ll, char const *data, size_t size)
{
grab aholdof(logFileLock_);
if (ll <= g_stderrLogLevel_)
{
cerrLog_->output(data, size);
}
++logN_;
if (!(logN_ & 1023))
{
rollOver();
}
if (msg_is_duplicate(data, size))
{
++sameCount_;
return;
}
remember_for_duplicate(data, size);
getOrMakeLogFile()->output(data, size);
}
void LogConfig::rollOver()
{
grab aholdof(logFileLock_);
if (!!logFile_)
{
flush_duplicate();
logFile_->rollOver();
}
}
}