NdbOut.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 NDBOUT_H
  14. #define NDBOUT_H
  15. #ifdef __cplusplus
  16. #include <ndb_types.h>
  17. #include <util/BaseString.hpp>
  18. /**
  19.  * Class used for outputting logging messages to screen.
  20.  * Since the output capabilities are different on different platforms
  21.  * this middle layer class should be used for all output messages
  22.  */
  23. /* 
  24.    Example usage:
  25.    
  26.    #include "NdbOut.hpp"
  27.    
  28.    / *  Use ndbout as you would use cout:
  29.    
  30.         ndbout << "Hello World! "<< 1 << " Hello again" 
  31.                << 67 << anIntegerVar << "Hup << endl;
  32.    
  33.    
  34.    / * Use ndbout_c as you would use printf:
  35.    
  36.        ndbout_c("Hello World %dn", 1);
  37. */
  38. class NdbOut;
  39. class OutputStream;
  40. class NullOutputStream;
  41. /*  Declare a static variable of NdbOut as ndbout */
  42. extern NdbOut ndbout;
  43. class NdbOut
  44. {
  45. public:
  46.   NdbOut& operator<<(NdbOut& (* _f)(NdbOut&));
  47.   NdbOut& operator<<(Int8);
  48.   NdbOut& operator<<(Uint8);
  49.   NdbOut& operator<<(Int16);
  50.   NdbOut& operator<<(Uint16);
  51.   NdbOut& operator<<(Int32);
  52.   NdbOut& operator<<(Uint32);
  53.   NdbOut& operator<<(Int64);
  54.   NdbOut& operator<<(Uint64);
  55.   NdbOut& operator<<(long unsigned int);
  56.   NdbOut& operator<<(const char*);
  57.   NdbOut& operator<<(const unsigned char*);
  58.   NdbOut& operator<<(BaseString &);
  59.   NdbOut& operator<<(const void*);
  60.   NdbOut& operator<<(float);
  61.   NdbOut& operator<<(double);
  62.   NdbOut& endline(void);
  63.   NdbOut& flushline(void);
  64.   NdbOut& setHexFormat(int _format);
  65.   
  66.   NdbOut(OutputStream &);
  67.   virtual ~NdbOut();
  68.   void print(const char * fmt, ...);
  69.   void println(const char * fmt, ...);
  70.   
  71.   OutputStream * m_out;
  72. private:
  73.   int isHex;
  74. };
  75. inline NdbOut& NdbOut::operator<<(NdbOut& (* _f)(NdbOut&)) {
  76.   (* _f)(*this); 
  77.   return * this; 
  78. }
  79. inline NdbOut&  endl(NdbOut& _NdbOut) { 
  80.   return _NdbOut.endline(); 
  81. }
  82. inline NdbOut&  flush(NdbOut& _NdbOut) { 
  83.   return _NdbOut.flushline(); 
  84. }
  85. inline  NdbOut& hex(NdbOut& _NdbOut) {
  86.   return _NdbOut.setHexFormat(1);
  87. }
  88. inline NdbOut& dec(NdbOut& _NdbOut) {
  89.   return _NdbOut.setHexFormat(0);
  90. }
  91. extern "C"
  92. void ndbout_c(const char * fmt, ...);
  93. class FilteredNdbOut : public NdbOut {
  94. public:
  95.   FilteredNdbOut(OutputStream &, int threshold = 0, int level = 0);
  96.   virtual ~FilteredNdbOut();
  97.   void setLevel(int i);
  98.   void setThreshold(int i);
  99.   int getLevel() const;
  100.   int getThreshold() const;
  101.   
  102. private:
  103.   int m_threshold, m_level;
  104.   OutputStream * m_org;
  105.   NullOutputStream * m_null;
  106. };
  107. #else
  108. void ndbout_c(const char * fmt, ...);
  109. #endif
  110. #endif