Salome HOME
Merge from V6_main (04/10/2012)
[modules/med.git] / src / MEDCoupling / MEDCouplingFieldTemplate.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20
21 #include "MEDCouplingFieldTemplate.hxx"
22 #include "MEDCouplingMesh.hxx"
23 #include "MEDCouplingFieldDouble.hxx"
24 #include "MEDCouplingFieldDiscretization.hxx"
25
26 #include <sstream>
27
28 using namespace ParaMEDMEM;
29
30 MEDCouplingFieldTemplate *MEDCouplingFieldTemplate::New(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception)
31 {
32   return new MEDCouplingFieldTemplate(f);
33 }
34
35 /*!
36  * The user should \b not use this method. Only useful for CORBA serialization/unserialization.
37  */
38 MEDCouplingFieldTemplate *MEDCouplingFieldTemplate::New(TypeOfField type)
39 {
40   return new MEDCouplingFieldTemplate(type);
41 }
42
43 MEDCouplingFieldTemplate::MEDCouplingFieldTemplate(const MEDCouplingFieldDouble *f) throw(INTERP_KERNEL::Exception):MEDCouplingField(*f) 
44 {
45   checkCoherency();
46 }
47
48 MEDCouplingFieldTemplate::MEDCouplingFieldTemplate(TypeOfField type):MEDCouplingField(type)
49 {
50 }
51
52 void MEDCouplingFieldTemplate::checkCoherency() const throw(INTERP_KERNEL::Exception)
53 {
54   if(_mesh==0)
55     throw INTERP_KERNEL::Exception("MEDCouplingFieldTemplate::checkCoherency : Empty mesh !");
56 }
57
58 std::string MEDCouplingFieldTemplate::simpleRepr() const
59 {
60   std::ostringstream ret;
61   ret << "FieldTemplate with name : \"" << getName() << "\"\n";
62   ret << "Description of field is : \"" << getDescription() << "\"\n";
63   ret << "FieldTemplate space discretization is : " << _type->getStringRepr() << "\n";
64   ret << "FieldTemplate nature of field is : " << MEDCouplingNatureOfField::getRepr(_nature) << "\n";
65   if(_mesh)
66     ret << "Mesh support information :\n__________________________\n" << _mesh->simpleRepr();
67   else
68     ret << "Mesh support information : No mesh set !\n";
69   return ret.str();
70 }
71
72 std::string MEDCouplingFieldTemplate::advancedRepr() const
73 {
74   return simpleRepr();
75 }
76
77 void MEDCouplingFieldTemplate::getTinySerializationIntInformation(std::vector<int>& tinyInfo) const
78 {
79   tinyInfo.clear();
80   tinyInfo.push_back((int)_type->getEnum());
81   tinyInfo.push_back((int)_nature);
82   std::vector<int> tinyInfo2;
83   _type->getTinySerializationIntInformation(tinyInfo2);
84   tinyInfo.insert(tinyInfo.end(),tinyInfo2.begin(),tinyInfo2.end());
85   tinyInfo.push_back((int)tinyInfo2.size());
86 }
87
88 void MEDCouplingFieldTemplate::getTinySerializationDbleInformation(std::vector<double>& tinyInfo) const
89 {
90   tinyInfo.clear();
91   _type->getTinySerializationDbleInformation(tinyInfo);
92 }
93
94 void MEDCouplingFieldTemplate::getTinySerializationStrInformation(std::vector<std::string>& tinyInfo) const
95 {
96   tinyInfo.clear();
97   tinyInfo.push_back(_name);
98   tinyInfo.push_back(_desc);
99 }
100
101 void MEDCouplingFieldTemplate::resizeForUnserialization(const std::vector<int>& tinyInfoI, DataArrayInt *&dataInt)
102 {
103   dataInt=0;
104   std::vector<int> tinyInfoITmp(tinyInfoI.begin()+2,tinyInfoI.end());
105   _type->resizeForUnserialization(tinyInfoITmp,dataInt);
106 }
107
108 void MEDCouplingFieldTemplate::finishUnserialization(const std::vector<int>& tinyInfoI, const std::vector<double>& tinyInfoD, const std::vector<std::string>& tinyInfoS)
109 {
110   _nature=(NatureOfField)tinyInfoI[1];
111   _type->finishUnserialization(tinyInfoD);
112   _name=tinyInfoS[0];
113   _desc=tinyInfoS[1];
114 }
115
116 void MEDCouplingFieldTemplate::serialize(DataArrayInt *&dataInt) const
117 {
118   _type->getSerializationIntArray(dataInt);
119 }
120