1 // Copyright (C) 2007-2015 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Anthony Geay (CEA/DEN)
21 #include "MEDCouplingFieldTemplate.hxx"
22 #include "MEDCouplingMesh.hxx"
23 #include "MEDCouplingFieldDouble.hxx"
24 #include "MEDCouplingFieldDiscretization.hxx"
28 using namespace ParaMEDMEM;
30 MEDCouplingFieldTemplate *MEDCouplingFieldTemplate::New(const MEDCouplingFieldDouble& f)
32 return new MEDCouplingFieldTemplate(f);
36 * The user should \b not use this method. Only useful for CORBA serialization/unserialization.
38 MEDCouplingFieldTemplate *MEDCouplingFieldTemplate::New(TypeOfField type)
40 return new MEDCouplingFieldTemplate(type);
43 MEDCouplingFieldTemplate::MEDCouplingFieldTemplate(const MEDCouplingFieldDouble& f):MEDCouplingField(f,false)
49 MEDCouplingFieldTemplate::MEDCouplingFieldTemplate(TypeOfField type):MEDCouplingField(type)
53 void MEDCouplingFieldTemplate::checkCoherency() const
56 throw INTERP_KERNEL::Exception("MEDCouplingFieldTemplate::checkCoherency : Empty mesh !");
59 std::string MEDCouplingFieldTemplate::simpleRepr() const
61 std::ostringstream ret;
62 ret << "FieldTemplate with name : \"" << getName() << "\"\n";
63 ret << "Description of field is : \"" << getDescription() << "\"\n";
65 { ret << "FieldTemplate space discretization is : " << _type->getStringRepr() << "\n"; }
67 { ret << "FieldTemplate has no spatial discretization !\n"; }
68 ret << "FieldTemplate nature of field is : \"" << MEDCouplingNatureOfField::GetReprNoThrow(_nature) << "\"\n";
70 ret << "Mesh support information :\n__________________________\n" << _mesh->simpleRepr();
72 ret << "Mesh support information : No mesh set !\n";
76 std::string MEDCouplingFieldTemplate::advancedRepr() const
81 void MEDCouplingFieldTemplate::getTinySerializationIntInformation(std::vector<int>& tinyInfo) const
83 if(!((const MEDCouplingFieldDiscretization *)_type))
84 throw INTERP_KERNEL::Exception("No spatial discretization underlying this field to perform getTinySerializationIntInformation !");
86 tinyInfo.push_back((int)_type->getEnum());
87 tinyInfo.push_back((int)_nature);
88 std::vector<int> tinyInfo2;
89 _type->getTinySerializationIntInformation(tinyInfo2);
90 tinyInfo.insert(tinyInfo.end(),tinyInfo2.begin(),tinyInfo2.end());
91 tinyInfo.push_back((int)tinyInfo2.size());
94 void MEDCouplingFieldTemplate::getTinySerializationDbleInformation(std::vector<double>& tinyInfo) const
96 if(!((const MEDCouplingFieldDiscretization *)_type))
97 throw INTERP_KERNEL::Exception("No spatial discretization underlying this field to perform getTinySerializationDbleInformation !");
99 _type->getTinySerializationDbleInformation(tinyInfo);
102 void MEDCouplingFieldTemplate::getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const
105 tinyInfo.push_back(_name);
106 tinyInfo.push_back(_desc);
109 void MEDCouplingFieldTemplate::resizeForUnserialization(const std::vector<int>& tinyInfoI, DataArrayInt *&dataInt)
111 if(!((const MEDCouplingFieldDiscretization *)_type))
112 throw INTERP_KERNEL::Exception("No spatial discretization underlying this field to perform resizeForUnserialization !");
114 std::vector<int> tinyInfoITmp(tinyInfoI.begin()+2,tinyInfoI.end());
115 _type->resizeForUnserialization(tinyInfoITmp,dataInt);
118 void MEDCouplingFieldTemplate::finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<double>& tinyInfoD, const std::vector<std::string>& tinyInfoS)
120 if(!((const MEDCouplingFieldDiscretization *)_type))
121 throw INTERP_KERNEL::Exception("No spatial discretization underlying this field to perform finishUnserialization !");
122 _nature=(NatureOfField)tinyInfoI[1];
123 _type->finishUnserialization(tinyInfoD);
128 void MEDCouplingFieldTemplate::serialize(DataArrayInt *&dataInt) const
130 _type->getSerializationIntArray(dataInt);
133 void MEDCouplingFieldTemplate::reprQuickOverview(std::ostream& stream) const
135 stream << "MEDCouplingFieldTemplate C++ instance at " << this << ". Name : \"" << _name << "\"." << std::endl;
139 nat=MEDCouplingNatureOfField::GetRepr(_nature);
140 stream << "Nature of field template : " << nat << ".\n";
142 catch(INTERP_KERNEL::Exception& /*e*/)
144 const MEDCouplingFieldDiscretization *fd(_type);
146 stream << "No spatial discretization set !";
148 fd->reprQuickOverview(stream);
151 stream << "\nNo mesh support defined !";
154 std::ostringstream oss;
155 _mesh->reprQuickOverview(oss);
156 std::string tmp(oss.str());
157 stream << "\nMesh info : " << tmp.substr(0,tmp.find('\n'));