2005-11-15 10:55:39 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2005-11-15 10:55:39 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2005-11-15 10:55:39 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Programmer: Quincey Koziol <koziol@ncsa.uiuc.edu>
|
|
|
|
* Oct 24, 2005
|
|
|
|
*
|
|
|
|
* Purpose: This program is run to generate an HDF5 data file with both
|
|
|
|
* empty and compact groups.
|
|
|
|
*
|
|
|
|
* To test compatibility between v1.6 and v1.7, compile and run
|
|
|
|
* this program, it will generate a file called "group_new.h5".
|
|
|
|
* You need to move it to the test directory in the HDF5 v1.6
|
|
|
|
* source tree. The test/stab.c program will read it.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hdf5.h"
|
|
|
|
|
|
|
|
#define FILENAME "group_new.h5"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
hid_t fid = -1; /* File ID */
|
2006-10-02 18:24:03 +08:00
|
|
|
hid_t fapl = -1; /* File access property list ID */
|
2005-11-15 10:55:39 +08:00
|
|
|
hid_t fcpl = -1; /* File creation property list ID */
|
|
|
|
hid_t gid = -1; /* Group creation property list ID */
|
|
|
|
hid_t sid = -1; /* Dataspace ID */
|
|
|
|
hid_t did = -1; /* Dataset ID */
|
|
|
|
|
|
|
|
/* Create file creation property list */
|
|
|
|
if((fcpl = H5Pcreate(H5P_FILE_CREATE)) < 0) goto error;
|
|
|
|
|
|
|
|
/* Adjust group creation parameters for root group */
|
2006-10-02 18:24:03 +08:00
|
|
|
/* (So that it is created in "dense storage" form) */
|
2005-11-15 10:55:39 +08:00
|
|
|
if(H5Pset_link_phase_change(fcpl, 0, 0) < 0) goto error;
|
|
|
|
|
2006-10-02 18:24:03 +08:00
|
|
|
/* Copy the file access property list */
|
2006-10-03 21:34:41 +08:00
|
|
|
if((fapl = H5Pcreate(H5P_FILE_ACCESS)) < 0) goto error;
|
2006-10-02 18:24:03 +08:00
|
|
|
|
[svn-r14362] Description:
Switched from "H5P[gs]et_latest_format" to "H5P[gs]et_format_bounds".
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2008-01-03 21:55:39 +08:00
|
|
|
/* Set the "use the latest version of the format" bounds for creating objects in the file */
|
[svn-r14413] Description:
Change H5P[gs]et_format_bounds() => H5P[gs]et_libver_bounds() and also
enumerated values H5F_FORMAT_{EARLIEST, LATEST} => H5F_LIBVER_{EARLIEST, LATEST}
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode
2008-01-15 07:49:12 +08:00
|
|
|
if(H5Pset_libver_bounds(fapl, H5F_LIBVER_LATEST, H5F_LIBVER_LATEST) < 0) goto error;
|
2006-10-02 18:24:03 +08:00
|
|
|
|
2005-11-15 10:55:39 +08:00
|
|
|
/* Create file for test groups */
|
2006-10-02 18:24:03 +08:00
|
|
|
if((fid = H5Fcreate(FILENAME, H5F_ACC_TRUNC, fcpl, fapl)) <0) goto error;
|
|
|
|
|
|
|
|
/* Close file access property list */
|
|
|
|
if(H5Pclose(fapl) < 0) goto error;
|
2005-11-15 10:55:39 +08:00
|
|
|
|
|
|
|
/* Close file creation property list */
|
|
|
|
if(H5Pclose(fcpl) < 0) goto error;
|
|
|
|
|
|
|
|
/* Create dataspace for datasets */
|
|
|
|
if((sid = H5Screate(H5S_SCALAR)) < 0) goto error;
|
|
|
|
|
|
|
|
/* Create empty group (w/default group creation properties) */
|
2007-08-24 04:25:25 +08:00
|
|
|
if((gid = H5Gcreate2(fid, "empty", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;
|
2005-11-15 10:55:39 +08:00
|
|
|
if(H5Gclose(gid) < 0) goto error;
|
|
|
|
|
|
|
|
/* Create group which will contain link messages (w/default group creation properties) */
|
2007-08-24 04:25:25 +08:00
|
|
|
if((gid = H5Gcreate2(fid, "links", H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;
|
2005-11-15 10:55:39 +08:00
|
|
|
|
|
|
|
/* Create dataset in group */
|
[svn-r14199] Description:
Add H5Dcreate to API versioned routines, replacing internal usage with
H5Dcreate2
Fix thread-safe error stack initialization for API versioned error
stack printing routines.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-12 00:24:11 +08:00
|
|
|
if((did = H5Dcreate2(gid, "dset1", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;
|
2005-11-15 10:55:39 +08:00
|
|
|
if(H5Dclose(did)<0) goto error;
|
|
|
|
|
|
|
|
/* Create second dataset in group */
|
[svn-r14199] Description:
Add H5Dcreate to API versioned routines, replacing internal usage with
H5Dcreate2
Fix thread-safe error stack initialization for API versioned error
stack printing routines.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-12 00:24:11 +08:00
|
|
|
if((did = H5Dcreate2(gid, "dset2", H5T_NATIVE_INT, sid, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) goto error;
|
2005-11-15 10:55:39 +08:00
|
|
|
if(H5Dclose(did)<0) goto error;
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
if(H5Sclose(sid) < 0) goto error;
|
|
|
|
|
|
|
|
/* Close group */
|
|
|
|
if(H5Gclose(gid) < 0) goto error;
|
|
|
|
|
|
|
|
/* Close file */
|
|
|
|
if(H5Fclose(fid) < 0) goto error;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
H5E_BEGIN_TRY {
|
2006-10-02 18:24:03 +08:00
|
|
|
H5Dclose(did);
|
2005-11-15 10:55:39 +08:00
|
|
|
H5Sclose(sid);
|
2006-10-02 18:24:03 +08:00
|
|
|
H5Gclose(gid);
|
|
|
|
H5Pclose(fcpl);
|
|
|
|
H5Pclose(fapl);
|
2005-11-15 10:55:39 +08:00
|
|
|
H5Fclose(fid);
|
|
|
|
} H5E_END_TRY;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|