Salome HOME
CCAR: import_hook.py was too strict in ensure_list (ImportError raised)
[modules/kernel.git] / src / HDFPersist / HDFattribute.cc
1 //  Copyright (C) 2007-2010  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
23 //  SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
24 //  File   : HDFattribute.cc
25 //  Module : SALOME
26 //
27 extern "C"
28 {
29 #include "hdfi.h"
30 }
31 #include "HDFexception.hxx"
32 #include "HDFattribute.hxx"
33 #include "HDFinternalObject.hxx"
34
35 HDFattribute::HDFattribute(char *name,HDFinternalObject *father,hdf_type type, size_t size)
36   : HDFobject(name)
37 {
38   _father = father;
39   _fid = _father->GetId();
40   _type = type;
41   _size = size;
42 }
43
44 HDFattribute::HDFattribute(char *name,HDFinternalObject *father)
45   : HDFobject(name)
46 {
47   _father = father;
48   _fid = _father->GetId();
49   _type = HDF_NONE;
50   _size = 0;
51 }
52
53 void HDFattribute::CreateOnDisk()
54 {
55   if ((_id = HDFattrCreate(_fid,_name, _type, _size)) < 0)
56     throw HDFexception("Can't create attribute");
57 }
58 void HDFattribute::OpenOnDisk()
59 {
60   if ((_id = HDFattrOpen(_fid,_name)) < 0)
61     throw HDFexception("Can't open attribute");
62 }
63 void HDFattribute::CloseOnDisk()
64 {
65   hdf_err ret;
66
67   if ((ret = HDFattrClose(_id)) < 0)
68       throw HDFexception("Can't close attribute");
69 }
70
71 void HDFattribute::WriteOnDisk(void *values)
72 {
73   hdf_err ret;
74
75   if ((ret = HDFattrWrite(_id,values)) < 0)
76     throw HDFexception("Can't write attribute");
77 }
78
79 void HDFattribute::ReadFromDisk(void *values)
80 {
81   hdf_err ret; 
82
83   if ((ret = HDFattrRead(_id,values)) < 0)
84     throw HDFexception("Can't read attribute");
85 }
86
87 HDFinternalObject * HDFattribute::GetFather()
88 {
89   return _father;
90 }
91
92 hdf_type HDFattribute::GetType()
93 {
94  if (_type == HDF_NONE)
95     if ((_type = HDFattrGetType(_id)) == HDF_NONE)
96       throw HDFexception("Can't determine the type of data in the attribute");
97
98   return _type;
99 }
100
101 size_t HDFattribute::GetSize()
102 {
103   if(_size == 0) {
104     if((_size = HDFattrGetSize(_id)) < 0)
105       throw HDFexception("Can't determine the size of data in the attribute");
106   }
107   return _size;
108 }