forked from PowerDNS/powermail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.cc
119 lines (94 loc) · 2.55 KB
/
logger.cc
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
/*
PowerMail versatile mail receiver
Copyright (C) 2002 PowerDNS.COM BV
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "logger.hh"
#include "lock.hh"
using namespace std;
void Logger::log(const string &msg, Urgency u)
{
struct tm tmb;
time_t t;
time(&t);
tmb=*localtime(&t);
if(u<=consoleUrgency) // Sep 14 06:52:09
{
char buffer[51];
strftime(buffer,sizeof(buffer)-1,"%b %d %H:%M:%S ", &tmb);
clog<<buffer;
clog << msg <<endl;
}
syslog(u,"%s",msg.c_str());
}
void Logger::toConsole(bool b)
{
consoleUrgency=b ? All : None;
}
void Logger::toConsole(Urgency u)
{
consoleUrgency=u;
}
void Logger::open()
{
if(opened)
closelog();
openlog(name.c_str(),flags,d_facility);
opened=true;
}
Logger::Logger(const string &n, int facility)
{
opened=false;
flags=LOG_PID|LOG_NDELAY;
d_facility=facility;
consoleUrgency=Error;
name=n;
pthread_mutex_init(&lock,0);
open();
}
void Logger::setName(const string &n)
{
closelog();
name=n;
openlog(name.c_str(),flags,d_facility);
}
Logger& Logger::operator<<(Urgency u)
{
Lock l(&lock);
d_outputurgencies[pthread_self()]=u;
return *this;
}
Logger& Logger::operator<<(const string &s)
{
Lock l(&lock);
if(!d_outputurgencies.count(pthread_self())) // default urgency
d_outputurgencies[pthread_self()]=Info;
if(d_outputurgencies.count(pthread_self())<=(unsigned int)consoleUrgency) // prevent building strings we won't ever print
d_strings[pthread_self()].append(s);
return *this;
}
Logger& Logger::operator<<(int i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str(); // this locks for us
return *this;
}
Logger& Logger::operator<<(ostream & (&)(ostream &))
{
// *this<<" ("<<(int)d_outputurgencies[pthread_self()]<<", "<<(int)consoleUrgency<<")";
Lock l(&lock);
log(d_strings[pthread_self()], d_outputurgencies[pthread_self()]);
d_strings.erase(pthread_self()); // ??
d_outputurgencies.erase(pthread_self());
return *this;
}