NdbOut.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 "NdbOut.hpp"
  15. #if defined NDB_SOFTOSE
  16. #include <dbgprintf.h>
  17. #define printfunc dbgprintf
  18. #else
  19. #define printfunc printf
  20. #endif
  21. static char const* const endlineString = "rn";
  22. static int CtrlC = 0;
  23. NdbOut ndbout;
  24. NdbOut& NdbOut::operator<<(int aVal)
  25. {
  26.   char* format;
  27.   char HexFormat[] = "0x%08x";
  28.   char DecFormat[] = "%d";
  29.   if (isHexFormat == 1)
  30.     format = HexFormat;
  31.   else
  32.     format = DecFormat;
  33.   printfunc(format, aVal);
  34.   return *this;
  35. }
  36. NdbOut& NdbOut::operator<<(char* pVal)
  37. {
  38.   printfunc("%s", pVal);
  39.   return *this;
  40. }
  41. NdbOut& NdbOut::endline()
  42. {
  43.   isHexFormat = 0; // Reset hex to normal, if user forgot this
  44.   printfunc(endlineString);
  45.   return *this;
  46. }
  47. NdbOut& NdbOut::flushline()
  48. {
  49.   isHexFormat = 0; // Reset hex to normal, if user forgot this
  50.   return *this;
  51. }
  52. NdbOut& NdbOut::setHexFormat(int _format)
  53. {
  54.   isHexFormat = _format;
  55.   return *this;
  56. }
  57. NdbOut::NdbOut()
  58. {
  59.   CtrlC = 0;
  60.   isHexFormat = 0;
  61. }
  62. NdbOut::~NdbOut()
  63. {
  64. }
  65. extern "C"
  66. void 
  67. ndbout_c(const char * fmt, ...){
  68.   va_list ap;
  69.   char buf[1000];
  70.   
  71.   va_start(ap, fmt);
  72.   if (fmt != 0)
  73.     vsnprintf(buf, sizeof(buf)-1, fmt, ap);
  74.   ndbout << buf << endl;
  75.   va_end(ap);
  76. }