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
|
/*
PowerDNS Versatile Database Driven Nameserver
Copyright (C) 2005 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 version 2 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "logger.hh"
#include "config.h"
#ifndef RECURSOR
#include "statbag.hh"
extern StatBag S;
#endif
using namespace std;
Logger &theL(const string &pname)
{
static Logger l("", LOG_DAEMON);
if(!pname.empty())
l.setName(pname);
return l;
}
void Logger::log(const string &msg, Urgency u)
{
struct tm tm;
time_t t;
time(&t);
tm=*localtime(&t);
if(u<=consoleUrgency) {// Sep 14 06:52:09
char buffer[50];
strftime(buffer,sizeof(buffer),"%b %d %H:%M:%S ", &tm);
clog<<buffer;
clog <<msg <<endl;
}
if( u <= d_loglevel ) {
#ifndef RECURSOR
S.ringAccount("logmessages",msg);
#endif
syslog(u,"%s",msg.c_str());
}
}
void Logger::setLoglevel( Urgency u )
{
d_loglevel = u;
}
void Logger::toConsole(Urgency u)
{
consoleUrgency=u;
}
void Logger::open()
{
if(opened)
closelog();
openlog(name.c_str(),flags,d_facility);
opened=true;
}
void Logger::setName(const string &_name)
{
name=_name;
open();
}
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();
}
Logger& Logger::operator<<(Urgency u)
{
pthread_mutex_lock(&lock);
d_outputurgencies[pthread_self()]=u;
pthread_mutex_unlock(&lock);
return *this;
}
Logger& Logger::operator<<(const string &s)
{
pthread_mutex_lock(&lock);
if(!d_outputurgencies.count(pthread_self())) // default urgency
d_outputurgencies[pthread_self()]=Info;
// if(d_outputurgencies[pthread_self()]<=(unsigned int)consoleUrgency) // prevent building strings we won't ever print
d_strings[pthread_self()].append(s);
pthread_mutex_unlock(&lock);
return *this;
}
Logger& Logger::operator<<(int i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str();
return *this;
}
Logger& Logger::operator<<(unsigned int i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str();
return *this;
}
Logger& Logger::operator<<(unsigned long i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str();
return *this;
}
Logger& Logger::operator<<(unsigned long long i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str();
return *this;
}
Logger& Logger::operator<<(long i)
{
ostringstream tmp;
tmp<<i;
*this<<tmp.str();
return *this;
}
Logger& Logger::operator<<(ostream & (&)(ostream &))
{
// *this<<" ("<<(int)d_outputurgencies[pthread_self()]<<", "<<(int)consoleUrgency<<")";
pthread_mutex_lock(&lock);
log(d_strings[pthread_self()], d_outputurgencies[pthread_self()]);
d_strings.erase(pthread_self());
d_outputurgencies.erase(pthread_self());
pthread_mutex_unlock(&lock);
return *this;
}
|