NDBT_ResultRow.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 <ndb_global.h>
  14. #include "NDBT_ResultRow.hpp"
  15. #include <NdbOut.hpp>
  16. #include <NdbSchemaCon.hpp>
  17. NDBT_ResultRow::NDBT_ResultRow(const NdbDictionary::Table& tab,
  18.        char attrib_delimiter)
  19.   : m_table(tab)
  20. {
  21.   assert(tab.getObjectStatus() == NdbDictionary::Object::Retrieved);
  22.   cols = tab.getNoOfColumns();
  23.   names = new char *       [cols];
  24.   data  = new NdbRecAttr * [cols];
  25.   
  26.   for(int i = 0; i<cols; i++){
  27.     names[i] = new char[255];
  28.     strcpy(names[i], tab.getColumn(i)->getName());
  29.   }  
  30.   ad[0] = attrib_delimiter;
  31.   ad[1] = 0;
  32.   m_ownData = false;
  33. }
  34. NDBT_ResultRow::~NDBT_ResultRow(){
  35.   for(int i = 0; i<cols; i++){
  36.     delete [] names[i];
  37.   }  
  38.   delete [] names;
  39.   if(m_ownData){
  40.     for(int i = 0; i<cols; i++)
  41.       delete data[i];
  42.   }
  43.   delete [] data;
  44. }
  45. NdbRecAttr* & 
  46. NDBT_ResultRow::attributeStore(int i){
  47.   return data[i];
  48. }
  49. const NdbRecAttr*
  50. NDBT_ResultRow::attributeStore(int i) const {
  51.   return data[i];
  52. }
  53. const 
  54. NdbRecAttr * 
  55. NDBT_ResultRow::attributeStore(const char* name) const {
  56.   for(int i = 0; i<cols; i++){
  57.     if (strcmp(names[i], name) == 0)
  58.       return data[i];
  59.   }  
  60.   assert(false);
  61.   return 0;
  62. }
  63. NdbOut & 
  64. NDBT_ResultRow::header (NdbOut & out) const {
  65.   for(int i = 0; i<cols; i++){
  66.     out << names[i];
  67.     if (i < cols-1)
  68.       out << ad;
  69.   }
  70.   return out;
  71. }
  72. BaseString NDBT_ResultRow::c_str() {
  73.   
  74.   BaseString str;
  75.   
  76.   char buf[10];
  77.   for(int i = 0; i<cols; i++){
  78.     if(data[i]->isNULL()){
  79.       sprintf(buf, "NULL");
  80.       str.append(buf);    
  81.     }else{
  82.       Uint32* p = (Uint32*)data[i]->aRef();
  83.       Uint32 sizeInBytes = data[i]->attrSize() * data[i]->arraySize();
  84.       for (Uint32 j = 0; j < sizeInBytes; j+=(sizeof(Uint32))){
  85. str.append("H'");
  86. sprintf(buf, "%.8x", *p);
  87. p++;
  88. str.append(buf);
  89. if ((j + sizeof(Uint32)) < sizeInBytes)
  90.   str.append(", ");
  91.       }
  92.     }
  93.     str.append("n");
  94.   }
  95.   str.append("*");
  96.   
  97.   //ndbout << "NDBT_ResultRow::c_str() = " << str.c_str() << endl;
  98.   
  99.   return str;
  100. }
  101. NdbOut & 
  102. operator << (NdbOut& ndbout, const NDBT_ResultRow & res) {
  103.   if (res.cols != 0)
  104.   {
  105.     ndbout << *(res.data[0]);
  106.     for(int i = 1; i<res.cols; i++)
  107.       ndbout << res.ad << *(res.data[i]);
  108.   }
  109.   return ndbout;
  110. }
  111. NDBT_ResultRow *
  112. NDBT_ResultRow::clone () const {
  113.   NDBT_ResultRow * row = new NDBT_ResultRow(m_table, ad[0]);
  114.   row->m_ownData = true;
  115.   Uint32 noOfColumns = m_table.getNoOfColumns();
  116.   for(Uint32 i = 0; i < noOfColumns; i++){
  117.     row->data[i] = data[i]->clone();
  118.   }
  119.   
  120.   return row;
  121. }