NextScan.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 NEXT_SCAN_HPP
  14. #define NEXT_SCAN_HPP
  15. #include "SignalData.hpp"
  16. class NextScanReq {
  17.   friend class Dblqh;
  18.   friend class Dbacc;
  19.   friend class Dbtux;
  20. public:
  21.   // two sets of defs picked from lqh/acc
  22.   enum ScanFlag {
  23.     ZSCAN_NEXT = 1,
  24.     ZSCAN_NEXT_COMMIT = 2,
  25.     ZSCAN_COMMIT = 3,           // new
  26.     ZSCAN_CLOSE = 6,
  27.     ZSCAN_NEXT_ABORT = 12
  28.   };
  29.   enum CopyFlag {
  30.     todo_ZCOPY_NEXT = 1,
  31.     todo_ZCOPY_NEXT_COMMIT = 2,
  32.     todo_ZCOPY_COMMIT = 3,
  33.     todo_ZCOPY_REPEAT = 4,
  34.     todo_ZCOPY_ABORT = 5,
  35.     todo_ZCOPY_CLOSE = 6
  36.   };
  37.   STATIC_CONST( SignalLength = 3 );
  38. private:
  39.   Uint32 accPtr;                // scan record in ACC/TUX
  40.   Uint32 accOperationPtr;
  41.   Uint32 scanFlag;
  42. };
  43. class NextScanConf {
  44.   friend class Dbacc;
  45.   friend class Dbtux;
  46.   friend class Dblqh;
  47. public:
  48.   // length is less if no keyinfo or no next result
  49.   STATIC_CONST( SignalLength = 11 );
  50. private:
  51.   Uint32 scanPtr;               // scan record in LQH
  52.   Uint32 accOperationPtr;
  53.   Uint32 fragId;
  54.   Uint32 localKey[2];
  55.   Uint32 localKeyLength;
  56.   Uint32 keyLength;
  57.   Uint32 key[4];
  58. };
  59. #endif