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 "MEDFileUtilities.hxx"
22 #include "MEDLoaderBase.hxx"
26 med_access_mode MEDFileUtilities::TraduceWriteMode(int medloaderwritemode)
28 switch(medloaderwritemode)
37 throw INTERP_KERNEL::Exception("Invalid write mode specified ! must be 0(write with no question), 1(append) or 2(creation)");
41 const char *MEDFileUtilities::GetReadableMEDFieldType(med_field_type ft)
43 static const char medFloat64[]="MED_FLOAT64";
44 static const char medInt32[]="MED_INT32";
45 static const char medInt64[]="MED_INT64";
55 throw INTERP_KERNEL::Exception("Non supported field type ! Should be FLOAT64, INT32 or INT64 !");
59 void MEDFileUtilities::CheckMEDCode(int code, med_idt fid, const std::string& msg)
63 std::ostringstream oss;
64 oss << "MEDFile has returned an error code (" << code <<") : " << msg;
65 throw INTERP_KERNEL::Exception(oss.str().c_str());
69 void MEDFileUtilities::CheckFileForRead(const std::string& fileName)
71 int status=MEDLoaderBase::getStatusOfFile(fileName);
72 std::ostringstream oss;
73 oss << " File : \"" << fileName << "\"";
76 case MEDLoaderBase::DIR_LOCKED:
78 oss << " has been detected as unreadable : impossible to read anything !";
79 throw INTERP_KERNEL::Exception(oss.str().c_str());
81 case MEDLoaderBase::NOT_EXIST:
83 oss << " has been detected as NOT EXISTING : impossible to read anything !";
84 throw INTERP_KERNEL::Exception(oss.str().c_str());
86 case MEDLoaderBase::EXIST_WRONLY:
88 oss << " has been detected as WRITE ONLY : impossible to read anything !";
89 throw INTERP_KERNEL::Exception(oss.str().c_str());
92 AutoFid fid=MEDfileOpen(fileName.c_str(),MED_ACC_RDONLY);
95 oss << " has been detected as unreadable by MED file : impossible to read anything !";
96 throw INTERP_KERNEL::Exception(oss.str().c_str());
98 oss << " has been detected readable but ";
99 int major,minor,release;
100 MEDfileNumVersionRd(fid,&major,&minor,&release);
101 if(major<2 || (major==2 && minor<2))
103 oss << "version of MED file is < 2.2 : impossible to read anything !";
104 throw INTERP_KERNEL::Exception(oss.str().c_str());
108 MEDFileUtilities::AutoFid::AutoFid(med_idt fid):_fid(fid)
112 MEDFileUtilities::AutoFid::~AutoFid()
117 ParaMEDMEM::MEDFileWritable::MEDFileWritable():_too_long_str(0),_zipconn_pol(2)
121 void ParaMEDMEM::MEDFileWritable::copyOptionsFrom(const MEDFileWritable& other) const
123 _too_long_str=other._too_long_str;
124 _zipconn_pol=other._zipconn_pol;
127 int ParaMEDMEM::MEDFileWritable::getTooLongStrPolicy() const
129 return _too_long_str;
132 void ParaMEDMEM::MEDFileWritable::setTooLongStrPolicy(int newVal)
134 if(newVal!=2 && newVal!=1 && newVal!=0)
135 throw INTERP_KERNEL::Exception("MEDFileWritable::setTooLongStrPolicy : invalid policy should be in 0,1 or 2 !");
136 _too_long_str=newVal;
139 int ParaMEDMEM::MEDFileWritable::getZipConnPolicy()
144 void ParaMEDMEM::MEDFileWritable::setZipConnPolicy(int newVal)