GCIBuffer.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

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 <ndb_global.h>
  14. #include "GCIBuffer.hpp"
  15. /*****************************************************************************
  16.  * Constructor / Destructor
  17.  *****************************************************************************/
  18. GCIBuffer::GCIBuffer(Uint32 gci, Uint32 id) 
  19. {
  20.   m_gci = gci; 
  21.   m_id = id;
  22.   m_complete = false;
  23.   m_receivedBytes = 0;
  24. }
  25. GCIBuffer::~GCIBuffer() 
  26. {
  27.   /**
  28.    *  Loop through all pages and delete them
  29.    */
  30.   for(Uint32 i=0; i<m_pageList.size(); i++) {
  31.     delete m_pageList[i];
  32.     m_pageList[i] = 0;
  33.   } 
  34.   m_pageList.clear();
  35.   //  m_pageList = 0;
  36. }
  37. /*****************************************************************************
  38.  * Inserts
  39.  *****************************************************************************/
  40. void
  41. GCIBuffer::insertLogRecord(Uint32 tableId, Uint32 operation,
  42.    class LinearSectionPtr ptr[3]) 
  43. {
  44.   GCIPage * p;
  45.   if(m_pageList.size() == 0) {
  46.     p = new GCIPage(m_gci);
  47.     assert(p != NULL);
  48.     m_pageList.push_back(p);
  49.   }
  50.   p = m_pageList.back();
  51.   if (!p->insertLogRecord(tableId, operation, ptr)) {
  52.     /**
  53.      * GCIPage is full.
  54.      */
  55.     GCIPage * newPage = new GCIPage(m_gci);
  56.     assert(newPage != NULL);
  57.     m_pageList.push_back(newPage);
  58.     bool res = newPage->insertLogRecord(tableId, operation, ptr);
  59.     
  60.     if(!res) {
  61.       ndbout << "GCIBuffer: gci : " << m_gci << endl;
  62.       assert(res); 
  63.     }
  64.   }
  65. }
  66. /**
  67.  * @todo: We must be able to distinguish between Scan meta 
  68.  *   data and log meta data. 
  69.  *        Currently only scan meta data is considered.
  70.  */ 
  71. void
  72. GCIBuffer::insertMetaRecord(Uint32 tableId, class LinearSectionPtr ptr[3]) 
  73. {
  74.   GCIPage * p;
  75.   if(m_pageList.size()==0) {                          
  76.     p = new GCIPage(m_gci);
  77.     assert(p != NULL);
  78.     m_pageList.push_back(p);
  79.   }
  80.   
  81.   p = m_pageList.back();
  82.   
  83.   if (!p->insertMetaRecord(tableId, ptr)) {           
  84.     /**
  85.      * Page is full.
  86.      */
  87.     GCIPage * newPage = new GCIPage(m_gci);
  88.     assert(newPage != NULL);
  89.     m_pageList.push_back(newPage);
  90.     
  91.     bool res = newPage->insertMetaRecord(tableId, ptr);
  92.     assert(res);
  93.   }
  94. }
  95. void
  96. GCIBuffer::insertPage(Uint32 gci, char * dataPtr, Uint32 dataBLen) 
  97. {
  98.   /**
  99.    * allocate a new GCIPage
  100.    */
  101.   GCIPage *  page = new GCIPage(gci);
  102.   assert(page != 0);
  103.   /**
  104.    * copy data into page
  105.    */
  106.   page->copyDataToPage(dataPtr, dataBLen);
  107.   
  108.   /**
  109.    * put page on pagelist.
  110.    */
  111.   m_pageList.push_back(page);
  112.   
  113.   /**
  114.    * Update GCI Buffer received bytes
  115.    */
  116.   m_receivedBytes += dataBLen;
  117. }
  118. /*****************************************************************************
  119.  * Iterator
  120.  *****************************************************************************/
  121. GCIBuffer::iterator::iterator(const GCIBuffer* gciBuffer) 
  122. {
  123.   m_gciBuffer = gciBuffer;
  124.   m_iterator=0;
  125. }
  126. GCIPage * 
  127. GCIBuffer::iterator::first() 
  128. {
  129.   m_iterator = 0;
  130.   if(m_gciBuffer->m_pageList.size() == 0) return NULL;
  131.   return (m_gciBuffer->m_pageList)[m_iterator];
  132. }
  133. GCIPage * 
  134. GCIBuffer::iterator::next() 
  135. {
  136.   m_iterator++;
  137.   if(m_gciBuffer->m_pageList.size() == 0) return NULL;
  138.   if((m_iterator<m_gciBuffer->m_pageList.size())) 
  139.     return (m_gciBuffer->m_pageList)[m_iterator];
  140.   else
  141.     return NULL;
  142. }
  143. bool 
  144. GCIBuffer::iterator::exists() 
  145. {
  146.   return (m_iterator < m_gciBuffer->m_pageList.size());
  147. }