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 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
/* Copyright (c) 2003-2006 MySQL AB
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; version 2 of the License.
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 Street, Fifth Floor, Boston, MA 02110-1301, USA */
#ifndef Logger_H
#define Logger_H
#include <ndb_global.h>
#include <BaseString.hpp>
#define MAX_LOG_MESSAGE_SIZE 1024
class LogHandler;
class LogHandlerList;
/**
* Logger should be used whenver you need to log a message like
* general information or debug messages. By creating/adding different
* log handlers, a single log message can be sent to
* different outputs (stdout, file or syslog).
*
* Each log entry is created with a log level (or severity) which is
* used to identity the type of the entry, e.g., if it is a debug
* or an error message.
*
* Example of a log entry:
*
* 09:17:39 2002-03-13 [myLogger] INFO -- Local checkpoint started.
*
* HOW TO USE
*
* 1) Create a new instance of the Logger.
*
* Logger myLogger = new Logger();
*
* 2) Add the log handlers that you want, i.e., where the log entries
* should be written/shown.
*
* myLogger->createConsoleHandler(); // Output to console/stdout
* myLogger->addHandler(new FileLogHandler("mylog.txt")); // use mylog.txt
*
* 3) Tag each log entry with a category/name.
*
* myLogger->setCategory("myLogger");
*
* 4) Start log messages.
*
* myLogger->alert("T-9 to lift off");
* myLogger->info("Here comes the sun, la la");
* myLogger->debug("Why does this not work!!!, We should not be here...")
*
* 5) Log only debug messages.
*
* myLogger->enable(Logger::LL_DEBUG);
*
* 6) Log only ALERTS and ERRORS.
*
* myLogger->enable(Logger::LL_ERROR, Logger::LL_ALERT);
*
* 7) Do not log any messages.
*
* myLogger->disable(Logger::LL_ALL);
*
*
* LOG LEVELS (Matches the severity levels of syslog)
* <pre>
*
* ALERT A condition that should be corrected
* immediately, such as a corrupted system
* database.
*
* CRITICAL Critical conditions, such as hard device
* errors.
*
* ERROR Errors.
*
* WARNING Warning messages.
*
* INFO Informational messages.
*
* DEBUG Messages that contain information nor-
* mally of use only when debugging a pro-
* gram.
* </pre>
*
* @version #@ $Id: Logger.hpp,v 1.7 2003/09/01 10:15:53 innpeno Exp $
*/
class Logger
{
public:
/** The log levels. NOTE: Could not use the name LogLevel since
* it caused conflicts with another class.
*/
enum LoggerLevel {LL_ON, LL_DEBUG, LL_INFO, LL_WARNING, LL_ERROR,
LL_CRITICAL, LL_ALERT, LL_ALL};
/**
* String representation of the the log levels.
*/
static const char* LoggerLevelNames[];
/**
* Default constructor.
*/
Logger();
/**
* Destructor.
*/
virtual ~Logger();
/**
* Set a category/name that each log entry will have.
*
* @param pCategory the category.
*/
void setCategory(const char* pCategory);
/**
* Create a default handler that logs to the console/stdout.
*
* @return true if successful.
*/
bool createConsoleHandler();
/**
* Remove the default console handler.
*/
void removeConsoleHandler();
/**
* Create a default handler that logs to a file called logger.log.
*
* @return true if successful.
*/
bool createFileHandler();
/**
* Remove the default file handler.
*/
void removeFileHandler();
/**
* Create a default handler that logs to the syslog.
*
* @return true if successful.
*/
bool createSyslogHandler();
/**
* Remove the default syslog handler.
*/
void removeSyslogHandler();
/**
* Add a new log handler.
*
* @param pHandler a log handler.
* @return true if successful.
*/
bool addHandler(LogHandler* pHandler);
/**
* Add a new handler
*
* @param logstring string describing the handler to add
* @param err OS errno in event of error
* @param len max length of errStr buffer
* @param errStr logger error string in event of error
*/
bool addHandler(const BaseString &logstring, int *err, int len, char* errStr);
/**
* Remove a log handler.
*
* @param pHandler log handler to remove.
* @return true if successful.
*/
bool removeHandler(LogHandler* pHandler);
/**
* Remove all log handlers.
*/
void removeAllHandlers();
/**
* Returns true if the specified log level is enabled.
*
* @return true if enabled.
*/
bool isEnable(LoggerLevel logLevel) const;
/**
* Enable the specified log level.
*
* @param logLevel the loglevel to enable.
*/
void enable(LoggerLevel logLevel);
/**
* Enable log levels.
*
* @param fromLogLevel enable from log level.
* @param toLogLevel enable to log level.
*/
void enable (LoggerLevel fromLogLevel, LoggerLevel toLogLevel);
/**
* Disable log level.
*
* @param logLevel disable log level.
*/
void disable(LoggerLevel logLevel);
/**
* Log an alert message.
*
* @param pMsg the message.
*/
virtual void alert(const char* pMsg, ...) const;
virtual void alert(BaseString &pMsg) const { alert(pMsg.c_str()); };
/**
* Log a critical message.
*
* @param pMsg the message.
*/
virtual void critical(const char* pMsg, ...) const;
virtual void critical(BaseString &pMsg) const { critical(pMsg.c_str()); };
/**
* Log an error message.
*
* @param pMsg the message.
*/
virtual void error(const char* pMsg, ...) const;
virtual void error(BaseString &pMsg) const { error(pMsg.c_str()); };
/**
* Log a warning message.
*
* @param pMsg the message.
*/
virtual void warning(const char* pMsg, ...) const;
virtual void warning(BaseString &pMsg) const { warning(pMsg.c_str()); };
/**
* Log an info message.
*
* @param pMsg the message.
*/
virtual void info(const char* pMsg, ...) const;
virtual void info(BaseString &pMsg) const { info(pMsg.c_str()); };
/**
* Log a debug message.
*
* @param pMsg the message.
*/
virtual void debug(const char* pMsg, ...) const;
virtual void debug(BaseString &pMsg) const { debug(pMsg.c_str()); };
protected:
NdbMutex *m_mutex;
void log(LoggerLevel logLevel, const char* msg, va_list ap) const;
private:
/** Prohibit */
Logger(const Logger&);
Logger operator = (const Logger&);
bool operator == (const Logger&);
STATIC_CONST( MAX_LOG_LEVELS = 8 );
bool m_logLevels[MAX_LOG_LEVELS];
LogHandlerList* m_pHandlerList;
const char* m_pCategory;
/* Default handlers */
NdbMutex *m_handler_mutex;
LogHandler* m_pConsoleHandler;
LogHandler* m_pFileHandler;
LogHandler* m_pSyslogHandler;
};
#endif
|