Salome HOME
updated copyright message
[modules/kernel.git] / src / HDFPersist / test8.cxx
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   : test8.cxx
25 //  Module : SALOME
26 //
27 #include <iostream.h>
28 #include "HDFOI.hxx"
29 #include <stdlib.h>
30
31
32 int main()
33 {
34   HDFfile *hdf_file;
35   HDFgroup *hdf_group;
36   HDFdataset *hdf_dataset;
37   hdf_size size[1];
38   char message[HDF_NAME_MAX_LEN+1] = "MESSAGE";
39   hdf_int32 attribute = 3;
40
41   system("rm file_ascii.hdf");
42
43   try
44     {
45       // a new HDFfile object
46       hdf_file = new HDFfile("file_ascii.hdf");
47       MESSAGE( ">> A HDFfile object is created" );
48       
49       hdf_file->CreateOnDisk();
50       MESSAGE( ">> The HDF file is created on Disk " );
51
52       // Inside the HDF file 
53
54       // A new HDF group object
55       hdf_group = new HDFgroup("ASCII GROUP",hdf_file);
56       MESSAGE( ">> A HDFgroup object 'ASCII' is created" );
57
58       hdf_group->CreateOnDisk();
59       MESSAGE( ">> The HDF group is created on Disk " );
60
61       // Transfert d'un fichier ASCII dans un groupe HDF
62       HDFConvert::FromAscii("ascii.txt",*hdf_group,"ASCII DATASET");
63       MESSAGE( ">> The ASCII file is transferred " );
64  
65       // The HDF group is built, it can be closed
66       hdf_group->CloseOnDisk();
67       MESSAGE( ">> The HDF group is closed on Disk " );
68
69       // The HDF file is built, it can be closed
70       hdf_file->CloseOnDisk();
71       MESSAGE( ">> The HDF file is closed on disk" );
72
73  
74       delete hdf_group;
75       MESSAGE( ">> The HDF group object is deleted" ); 
76       delete hdf_file;
77       MESSAGE( ">> The HDF file object is deleted" );
78     }
79   catch (HDFexception)
80     {
81       MESSAGE( "!!!! HDFexception" )
82     }
83
84   return 0;
85 }