Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / MEDMEM / MEDMEM_TopLevel.hxx
1 //  Copyright (C) 2007-2008  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.
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 #ifndef __MEDMEM_TOPLEVEL_HXX__
23 #define __MEDMEM_TOPLEVEL_HXX__
24
25 #include "MEDMEM_FieldForward.hxx"
26 #include "MEDMEM_Exception.hxx"
27 #include <string>
28
29 namespace MEDMEM
30 {
31   class MED;
32   class MESH;
33 }
34
35 namespace MEDMEM
36 {
37   //read part
38   MED *readMedInFile(const std::string& fileName) throw(MEDEXCEPTION);
39   MESH *readMeshInFile(const std::string& fileName, const std::string& meshName);
40   template<class T>
41   FIELD<T> *readFieldInFile(const std::string& fileName, const std::string& fieldName);
42   //write part
43   void writeMedToFile(const MED *medObj, const std::string& fileName);
44   void writeMeshToFile(const MESH *meshObj, const std::string& fileName);
45   template<class T>
46   void writeFieldToFile(const FIELD<T> *fieldObj, const std::string& fileName);
47 }
48
49 #include "MEDMEM_Field.hxx"
50
51 namespace MEDMEM
52 {
53   template<class T>
54   FIELD<T> *readFieldInFile(const std::string& fileName, const std::string& fieldName)
55   {
56     FIELD<T> *ret=new FIELD<T>;
57     ret->setName(fieldName);
58     driverTypes type=DRIVERFACTORY::deduceDriverTypeFromFileName(fileName);
59     int id=ret->addDriver(type,fileName,fieldName);
60     ret->read(id);
61     return ret;
62   }
63   
64   template<class T>
65   void writeFieldToFile(const FIELD<T> *fieldObj, const std::string& fileName)
66   {
67     FIELD<T> *fieldObjNoC=(FIELD<T> *)fieldObj;
68     driverTypes type=DRIVERFACTORY::deduceDriverTypeFromFileName(fileName);
69     int id=fieldObjNoC->addDriver(type, fileName, fieldObj->getName());
70     fieldObjNoC->write(id);
71   }
72 }
73
74 #endif