dbug_hack.cpp
上传用户: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. #include <ndb_global.h>
  14. #include <OutputStream.hpp>
  15. #include "NdbOut.hpp"
  16. #include "rep_version.hpp"
  17. int replogEnabled;
  18. /**
  19.  * @todo  This should be implemented using MySQLs dbug library
  20.  */
  21. #if 0
  22. extern "C"
  23. void 
  24. DBUG_PRINT(const char * fmt, ...)
  25. {
  26. #ifdef DBUG
  27.   va_list ap;
  28.   char buf[1000];
  29.   
  30.   va_start(ap, fmt);
  31.   if (fmt != 0)
  32.     vsnprintf(buf, sizeof(buf)-1, fmt, ap);
  33.   ndbout << buf << endl;
  34.   va_end(ap);
  35. #endif
  36. }
  37. #endif
  38. extern "C"
  39. void 
  40. replog(const char * fmt, ...)
  41. {
  42.   if (replogEnabled)
  43.   {
  44.     va_list ap;
  45.     char buf[1000];
  46.     
  47.     va_start(ap, fmt);
  48.     if (fmt != 0)
  49.       vsnprintf(buf, sizeof(buf)-1, fmt, ap);
  50.     ndbout << buf << endl;
  51.     va_end(ap);
  52.   }
  53. }
  54. extern "C"
  55. void 
  56. rlog(const char * fmt, ...)
  57. {
  58.   va_list ap;
  59.   char buf[1000];
  60.   
  61.   va_start(ap, fmt);
  62.   if (fmt != 0)
  63.     vsnprintf(buf, sizeof(buf)-1, fmt, ap);
  64.   ndbout << buf;
  65.   va_end(ap);
  66. }