DebuggerNames.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

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 <BaseString.hpp>
  15. #include "DebuggerNames.hpp"
  16. #include <BlockNumbers.h>
  17. #include <GlobalSignalNumbers.h>
  18. #include <signaldata/SignalDataPrint.hpp>
  19. static const char *            localSignalNames[MAX_GSN+1];
  20. static SignalDataPrintFunction localPrintFunctions[MAX_GSN+1];
  21. static const char *            localBlockNames[NO_OF_BLOCKS]; 
  22. static
  23. int
  24. initSignalNames(const char * dst[], const GsnName src[], unsigned short len){
  25.   unsigned i;
  26.   for(i = 0; i<=MAX_GSN; i++)
  27.     dst[i] = 0;
  28.   
  29.   for(i = 0; i<len; i++){
  30.     unsigned short gsn = src[i].gsn;
  31.     const char * name  = src[i].name;
  32.     
  33.     if(dst[gsn] != 0 && name != 0){
  34.       if(strcmp(dst[gsn], name) != 0){
  35. fprintf(stderr, 
  36. "Multiple definition of signal name for gsn: %d (%s, %s)n", 
  37. gsn, dst[gsn], name);
  38. exit(0);
  39.       }
  40.     }
  41.     dst[gsn] = name;
  42.   }
  43.   return 0;
  44. }
  45. static
  46. int
  47. initSignalPrinters(SignalDataPrintFunction dst[], 
  48.    const NameFunctionPair src[]){
  49.   unsigned i;
  50.   for(i = 0; i<=MAX_GSN; i++)
  51.     dst[i] = 0;
  52.   
  53.   unsigned short gsn;
  54.   for(i = 0; (gsn = src[i].gsn) > 0; i++){
  55.     SignalDataPrintFunction fun = src[i].function;
  56.     
  57.     if(dst[gsn] != 0 && fun != 0){
  58.       if(dst[gsn] != fun){
  59. fprintf(stderr, 
  60. "Multiple definition of signal print function for gsn: %dn", 
  61. gsn);
  62. exit(0);
  63.       }
  64.     }
  65.     dst[gsn] = fun;
  66.   }
  67.   return 0;
  68. }
  69. static
  70. int
  71. initBlockNames(const char * dst[],
  72.        const BlockName src[],
  73.        unsigned len){
  74.   unsigned i;
  75.   for(i = 0; i<NO_OF_BLOCKS; i++)
  76.     dst[i] = 0;
  77.   for(i = 0; i<len; i++){
  78.     const int index = src[i].number - MIN_BLOCK_NO;
  79.     if(index < 0 && index >= NO_OF_BLOCKS || dst[index] != 0){
  80.       fprintf(stderr, 
  81.       "Invalid block name definition: %d %sn",
  82.       src[i].number, src[i].name);
  83.       exit(0);
  84.     }
  85.     dst[index] = src[i].name;
  86.   }
  87.   return 0;
  88. }
  89. /**
  90.  * Run static initializer
  91.  */
  92. static const int 
  93. xxx_DUMMY_SIGNAL_NAMES_xxx = initSignalNames(localSignalNames, 
  94.      SignalNames, 
  95.      NO_OF_SIGNAL_NAMES);
  96. static const int 
  97. xxx_DUMMY_PRINT_FUNCTIONS_xxx  = initSignalPrinters(localPrintFunctions, 
  98.     SignalDataPrintFunctions);
  99. static const int
  100. xxx_DUMMY_BLOCK_NAMES_xxx = initBlockNames(localBlockNames,
  101.    BlockNames,
  102.    NO_OF_BLOCK_NAMES);
  103. const char * 
  104. getSignalName(unsigned short gsn, const char * defVal){
  105.   if(gsn > 0 && gsn <= MAX_GSN)
  106.     return (localSignalNames[gsn] ? localSignalNames[gsn] : defVal);
  107.   return defVal;
  108. }
  109. unsigned short
  110. getGsn(const char * signalName){
  111.   return 0;
  112. }
  113. const char * 
  114. getBlockName(unsigned short blockNo, const char * ret){
  115.   if(blockNo >= MIN_BLOCK_NO && blockNo <= MAX_BLOCK_NO)
  116.     return localBlockNames[blockNo-MIN_BLOCK_NO];
  117.   if (ret == 0) {
  118.     static char buf[20];
  119.     BaseString::snprintf(buf, sizeof(buf), "BLOCK#%d", (int)blockNo);
  120.     return buf;
  121.   }
  122.   return ret;
  123. }  
  124. unsigned short
  125. getBlockNo(const char * blockName){
  126.   for(int i = 0; i<NO_OF_BLOCKS; i++)
  127.     if(localBlockNames[i] != 0 && strcmp(localBlockNames[i], blockName) == 0)
  128.       return i + MIN_BLOCK_NO;
  129.   return 0;
  130. }
  131. SignalDataPrintFunction
  132. findPrintFunction(unsigned short gsn){
  133.   if(gsn > 0 && gsn <= MAX_GSN)
  134.     return localPrintFunctions[gsn];
  135.   return 0;
  136. }