Salome HOME
Merge branch 'master' of https://codev-tuleap.cea.fr/plugins/git/salome/smesh
[modules/smesh.git] / src / MEDWrapper / MED_Factory.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "MED_Factory.hxx"
24 #include "MED_Utilities.hxx"
25 #include "MED_Wrapper.hxx"
26
27 #include <stdio.h>
28 #include <errno.h>
29 #include <sstream>
30
31 #include <med.h>
32 extern "C"
33 {
34 #ifndef WIN32
35   #include <unistd.h>
36 #endif
37 }
38 #include <utilities.h>
39
40 namespace MED
41 {
42   bool exists(const std::string& fileName)
43   {
44 #ifdef WIN32
45     return (GetFileAttributes(xmlPath.c_str()) != INVALID_FILE_ATTRIBUTES);
46 #else
47     return (access(fileName.c_str(), F_OK) == 0);
48 #endif
49   }
50
51   bool CheckCompatibility(const std::string& fileName, bool isForAppend)
52   {
53     bool ok = false;
54     // check that file is accessible
55     if ( exists(fileName) ) {
56       // check HDF5 && MED compatibility
57       med_bool hdfok, medok;
58       med_err r0 = MEDfileCompatibility(fileName.c_str(), &hdfok, &medok);
59       //MESSAGE(r0 << " " << hdfok << " " << medok);
60       if ( r0==0 && hdfok && medok ) {
61         med_idt aFid = MEDfileOpen(fileName.c_str(), MED_ACC_RDONLY);
62         if (aFid >= 0) {
63           med_int major, minor, release;
64           med_err ret = MEDfileNumVersionRd(aFid, &major, &minor, &release);
65           //MESSAGE(ret << " " << major << "." << minor << "." << release);
66           if (ret >= 0) {
67             bool isReadOnly = !isForAppend;
68             if ( isReadOnly  || ((major == MED_MAJOR_NUM) && (minor == MED_MINOR_NUM)))
69               ok = true;
70           }
71         }
72         MEDfileClose(aFid);
73       }
74     }
75     return ok;
76   }
77
78   bool GetMEDVersion(const std::string& fileName, int& major, int& minor, int& release)
79   {
80     bool ok = false;
81     major = minor = release = 0;
82     med_idt aFid = MEDfileOpen(fileName.c_str(), MED_ACC_RDONLY);
83     if (aFid >= 0) {
84       med_int _major, _minor, _release;
85       med_err ret = MEDfileNumVersionRd(aFid, &_major, &_minor, &_release);
86       if (ret == 0) {
87         major = _major;
88         minor = _minor;
89         release = _release;
90         ok = true;
91       }
92       MEDfileClose(aFid);
93     }
94     return ok;
95   }
96
97   std::string GetMEDVersion(const std::string& fileName)
98   {
99     std::string version;
100     int major, minor, release;
101     if (GetMEDVersion(fileName, major, minor, release)) {
102       std::ostringstream os;
103       os << major << "." << minor << "." << release;
104       version = os.str();
105     }
106     return version;
107   }
108
109   PWrapper CrWrapperR(const std::string& fileName)
110   {
111     if (!CheckCompatibility(fileName)) {
112       EXCEPTION(std::runtime_error, "Cannot open file '"<<fileName<<"'.");
113     }
114     return new MED::TWrapper(fileName);
115   }
116
117   PWrapper CrWrapperW(const std::string& fileName, int theMinor)
118   {
119     if (!CheckCompatibility(fileName, true))
120       remove(fileName.c_str());
121     return new MED::TWrapper(fileName, theMinor);
122   }
123 }