Salome HOME
469430a3405cd85e536937ad3c45a9e7ddcbbd43
[modules/kernel.git] / src / HDFPersist / HDFfile.cc
1 //  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : HDFfile.cc
25 //  Module : SALOME
26
27 using namespace std;
28 extern "C"
29 {
30 #include "hdfi.h"
31 #include <unistd.h>
32 #include <string.h>
33 }
34 #include <iostream.h>
35 #include "HDFfile.hxx"
36 #include "HDFexception.hxx"
37
38 herr_t file_attr(hid_t loc_id, const char *attr_name, void *operator_data)
39 {
40    *(char**)operator_data = new char[strlen(attr_name)+1];
41    strcpy(*(char**)operator_data, attr_name);
42    return 1;
43 }
44
45 HDFfile::HDFfile(char *name)
46   : HDFcontainerObject(name) 
47 {
48   _attribute = NULL;
49 }
50
51 void HDFfile::CreateOnDisk()
52 {
53   if ((_id = HDFfileCreate(_name)) < 0) 
54     throw HDFexception("Can't create HDF file");
55 }
56
57 void HDFfile::OpenOnDisk(hdf_access_mode access_mode)
58 {
59   _access_mode = access_mode;
60
61   switch (_access_mode)
62     {
63     case HDF_RDWR :
64       if (access(_name,F_OK))
65         {
66           if ((_id = HDFfileCreate(_name)) < 0) 
67             throw HDFexception("Can't open HDF file");
68         }
69       else
70         if ((_id = HDFfileOpen(_name,_access_mode)) < 0)
71           throw HDFexception("Can't open HDF file");
72       break;
73       
74     case HDF_RDONLY :
75       if ((_id = HDFfileOpen(_name,_access_mode)) < 0)
76         throw HDFexception("Can't open HDF file");
77       break;
78       
79     default :
80       throw HDFexception("Can't open HDF file : bad acces option");
81     }
82 }
83
84 void HDFfile::CloseOnDisk()
85 {
86   hdf_err ret;
87
88   if ((ret = HDFfileClose(_id)) < 0) 
89     throw HDFexception("Can't close HDF file");
90   _id = -1;
91 }
92   
93
94 hdf_access_mode HDFfile::GetAccessMode()
95 {
96   return _access_mode;
97 }
98
99 hdf_object_type HDFfile::GetObjectType()
100 {
101   return HDF_FILE;
102 }
103
104 int HDFfile::nInternalObjects()
105 {
106   int n;
107   hdf_err ret;   
108
109   if ((ret = HDFnObjects(_id,"/",&n)) < 0)
110     throw HDFexception("Can't determine the number of internal objects");
111
112   return  n;
113 }
114
115 void HDFfile::InternalObjectIndentify(int rank, char *object_name)
116 {
117   hdf_err ret;
118
119   if ((ret = HDFobjectIdentify(_id,"/",rank,object_name)) < 0)
120     throw HDFexception("Can't identify an internal object");
121 }
122
123 int HDFfile::ExistInternalObject(char *object_name)
124 {
125   int n,i;
126   int ret = 0;
127   char name[HDF_NAME_MAX_LEN+1];
128
129   n = this->nInternalObjects(); 
130   for (i=0;i<n;i++) 
131     {
132       this->InternalObjectIndentify(i,name);
133       if (!strcmp(name,object_name))
134         {
135           ret = 1;
136           break;
137         }
138     }  
139   return ret;
140 }
141
142 hdf_object_type HDFfile::InternalObjectType(char *object_name)
143 {
144   hdf_object_type type;
145   hdf_err ret;
146   
147   if ((ret = HDFobjectType(_id,object_name,&type)) < 0)
148     throw HDFexception("Can't determine internal object type");
149
150   return type;
151 }
152
153 int HDFfile::nAttributes()
154 {
155   int nbAttrs = H5Aget_num_attrs(_id);
156   if(nbAttrs <= 0) nbAttrs = 0;
157   return nbAttrs; 
158 }
159
160 char* HDFfile::GetAttributeName(unsigned idx)
161 {
162   int nbAttrs = nAttributes();
163   if(nbAttrs == 0) return NULL;
164   H5Aiterate(_id, &idx, file_attr, &_attribute);
165   return _attribute;
166 }