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

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 <signaldata/DictTabInfo.hpp>
  14. #include <ndb_limits.h>
  15. //static 
  16. const
  17. SimpleProperties::SP2StructMapping
  18. DictTabInfo::TableMapping[] = {
  19.   DTIMAPS(Table, TableName, TableName, 0, MAX_TAB_NAME_SIZE),
  20.   DTIMAP(Table, TableId, TableId),
  21.   DTIMAP(Table, SecondTableId, SecondTableId),
  22.   DTIMAPS(Table, PrimaryTable, PrimaryTable, 0, MAX_TAB_NAME_SIZE),
  23.   DTIMAP(Table, PrimaryTableId, PrimaryTableId),
  24.   DTIMAP2(Table, TableLoggedFlag, TableLoggedFlag, 0, 1),
  25.   DTIMAP2(Table, TableKValue, TableKValue,         6, 6),
  26.   DTIMAP2(Table, MinLoadFactor, MinLoadFactor,     0, 90),
  27.   DTIMAP2(Table, MaxLoadFactor, MaxLoadFactor,    25, 110),
  28.   DTIMAP2(Table, FragmentTypeVal, FragmentType,       0, 3),
  29.   DTIMAP2(Table, TableStorageVal, TableStorage,       0, 0),
  30.   DTIMAP2(Table, ScanOptimised, ScanOptimised,     0, 0),
  31.   DTIMAP2(Table, FragmentKeyTypeVal, FragmentKeyType, 0, 2),
  32.   DTIMAP2(Table, TableTypeVal, TableType,         1, 3),
  33.   DTIMAP(Table, NoOfKeyAttr, NoOfKeyAttr),
  34.   DTIMAP2(Table, NoOfAttributes, NoOfAttributes, 1, MAX_ATTRIBUTES_IN_TABLE),
  35.   DTIMAP(Table, NoOfNullable, NoOfNullable),
  36.   DTIMAP2(Table, NoOfVariable, NoOfVariable,       0, 0),
  37.   DTIMAP(Table, KeyLength, KeyLength),
  38.   DTIMAP(Table, TableVersion, TableVersion),
  39.   DTIMAP(Table, IndexState, IndexState),
  40.   DTIMAP(Table, InsertTriggerId, InsertTriggerId),
  41.   DTIMAP(Table, UpdateTriggerId, UpdateTriggerId),
  42.   DTIMAP(Table, DeleteTriggerId, DeleteTriggerId),
  43.   DTIMAP(Table, CustomTriggerId, CustomTriggerId),
  44.   DTIMAP2(Table, FrmLen, FrmLen, 0, MAX_FRM_DATA_SIZE),
  45.   DTIMAPB(Table, FrmData, FrmData, 0, MAX_FRM_DATA_SIZE, FrmLen),
  46.   DTIMAP(Table, FragmentCount, FragmentCount),
  47.   DTIBREAK(AttributeName)
  48. };
  49. //static 
  50. const Uint32 DictTabInfo::TableMappingSize = 
  51. sizeof(DictTabInfo::TableMapping) / sizeof(SimpleProperties::SP2StructMapping);
  52. //static 
  53. const
  54. SimpleProperties::SP2StructMapping
  55. DictTabInfo::AttributeMapping[] = {
  56.   DTIMAPS(Attribute, AttributeName, AttributeName, 0, MAX_ATTR_NAME_SIZE),
  57.   DTIMAP(Attribute, AttributeId, AttributeId),
  58.   DTIMAP2(Attribute, AttributeType, AttributeType,    0, 3),
  59.   DTIMAP2(Attribute, AttributeSize, AttributeSize,     3, 7),
  60.   DTIMAP2(Attribute, AttributeArraySize, AttributeArraySize, 0, 65535),
  61.   DTIMAP2(Attribute, AttributeKeyFlag, AttributeKeyFlag, 0, 1),
  62.   DTIMAP2(Attribute, AttributeStorage, AttributeStorage, 0, 0),
  63.   DTIMAP2(Attribute, AttributeNullableFlag, AttributeNullableFlag, 0, 1),
  64.   DTIMAP2(Attribute, AttributeDGroup, AttributeDGroup, 0, 1),
  65.   DTIMAP2(Attribute, AttributeDKey, AttributeDKey, 0, 1),
  66.   DTIMAP2(Attribute, AttributeStoredInd, AttributeStoredInd, 0, 1),
  67.   DTIMAP2(Attribute, AttributeGroup, AttributeGroup, 0, 0),
  68.   DTIMAP(Attribute, AttributeExtType, AttributeExtType),
  69.   DTIMAP(Attribute, AttributeExtPrecision, AttributeExtPrecision),
  70.   DTIMAP(Attribute, AttributeExtScale, AttributeExtScale),
  71.   DTIMAP(Attribute, AttributeExtLength, AttributeExtLength),
  72.   DTIMAP2(Attribute, AttributeAutoIncrement, AttributeAutoIncrement, 0, 1),
  73.   DTIMAPS(Attribute, AttributeDefaultValue, AttributeDefaultValue,
  74.     0, MAX_ATTR_DEFAULT_VALUE_SIZE),
  75.   DTIBREAK(AttributeEnd)
  76. };
  77. //static 
  78. const Uint32 DictTabInfo::AttributeMappingSize = 
  79. sizeof(DictTabInfo::AttributeMapping) / 
  80. sizeof(SimpleProperties::SP2StructMapping);
  81. bool printDICTTABINFO(FILE * output, const Uint32 * theData, 
  82.       Uint32 len, Uint16 receiverBlockNo)
  83. {
  84. //  const DictTabInfo * const sig = (DictTabInfo *) theData;
  85.   fprintf(output, "Signal data: ");
  86.   Uint32 i = 0;
  87.   while (i < len)
  88.     fprintf(output, "H'%.8x ", theData[i++]);
  89.   fprintf(output,"n");
  90.   return true;
  91. }
  92. void
  93. DictTabInfo::Table::init(){
  94.   memset(TableName, 0, sizeof(TableName));//TableName[0] = 0;
  95.   TableId = ~0;
  96.   SecondTableId = ~0;
  97.   memset(PrimaryTable, 0, sizeof(PrimaryTable));//PrimaryTable[0] = 0; // Only used when "index"
  98.   PrimaryTableId = RNIL;
  99.   TableLoggedFlag = 1;
  100.   NoOfKeyAttr = 0;
  101.   NoOfAttributes = 0;
  102.   NoOfNullable = 0;
  103.   NoOfVariable = 0;
  104.   TableKValue = 6;
  105.   MinLoadFactor = 78;
  106.   MaxLoadFactor = 80;
  107.   KeyLength = 0;
  108.   FragmentType = DictTabInfo::AllNodesSmallTable;
  109.   TableStorage = 0;
  110.   ScanOptimised = 0;
  111.   FragmentKeyType = DictTabInfo::PrimaryKey;
  112.   TableType = DictTabInfo::UndefTableType;
  113.   TableVersion = 0;
  114.   IndexState = ~0;
  115.   InsertTriggerId = RNIL;
  116.   UpdateTriggerId = RNIL;
  117.   DeleteTriggerId = RNIL;
  118.   CustomTriggerId = RNIL;
  119.   FrmLen = 0;
  120.   memset(FrmData, 0, sizeof(FrmData));
  121.   FragmentCount = 0;
  122. }
  123. void
  124. DictTabInfo::Attribute::init(){
  125.   memset(AttributeName, 0, sizeof(AttributeName));//AttributeName[0] = 0;
  126.   AttributeId = 0;
  127.   AttributeType = DictTabInfo::UnSignedType;
  128.   AttributeSize = DictTabInfo::a32Bit;
  129.   AttributeArraySize = 1;
  130.   AttributeKeyFlag = 0;
  131.   AttributeStorage = 1;
  132.   AttributeNullableFlag = 0;
  133.   AttributeDGroup = 0;
  134.   AttributeDKey = 0;
  135.   AttributeStoredInd = 1;
  136.   AttributeGroup = 0;
  137.   AttributeExtType = 0,
  138.   AttributeExtPrecision = 0,
  139.   AttributeExtScale = 0,
  140.   AttributeExtLength = 0,
  141.   AttributeAutoIncrement = false;
  142.   memset(AttributeDefaultValue, 0, sizeof(AttributeDefaultValue));//AttributeDefaultValue[0] = 0;
  143. }