SysLogHandler.hpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef SYSLOGHANDLER_H
  14. #define SYSLOGHANDLER_H
  15. #include "LogHandler.hpp"
  16. #ifndef NDB_WIN32
  17. #include <syslog.h>
  18. #endif
  19. /**
  20.  * Logs messages to syslog. The default identity is 'NDB'. 
  21.  * See 'man 3 syslog'. 
  22.  *
  23.  * It logs the following severity levels.
  24.  * <pre>
  25.  *
  26.  *  LOG_ALERT           A condition  that  should  be  corrected
  27.  *                      immediately,  such as a corrupted system
  28.  *                      database.
  29.  *
  30.  *  LOG_CRIT            Critical conditions, such as hard device
  31.  *                      errors.
  32.  *
  33.  *  LOG_ERR             Errors.
  34.  *
  35.  *  LOG_WARNING         Warning messages.
  36.  *
  37.  *  LOG_INFO            Informational messages.
  38.  *
  39.  *  LOG_DEBUG           Messages that contain  information  nor-
  40.  *                      mally  of use only when debugging a pro-
  41.  *                      gram.
  42.  * </pre>
  43.  *
  44.  * @see LogHandler
  45.  * @version #@ $Id: SysLogHandler.hpp,v 1.2 2003/09/01 10:15:53 innpeno Exp $
  46.  */
  47. class SysLogHandler : public LogHandler
  48. {
  49. public:
  50.   /**
  51.    * Default constructor.
  52.    */
  53.   SysLogHandler();
  54.   
  55.   /**
  56.    * Create a new syslog handler with the specified identity.
  57.    *
  58.    * @param pIdentity a syslog identity.
  59.    * @param facility syslog facility, defaults to LOG_USER
  60.    */
  61.   SysLogHandler(const char* pIdentity, int facility);
  62.   /**
  63.    * Destructor.
  64.    */
  65.   virtual ~SysLogHandler();
  66.   
  67.   virtual bool open();
  68.   virtual bool close();
  69.   virtual bool setParam(const BaseString &param, const BaseString &value);
  70.   bool setFacility(const BaseString &facility);
  71. protected:
  72.   virtual void writeHeader(const char* pCategory, Logger::LoggerLevel level);
  73.   virtual void writeMessage(const char* pMsg);
  74.   virtual void writeFooter();
  75. private:
  76.   /** Prohibit*/
  77.   SysLogHandler(const SysLogHandler&);
  78.   SysLogHandler operator = (const SysLogHandler&);
  79.   bool operator == (const SysLogHandler&);
  80.   int m_severity;
  81.   const char* m_pCategory;
  82.   /** Syslog identity for all log entries. */
  83.   const char* m_pIdentity;
  84.   int m_facility;
  85. };
  86. #endif