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