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

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 LOGHANDLERLIST_H
  14. #define LOGHANDLERLIST_H
  15. class LogHandler;
  16. #include <ndb_global.h>
  17. /**
  18.  * Provides a simple linked list of log handlers.
  19.  *
  20.  * @see LogHandler
  21.  * @version #@ $Id: LogHandlerList.hpp,v 1.2 2002/03/14 13:07:21 eyualex Exp $
  22.  */
  23. class LogHandlerList
  24. {
  25. public:
  26.   /**
  27.    * Default Constructor.
  28.    */
  29.   LogHandlerList();
  30.   /**
  31.    * Destructor.
  32.    */
  33.   ~LogHandlerList();
  34.   /**
  35.    * Adds a new log handler.
  36.    *
  37.    * @param pNewHandler log handler.
  38.    */
  39.   void add(LogHandler* pNewHandler);
  40.   /**
  41.    * Removes a log handler from the list and call its destructor.
  42.    *
  43.    * @param pRemoveHandler the handler to remove
  44.    */
  45.   bool remove(LogHandler* pRemoveHandler);
  46.   /**
  47.    * Removes all log handlers.
  48.    */
  49.   void removeAll();
  50.   /**
  51.    * Returns the next log handler in the list. 
  52.    * returns a log handler or NULL.
  53.    */
  54.   LogHandler* next();
  55.   /**
  56.    * Returns the size of the list.
  57.    */ 
  58.   int size() const;
  59. private:
  60.   /** List node */
  61.   struct LogHandlerNode
  62.   {
  63.     LogHandlerNode* pPrev;
  64.     LogHandlerNode* pNext;    
  65.     LogHandler* pHandler;
  66.   };
  67.   LogHandlerNode* next(LogHandlerNode* pNode);
  68.   LogHandlerNode* prev(LogHandlerNode* pNode);
  69.   void removeNode(LogHandlerNode* pNode);
  70.   int m_size;
  71.   LogHandlerNode* m_pHeadNode;
  72.   LogHandlerNode* m_pTailNode;
  73.   LogHandlerNode* m_pCurrNode;
  74. };
  75. #endif