]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/logger.hh
Standardize license text in all PDNS files
[thirdparty/pdns.git] / pdns / logger.hh
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #pragma once
23
24 #include <string>
25 #include <ctime>
26 #include <iostream>
27 #include <sstream>
28 #include <syslog.h>
29 #include <pthread.h>
30
31 #include "namespaces.hh"
32 #include "dnsname.hh"
33 #include "iputils.hh"
34
35 //! The Logger class can be used to log messages in various ways.
36 class Logger
37 {
38 public:
39 Logger(const string &, int facility=LOG_DAEMON); //!< pass the identification you wish to appear in the log
40
41 //! The urgency of a log message
42 enum Urgency {All=32767,Alert=LOG_ALERT, Critical=LOG_CRIT, Error=LOG_ERR, Warning=LOG_WARNING,
43 Notice=LOG_NOTICE,Info=LOG_INFO, Debug=LOG_DEBUG, None=-1};
44
45 /** Log a message.
46 \param msg Message you wish to log
47 \param u Urgency of the message you wish to log
48 */
49 void log(const string &msg, Urgency u=Notice);
50
51 void setFacility(int f){d_facility=f;open();} //!< Choose logging facility
52 void setFlag(int f){flags|=f;open();} //!< set a syslog flag
53 void setName(const string &);
54
55 //! set lower limit of urgency needed for console display. Messages of this urgency, and higher, will be displayed
56 void toConsole(Urgency);
57 void setLoglevel( Urgency );
58
59 void disableSyslog(bool d) {
60 d_disableSyslog = d;
61 }
62
63 //! Log to a file.
64 void toFile( const string & filename );
65
66 void resetFlags(){flags=0;open();} //!< zero the flags
67 /** Use this to stream to your log, like this:
68 \code
69 L<<"This is an informational message"<<endl; // logged at default loglevel (Info)
70 L<<Logger::Warning<<"Out of diskspace"<<endl; // Logged as a warning
71 L<<"This is an informational message"<<endl; // logged AGAIN at default loglevel (Info)
72 \endcode
73 */
74 Logger& operator<<(const char *s);
75 Logger& operator<<(const string &s); //!< log a string
76 Logger& operator<<(int); //!< log an int
77 Logger& operator<<(double); //!< log a double
78 Logger& operator<<(unsigned int); //!< log an unsigned int
79 Logger& operator<<(long); //!< log an unsigned int
80 Logger& operator<<(unsigned long); //!< log an unsigned int
81 Logger& operator<<(unsigned long long); //!< log an unsigned 64 bit int
82 Logger& operator<<(const DNSName&);
83 Logger& operator<<(const ComboAddress&); //!< log an address
84 Logger& operator<<(Urgency); //!< set the urgency, << style
85
86 Logger& operator<<(std::ostream & (&)(std::ostream &)); //!< this is to recognise the endl, and to commit the log
87
88 private:
89 struct PerThread
90 {
91 PerThread()
92 {
93 d_urgency=Info;
94 }
95 string d_output;
96 Urgency d_urgency;
97 };
98 static void initKey();
99 static void perThreadDestructor(void *);
100 PerThread* getPerThread();
101 void open();
102
103 string name;
104 int flags;
105 int d_facility;
106 Urgency d_loglevel;
107 Urgency consoleUrgency;
108 bool opened;
109 bool d_disableSyslog;
110 static pthread_once_t s_once;
111 static pthread_key_t s_loggerKey;
112 };
113
114 extern Logger &theL(const string &pname="");
115
116 #ifdef VERBOSELOG
117 #define DLOG(x) x
118 #else
119 #define DLOG(x) ((void)0)
120 #endif