TrigAttrInfo.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 TRIG_ATTRINFO_HPP
  14. #define TRIG_ATTRINFO_HPP
  15. #include "SignalData.hpp"
  16. #include <NodeBitmask.hpp>
  17. #include <trigger_definitions.h>
  18. #include <string.h>
  19. /**
  20.  * TrigAttrInfo
  21.  *
  22.  * This signal is sent by TUP to signal
  23.  * that a trigger has fired
  24.  */
  25. class TrigAttrInfo {
  26.   /**
  27.    * Sender(s)
  28.    */
  29.   // API
  30.   
  31.   /**
  32.    * Sender(s) / Reciver(s)
  33.    */
  34.   friend class Dbtup;
  35.   
  36.   /**
  37.    * Reciver(s)
  38.    */
  39.   friend class Dbtc;
  40.   friend class Backup;
  41.   friend class SumaParticipant;
  42.   /**
  43.    * For printing
  44.    */
  45.   friend bool printTRIG_ATTRINFO(FILE * output, const Uint32 * theData, Uint32 len, Uint16 receiverBlockNo);
  46. public:
  47. enum AttrInfoType { 
  48.   PRIMARY_KEY = 0, 
  49.   BEFORE_VALUES = 1, 
  50.   AFTER_VALUES = 2 
  51. };
  52.   STATIC_CONST( DataLength = 22 );
  53.   STATIC_CONST( StaticLength = 3 );
  54. private:
  55.   Uint32 m_connectionPtr; 
  56.   Uint32 m_trigId;
  57.   Uint32 m_type;
  58.   Uint32 m_data[DataLength];
  59.   // Public methods
  60. public:
  61.   Uint32 getConnectionPtr() const;
  62.   void setConnectionPtr(Uint32);  
  63.   AttrInfoType getAttrInfoType() const;
  64.   void setAttrInfoType(AttrInfoType anAttrType);
  65.   Uint32 getTriggerId() const;
  66.   void setTriggerId(Uint32 aTriggerId);
  67.   Uint32 getTransactionId1() const;
  68.   void setTransactionId1(Uint32 aTransId);
  69.   Uint32 getTransactionId2() const;
  70.   void setTransactionId2(Uint32 aTransId);
  71.   Uint32* getData() const;
  72.   int setData(Uint32* aDataBuf, Uint32 aDataLen);
  73. };
  74. inline
  75. Uint32 TrigAttrInfo::getConnectionPtr() const
  76. {
  77.   return m_connectionPtr;
  78. }
  79. inline 
  80. void TrigAttrInfo::setConnectionPtr(Uint32 aConnectionPtr)
  81. {
  82.   m_connectionPtr = aConnectionPtr;
  83. }
  84. inline
  85. TrigAttrInfo::AttrInfoType TrigAttrInfo::getAttrInfoType() const
  86. {
  87.   return  (TrigAttrInfo::AttrInfoType) m_type;
  88. }
  89. inline
  90. void TrigAttrInfo::setAttrInfoType(TrigAttrInfo::AttrInfoType anAttrType)
  91. {
  92.   m_type = (Uint32) anAttrType;
  93. }
  94. inline
  95. Uint32 TrigAttrInfo::getTriggerId() const
  96. {
  97.   return m_trigId;
  98. }
  99. inline
  100. void TrigAttrInfo::setTriggerId(Uint32 aTriggerId)
  101. {
  102.   m_trigId = aTriggerId;
  103. }
  104. inline
  105. Uint32* TrigAttrInfo::getData() const
  106. {
  107.   return (Uint32*)&m_data[0];
  108. }
  109. inline
  110. int TrigAttrInfo::setData(Uint32* aDataBuf, Uint32 aDataLen)
  111. {
  112.   if (aDataLen > DataLength)
  113.     return -1;
  114.   memcpy(m_data, aDataBuf, aDataLen*sizeof(Uint32));
  115.   return 0;
  116. }
  117. #endif