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

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 BACKUP_FORMAT_HPP
  14. #define BACKUP_FORMAT_HPP
  15. #include <ndb_types.h>
  16. static const char BACKUP_MAGIC[] = { 'N', 'D', 'B', 'B', 'C', 'K', 'U', 'P' };
  17. struct BackupFormat {
  18.   /**
  19.    * Section types in file
  20.    */
  21.   enum SectionType {
  22.     FILE_HEADER       = 1,
  23.     FRAGMENT_HEADER   = 2,
  24.     FRAGMENT_FOOTER   = 3,
  25.     TABLE_LIST        = 4,
  26.     TABLE_DESCRIPTION = 5,
  27.     GCP_ENTRY         = 6
  28.   };
  29.   struct FileHeader {
  30.     char Magic[8];
  31.     Uint32 NdbVersion;
  32.     Uint32 SectionType;
  33.     Uint32 SectionLength;
  34.     Uint32 FileType;
  35.     Uint32 BackupId;
  36.     Uint32 BackupKey_0;
  37.     Uint32 BackupKey_1;
  38.     Uint32 ByteOrder;
  39.   };
  40.   
  41.   /**
  42.    * File types
  43.    */
  44.   enum FileType {
  45.     CTL_FILE = 1,
  46.     LOG_FILE = 2,
  47.     DATA_FILE = 3
  48.   };
  49.   
  50.   /**
  51.    * Data file formats
  52.    */
  53.   struct DataFile {
  54.     struct FragmentHeader {
  55.       Uint32 SectionType;
  56.       Uint32 SectionLength;
  57.       Uint32 TableId;
  58.       Uint32 FragmentNo;
  59.       Uint32 ChecksumType;
  60.     };
  61.     
  62.     struct VariableData {
  63.       Uint32 Sz;
  64.       Uint32 Id;
  65.       Uint32 Data[1];
  66.     };
  67.     
  68.     struct Record {
  69.       Uint32 Length;
  70.       Uint32 NullBitmask[1];
  71.       Uint32 DataFixedKeys[1];
  72.       Uint32 DataFixedAttributes[1];
  73.       VariableData DataVariableAttributes[1];
  74.     };
  75.     
  76.     struct FragmentFooter {
  77.       Uint32 SectionType;
  78.       Uint32 SectionLength;
  79.       Uint32 TableId;
  80.       Uint32 FragmentNo;
  81.       Uint32 NoOfRecords;
  82.       Uint32 Checksum;
  83.     };
  84.   };
  85.   /**
  86.    * CTL file formats
  87.    */
  88.   struct CtlFile {
  89.     
  90.     /**
  91.      * Table list
  92.      */
  93.     struct TableList {
  94.       Uint32 SectionType;
  95.       Uint32 SectionLength;
  96.       Uint32 TableIds[1];      // Length = SectionLength - 2
  97.     };
  98.     /**
  99.      * Table description(s)
  100.      */
  101.     struct TableDescription {
  102.       Uint32 SectionType;
  103.       Uint32 SectionLength;
  104.       Uint32 DictTabInfo[1];   // Length = SectionLength - 2
  105.     };
  106.     /**
  107.      * GCP Entry
  108.      */
  109.     struct GCPEntry {
  110.       Uint32 SectionType;
  111.       Uint32 SectionLength;
  112.       Uint32 StartGCP;
  113.       Uint32 StopGCP;
  114.     };
  115.   };
  116.   /**
  117.    * LOG file format
  118.    */
  119.   struct LogFile {
  120.     /**
  121.      * Log Entry
  122.      */
  123.     struct LogEntry {
  124.       Uint32 Length;
  125.       Uint32 TableId;
  126.       // If TriggerEvent & 0x10000 == true then GCI is right after data
  127.       Uint32 TriggerEvent; 
  128.       Uint32 Data[1]; // Len = Length - 2
  129.     };
  130.   };
  131. };
  132. #endif