LongSignal.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 LONG_SIGNAL_HPP
  14. #define LONG_SIGNAL_HPP
  15. #include "pc.hpp"
  16. #include <ArrayPool.hpp>
  17. /**
  18.  * Section handling
  19.  */
  20. struct SectionSegment {
  21.   STATIC_CONST( DataLength = NDB_SECTION_SEGMENT_SZ );
  22.   
  23.   Uint32 m_ownerRef;
  24.   Uint32 m_sz;
  25.   Uint32 m_lastSegment;
  26.   union {
  27.     Uint32 m_nextSegment;
  28.     Uint32 nextPool;
  29.   };
  30.   Uint32 theData[DataLength];
  31. };
  32. /**
  33.  * Pool for SectionSegments
  34.  */
  35. class SectionSegmentPool : public ArrayPool<SectionSegment> {};
  36. /**
  37.  * And the instance
  38.  */
  39. extern SectionSegmentPool g_sectionSegmentPool;
  40. /**
  41.  * Function prototypes
  42.  */
  43. void print(SegmentedSectionPtr ptr, FILE* out);
  44. void copy(SegmentedSectionPtr dst, Uint32 * src, Uint32 len);
  45. void copy(Uint32 * dst, SegmentedSectionPtr src);
  46. extern class SectionSegmentPool g_sectionSegmentPool;
  47. void getSection(SegmentedSectionPtr & ptr, Uint32 id);
  48. void linkSegments(Uint32 head, Uint32 tail);
  49. void getSections(Uint32 secCount, SegmentedSectionPtr ptr[3]);
  50. void releaseSections(Uint32 secCount, SegmentedSectionPtr ptr[3]);
  51. #include "DataBuffer.hpp"
  52. template<Uint32 sz>
  53. void
  54. append(DataBuffer<sz>& dst, SegmentedSectionPtr ptr, SectionSegmentPool& pool){
  55.   Uint32 len = ptr.sz;
  56.   while(len > SectionSegment::DataLength){
  57.     dst.append(ptr.p->theData, SectionSegment::DataLength);
  58.     ptr.p = pool.getPtr(ptr.p->m_nextSegment);
  59.     len -= SectionSegment::DataLength;
  60.   }
  61.   dst.append(ptr.p->theData, len);
  62. }
  63. #endif