ndb_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 NDB_ERROR_H
  14. #define NDB_ERROR_H
  15. #include <ndb_global.h>
  16. #include <NdbOut.hpp>
  17. #include "userInterface.h"
  18. #include <NdbError.hpp>
  19. inline
  20. void
  21. CHECK_ALLOWED_ERROR(const char * str, 
  22.     const ThreadData * td, 
  23.     const struct NdbError & error){
  24.   
  25.   char buf[100];
  26.   snprintf(buf, sizeof(buf), "subscriber = %.*s ", 
  27.   SUBSCRIBER_NUMBER_LENGTH, 
  28.   td->transactionData.number);
  29.   ndbout << str << " " << error << endl
  30.  << buf;
  31.   showTime();
  32.   
  33.   switch(error.classification) { 
  34.   case NdbError::TimeoutExpired:  
  35.   case NdbError::OverloadError: 
  36.   case NdbError::TemporaryResourceError: 
  37.   case NdbError::NodeRecoveryError:
  38.     break;    
  39.   default:    
  40.     if(error.status != NdbError::TemporaryError)
  41.       exit(-1);
  42.   }
  43. }
  44. inline
  45. void
  46. CHECK_NULL(void * null, 
  47.    const char * str, 
  48.    const ThreadData * td,
  49.    const struct NdbError & err){
  50.   if(null == 0){
  51.     CHECK_ALLOWED_ERROR(str, td, err);
  52.     exit(-1);
  53.   }
  54. }
  55. #endif