SectionReader.cpp
上传用户: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. #include <SectionReader.hpp>
  14. #include <TransporterDefinitions.hpp>
  15. #include "LongSignal.hpp"
  16. #if 0
  17.   Uint32 m_len;
  18.   class SectionSegmentPool & m_pool;
  19.   class SectionSegment * m_head;
  20.   class SectionSegment * m_currentPos;
  21. #endif
  22. SectionReader::SectionReader
  23. (struct SegmentedSectionPtr & ptr, class SectionSegmentPool & pool)
  24.   : m_pool(pool)
  25. {
  26.   if(ptr.p == 0){
  27.     m_pos = 0;
  28.     m_len = 0;
  29.     m_head = 0;
  30.     m_currentSegment = 0;
  31.   } else {
  32.     m_pos = 0;
  33.     m_len = ptr.p->m_sz;
  34.     m_head = ptr.p;
  35.     m_currentSegment = ptr.p;
  36.   }
  37. }
  38. void
  39. SectionReader::reset(){
  40.   m_pos = 0;
  41.   m_currentSegment = m_head;
  42. }
  43. bool
  44. SectionReader::step(Uint32 len){
  45.   if(m_pos + len >= m_len) {
  46.     m_pos++;
  47.     return false;
  48.   }
  49.   while(len > SectionSegment::DataLength){
  50.     m_currentSegment = m_pool.getPtr(m_currentSegment->m_nextSegment);
  51.     len -= SectionSegment::DataLength;
  52.     m_pos += SectionSegment::DataLength;
  53.   }
  54.   Uint32 ind = m_pos % SectionSegment::DataLength;
  55.   while(len > 0){
  56.     len--;
  57.     m_pos++;
  58.     ind++;
  59.     if(ind == SectionSegment::DataLength){
  60.       ind = 0;
  61.       m_currentSegment = m_pool.getPtr(m_currentSegment->m_nextSegment);
  62.     }
  63.   }
  64.   return true;
  65. }
  66. bool
  67. SectionReader::getWord(Uint32 * dst){
  68.   if (peekWord(dst)) {
  69.     step(1);
  70.     return true;
  71.   }
  72.   return false;
  73. }
  74. bool
  75. SectionReader::peekWord(Uint32 * dst) const {
  76.   if(m_pos < m_len){
  77.     Uint32 ind = m_pos % SectionSegment::DataLength;
  78.     * dst = m_currentSegment->theData[ind];
  79.     return true;
  80.   }
  81.   return false;
  82. }
  83. bool
  84. SectionReader::peekWords(Uint32 * dst, Uint32 len) const {
  85.   if(m_pos + len > m_len)
  86.     return false;
  87.   Uint32 ind = (m_pos % SectionSegment::DataLength);
  88.   Uint32 left = SectionSegment::DataLength - ind;
  89.   SectionSegment * p = m_currentSegment;
  90.   while(len > left){
  91.     memcpy(dst, &p->theData[ind], 4 * left);
  92.     dst += left;
  93.     len -= left;
  94.     ind = 0;
  95.     left = SectionSegment::DataLength;
  96.     p = m_pool.getPtr(p->m_nextSegment);
  97.   }
  98.   memcpy(dst, &p->theData[ind], 4 * len);
  99.   return true;
  100. }
  101. bool
  102. SectionReader::getWords(Uint32 * dst, Uint32 len){
  103.   if(m_pos + len > m_len)
  104.     return false;
  105.   Uint32 ind = (m_pos % SectionSegment::DataLength);
  106.   Uint32 left = SectionSegment::DataLength - ind;
  107.   SectionSegment * p = m_currentSegment;
  108.   while(len > left){
  109.     memcpy(dst, &p->theData[ind], 4 * left);
  110.     dst += left;
  111.     len -= left;
  112.     ind = 0;
  113.     left = SectionSegment::DataLength;
  114.     p = m_pool.getPtr(p->m_nextSegment);
  115.   }
  116.   memcpy(dst, &p->theData[ind], 4 * len);
  117.   m_pos += len;
  118.   m_currentSegment = p;
  119.   return true;
  120. }