FsRef.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 FS_REF_H
  14. #define FS_REF_H
  15. #include "SignalData.hpp"
  16. /**
  17.  * FsRef - Common signal class for all REF signals sent from Ndbfs
  18.  * GSN_FSCLOSEREF, GSN_FSOPENREF, GSN_FSWRITEREF, GSN_FSREADREF,
  19.  * GSN_FSSYNCREF
  20.  */
  21. /**
  22.  * 
  23.  * SENDER:  Ndbfs
  24.  * RECIVER: 
  25.  */
  26. struct FsRef {
  27.  /**
  28.  * Enum type for errorCode
  29.  */
  30.   enum NdbfsErrorCodeType {
  31.     fsErrNone=0,
  32.     fsErrHardwareFailed=1,
  33.     fsErrUserError=2,
  34.     fsErrEnvironmentError=3,
  35.     fsErrTemporaryNotAccessible=4,
  36.     fsErrNoSpaceLeftOnDevice=5,
  37.     fsErrPermissionDenied=6,
  38.     fsErrInvalidParameters=7,
  39.     fsErrUnknown=8,
  40.     fsErrNoMoreResources=9,
  41.     fsErrFileDoesNotExist=10,
  42.     fsErrReadUnderflow = 11,
  43.     fsErrMax
  44.   };
  45.   /**
  46.    * Length of signal
  47.    */
  48.   STATIC_CONST( SignalLength = 4 );
  49.   /**
  50.    * DATA VARIABLES
  51.    */
  52.   UintR userPointer;          // DATA 0
  53.   UintR errorCode;            // DATA 1
  54.   UintR osErrorCode;          // DATA 2
  55.   UintR senderData;
  56.   static NdbfsErrorCodeType getErrorCode(const UintR & errorcode);
  57.   static void setErrorCode(UintR & errorcode, NdbfsErrorCodeType errorcodetype);
  58.   static void setErrorCode(UintR & errorcode, UintR errorcodetype);
  59. };
  60. inline
  61. FsRef::NdbfsErrorCodeType 
  62. FsRef::getErrorCode(const UintR & errorcode){
  63.   return (NdbfsErrorCodeType)errorcode;
  64. }
  65. inline
  66. void
  67. FsRef::setErrorCode(UintR & errorcode, NdbfsErrorCodeType errorcodetype){
  68.   ASSERT_MAX(errorcodetype, fsErrMax, "FsRef::setErrorCode");
  69.   errorcode = (UintR)errorcodetype;
  70. }
  71. inline
  72. void
  73. FsRef::setErrorCode(UintR & errorcode, UintR errorcodetype){
  74.   ASSERT_MAX(errorcodetype, fsErrMax, "FsRef::setErrorCode");
  75.   errorcode = errorcodetype;
  76. }
  77. #endif