NDBT_Error.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 NDBT_Error_HPP
  14. #define NDBT_Error_HPP
  15. #include <NdbOut.hpp>
  16. #include <NdbError.hpp>
  17. /**
  18.  * NDBT_Error.hpp 
  19.  * This is the main include file about error handling in NDBT test programs 
  20.  *
  21.  */
  22. class ErrorData {
  23. public:
  24.   ErrorData();
  25.   ~ErrorData();
  26.   /**
  27.    * Parse cmd line arg
  28.    *
  29.    * Return true if successeful
  30.    */
  31.   bool parseCmdLineArg(const char ** argv, int & i);
  32.   
  33.   /**
  34.    * Print cmd line arguments
  35.    */
  36.   void printCmdLineArgs(NdbOut & out = ndbout);
  37.   /**
  38.    * Print settings
  39.    */
  40.   void printSettings(NdbOut & out = ndbout);
  41.   
  42.   /**
  43.    * Print error count
  44.    */
  45.   void printErrorCounters(NdbOut & out = ndbout) const;
  46.   
  47.   /**
  48.    * Reset error counters
  49.    */
  50.   void resetErrorCounters();
  51.   
  52.   /**
  53.    * 
  54.    */
  55.   int handleErrorCommon(const NdbError & error);
  56.   
  57. private:
  58.   bool key_error;
  59.   bool temporary_resource_error;
  60.   bool insufficient_space_error;
  61.   bool node_recovery_error;
  62.   bool overload_error;
  63.   bool timeout_error;
  64.   bool internal_error;
  65.   bool user_error;
  66.   bool application_error;
  67.   
  68.   Uint32 * errorCountArray;
  69. };
  70. //
  71. //  ERR prints an NdbError object togheter with a description of where 
  72. //  the error occured
  73. //
  74. #define ERR_OUT(where, error) 
  75.   {  where << "ERROR: " << error.code << " " 
  76.            << error.message << endl 
  77.            << "           " << "Status: " << error.status 
  78.            << ", Classification: " << error.classification << endl
  79.            << "           " << "File: " << __FILE__ 
  80.            << " (Line: " << __LINE__ << ")" << endl 
  81.    ; 
  82.   }
  83. #define ERR(error) ERR_OUT(g_err, error)
  84. #define ERR_INFO(error) ERR_OUT(g_info, error)
  85. #endif