recordTypeInfo.cc
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:4k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. #include "recordTypeInfo.hh"
  19. using namespace hadoop;
  20. RecordTypeInfo::RecordTypeInfo() 
  21. {
  22.   pStid = new StructTypeID();
  23. }
  24. RecordTypeInfo::RecordTypeInfo(const char *pName): name(pName)
  25. {
  26.   pStid = new StructTypeID();
  27. }
  28. /*RecordTypeInfo::RecordTypeInfo(const RecordTypeInfo& rti): name(rti.name)
  29. {
  30.   // clone the typeinfos from rti and add them
  31.   for (unsigned int i=0; i<rti.typeInfos.size(); i++) {
  32.     typeInfos.push_back(rti.typeInfos[i]->clone());
  33.   }
  34.   // clone the map
  35.   for (std::map<std::string, RecordTypeInfo*>::const_iterator iter=rti.structRTIs.begin(); 
  36.        iter!=rti.structRTIs.end(); ++iter) {
  37.     structRTIs[iter->first] = iter->second->clone();
  38.   }
  39. }*/
  40. RecordTypeInfo::~RecordTypeInfo()
  41. {
  42.   if (NULL != pStid) 
  43.     delete pStid;
  44.   /*for (unsigned int i=0; i<typeInfos.size(); i++) {
  45.     delete typeInfos[i];
  46.   }
  47.   typeInfos.clear();
  48.   for (std::map<std::string, RecordTypeInfo*>::const_iterator iter=structRTIs.begin(); 
  49.        iter!=structRTIs.end(); ++iter) {
  50.     // delete the RTI objects
  51.     delete iter->second;
  52.   }
  53.   structRTIs.clear();*/
  54. }
  55. void RecordTypeInfo::addField(const std::string* pFieldID, const TypeID* pTypeID)
  56. {
  57.   pStid->getFieldTypeInfos().push_back(new FieldTypeInfo(pFieldID, pTypeID));
  58. }
  59. void RecordTypeInfo::addAll(std::vector<FieldTypeInfo*>& vec)
  60. {
  61.   // we need to copy object clones into our own vector
  62.   for (unsigned int i=0; i<vec.size(); i++) {
  63.     pStid->getFieldTypeInfos().push_back(vec[i]->clone());
  64.   }
  65. }
  66. // make a copy of typeInfos and return it
  67. /*std::vector<TypeInfo*>& RecordTypeInfo::getClonedTypeInfos()
  68. {
  69.   std::vector<TypeInfo*>* pNewVec = new std::vector<TypeInfo*>();
  70.   for (unsigned int i=0; i<typeInfos.size(); i++) {
  71.     pNewVec->push_back(typeInfos[i]->clone());
  72.   }
  73.   return *pNewVec;
  74. } */
  75. const std::vector<FieldTypeInfo*>& RecordTypeInfo::getFieldTypeInfos() const
  76. {
  77.   return pStid->getFieldTypeInfos();
  78. }
  79. RecordTypeInfo* RecordTypeInfo::getNestedStructTypeInfo(const char *structName) const
  80. {
  81.   StructTypeID* p = pStid->findStruct(structName);
  82.   if (NULL == p) return NULL;
  83.   return new RecordTypeInfo(structName, p);
  84.   /*std::string s(structName);
  85.   std::map<std::string, RecordTypeInfo*>::const_iterator iter = structRTIs.find(s);
  86.   if (iter == structRTIs.end()) {
  87.     return NULL;
  88.   }
  89.   return iter->second;*/
  90. }
  91. void RecordTypeInfo::serialize(::hadoop::OArchive& a_, const char* tag) const
  92. {
  93.   a_.startRecord(*this, tag);
  94.   // name
  95.   a_.serialize(name, tag);
  96.   /*// number of elements
  97.   a_.serialize((int32_t)typeInfos.size(), tag);
  98.   // write out each element
  99.   for (std::vector<FieldTypeInfo*>::const_iterator iter=typeInfos.begin();
  100.        iter!=typeInfos.end(); ++iter) {
  101.     (*iter)->serialize(a_, tag);
  102.     }*/
  103.   pStid->serializeRest(a_, tag);
  104.   a_.endRecord(*this, tag);
  105. }
  106. void RecordTypeInfo::print(int space) const
  107. {
  108.   for (int i=0; i<space; i++) {
  109.     printf(" ");
  110.   }
  111.   printf("RecordTypeInfo::%sn", name.c_str());
  112.   pStid->print(space);
  113.   /*for (unsigned i=0; i<typeInfos.size(); i++) {
  114.     typeInfos[i]->print(space+2);
  115.     }*/
  116. }
  117. void RecordTypeInfo::deserialize(::hadoop::IArchive& a_, const char* tag)
  118. {
  119.   a_.startRecord(*this, tag);
  120.   // name
  121.   a_.deserialize(name, tag);
  122.   pStid->deserialize(a_, tag);
  123.   a_.endRecord(*this, tag);
  124. }