1 // Copyright (C) 2007-2020 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SALOME HDFPersist : implementation of HDF persitent ( save/ restore )
24 // File : HDFconvert.cc
27 #include "HDFconvert.hxx"
36 int HDFConvert::FromAscii(const std::string& file, const HDFcontainerObject & hdf_container, const std::string& nomdataset)
39 HDFdataset * hdf_dataset;
46 // Ouverture du fichier source
47 if ( (fd = open(file.c_str(),O_RDONLY)) <0) {
48 perror("HDFConvert::FromAscii");
52 // Lit l'
\89tat du fichier
53 if ( fstat(fd,&status) < 0) {
54 perror("HDFConvert::FromAscii");
58 length = status.st_size; //Calcul la taille du fichier en octets
61 #ifdef _POSIX_MAPPED_FILES
63 // Map le fichier en m
\89moire
64 if ( (buffer = (char *) mmap(0,length,PROT_READ,MAP_SHARED,fd,0)) == MAP_FAILED ) {
65 perror("HDFConvert::FromAscii");
70 #define SHMEMSIZE 4096
72 std::wstring empty = L"";
74 std::string empty = "";
76 HANDLE hMapObject = CreateFileMapping(
77 INVALID_HANDLE_VALUE, NULL, PAGE_READWRITE, 0, SHMEMSIZE, empty.c_str() );
78 if (hMapObject != NULL) {
79 // Get a pointer to the file-mapped shared memory.
80 buffer = ( char* ) MapViewOfFile(
81 hMapObject, FILE_MAP_WRITE, 0, 0, 0 );
83 CloseHandle(hMapObject);
88 // Sort de la compilation
89 #error Necessite l''utilisation de la primitive mmap
93 // Creation du Dataset utilisateur
94 hdf_dataset = new HDFdataset( (char *) nomdataset.c_str(), /*discard const */
95 (HDFcontainerObject*) &hdf_container, /*discard const, pas de constructeur par r
\89f
\89rence */
98 // Cree le Dataset sur le disk
99 hdf_dataset->CreateOnDisk();
102 hdf_dataset->WriteOnDisk(buffer);
104 // Ferme le fichier hdf
105 hdf_dataset->CloseOnDisk();
110 #ifdef _POSIX_MAPPED_FILES
112 // Desalloue le mapping
113 if (munmap(buffer,length) < 0 ) {
114 perror("HDFConvert::FromAscii");
119 // Ferme le fichier ASCII
121 perror("HDFConvert::FromAscii");