Packer.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 PACKER_HPP
  14. #define PACKER_HPP
  15. #include <TransporterDefinitions.hpp>
  16. #include "TransporterInternalDefinitions.hpp"
  17. class Packer {
  18.   Uint32 preComputedWord1;
  19.   Uint32 checksumUsed;     // Checksum shall be included in the message
  20.   Uint32 signalIdUsed;     // Senders signal id shall be included in the message
  21. public:
  22.   Packer(bool signalId, bool checksum);
  23.   
  24.   Uint32 getMessageLength(const SignalHeader* header, 
  25.   const LinearSectionPtr ptr[3]) const ;
  26.   Uint32 getMessageLength(const SignalHeader* header, 
  27.   const SegmentedSectionPtr ptr[3]) const ;
  28.   
  29.   void pack(Uint32 * insertPtr, 
  30.     Uint32 prio, 
  31.     const SignalHeader* header, 
  32.     const Uint32* data,
  33.     const LinearSectionPtr ptr[3]) const ;
  34.   void pack(Uint32 * insertPtr, 
  35.     Uint32 prio, 
  36.     const SignalHeader* header, 
  37.     const Uint32* data,
  38.     class SectionSegmentPool & thePool,
  39.     const SegmentedSectionPtr ptr[3]) const ;
  40. };
  41. inline
  42. Uint32
  43. Packer::getMessageLength(const SignalHeader* header,
  44.  const LinearSectionPtr ptr[3]) const {
  45.   Uint32 tLen32 = header->theLength;
  46.   Uint32 no_seg = header->m_noOfSections; 
  47.   tLen32 += checksumUsed;
  48.   tLen32 += signalIdUsed;
  49.   tLen32 += no_seg;
  50.   for(Uint32 i = 0; i<no_seg; i++){
  51.     tLen32 += ptr[i].sz;
  52.   }
  53.   
  54.   return (tLen32 * 4) + sizeof(Protocol6);
  55. }
  56. inline
  57. Uint32
  58. Packer::getMessageLength(const SignalHeader* header,
  59.  const SegmentedSectionPtr ptr[3]) const {
  60.   Uint32 tLen32 = header->theLength;
  61.   Uint32 no_seg = header->m_noOfSections; 
  62.   tLen32 += checksumUsed;
  63.   tLen32 += signalIdUsed;
  64.   tLen32 += no_seg;
  65.   
  66.   for(Uint32 i = 0; i<no_seg; i++){
  67.     tLen32 += ptr[i].sz;
  68.   }
  69.   
  70.   return (tLen32 * 4) + sizeof(Protocol6);
  71. }
  72. #endif