2011-08-18 22:32:47 +08:00
|
|
|
!****h* root/fortran/test/fflush1.f90
|
|
|
|
!
|
|
|
|
! NAME
|
|
|
|
! FFLUSH1EXAMPLE
|
|
|
|
!
|
|
|
|
! FUNCTION
|
|
|
|
! This is the first half of a two-part test that makes sure
|
|
|
|
! that a file can be read after an application crashes as long
|
|
|
|
! as the file was flushed first. We simulate by exit the
|
|
|
|
! the program using stop statement
|
|
|
|
!
|
|
|
|
! COPYRIGHT
|
2010-01-30 12:29:13 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-08 01:55:01 +08:00
|
|
|
! Copyright by The HDF Group. *
|
2002-09-24 06:06:01 +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 *
|
|
|
|
! the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
! of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
! root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
! is linked from the top-level documents page. It can also be found at *
|
2007-02-08 01:55:01 +08:00
|
|
|
! http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
! access to either file, you may request a copy from help@hdfgroup.org. *
|
2010-01-30 12:29:13 +08:00
|
|
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2002-09-24 06:06:01 +08:00
|
|
|
!
|
2011-08-18 22:32:47 +08:00
|
|
|
!*****
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
PROGRAM FFLUSH1EXAMPLE
|
|
|
|
|
2010-01-30 12:29:13 +08:00
|
|
|
USE HDF5 ! This module contains all necessary modules
|
2014-04-06 23:56:21 +08:00
|
|
|
USE TH5_MISC
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
IMPLICIT NONE
|
|
|
|
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
!the respective filename is "fflush1.h5"
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
2002-09-24 06:06:01 +08:00
|
|
|
CHARACTER(LEN=7), PARAMETER :: filename = "fflush1"
|
|
|
|
CHARACTER(LEN=80) :: fix_filename
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
!
|
|
|
|
!data space rank and dimensions
|
|
|
|
!
|
|
|
|
INTEGER, PARAMETER :: RANK = 2
|
|
|
|
INTEGER, PARAMETER :: NX = 4
|
|
|
|
INTEGER, PARAMETER :: NY = 5
|
|
|
|
|
|
|
|
!
|
|
|
|
! File identifiers
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
INTEGER(HID_T) :: file_id
|
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
|
|
|
! Group identifier
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
INTEGER(HID_T) :: gid
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
!
|
|
|
|
! dataset identifier
|
|
|
|
!
|
|
|
|
INTEGER(HID_T) :: dset_id
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
|
|
|
! data space identifier
|
|
|
|
!
|
|
|
|
INTEGER(HID_T) :: dataspace
|
2010-01-30 12:29:13 +08:00
|
|
|
!
|
2000-09-20 04:06:49 +08:00
|
|
|
!The dimensions for the dataset.
|
|
|
|
!
|
|
|
|
INTEGER(HSIZE_T), DIMENSION(2) :: dims = (/NX,NY/)
|
|
|
|
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
!flag to check operation success
|
|
|
|
!
|
2000-09-20 04:06:49 +08:00
|
|
|
INTEGER :: error
|
|
|
|
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
!general purpose integer
|
|
|
|
!
|
2000-09-20 04:06:49 +08:00
|
|
|
INTEGER :: i, j, total_error = 0
|
|
|
|
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
!data buffers
|
|
|
|
!
|
2008-05-04 07:39:37 +08:00
|
|
|
INTEGER, DIMENSION(NX,NY) :: data_in
|
2004-04-23 01:18:46 +08:00
|
|
|
INTEGER(HSIZE_T), DIMENSION(2) :: data_dims
|
2001-04-27 11:50:22 +08:00
|
|
|
data_dims(1) = NX
|
|
|
|
data_dims(2) = NY
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
!
|
|
|
|
!Initialize FORTRAN predifined datatypes
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
CALL h5open_f(error)
|
2002-09-24 06:06:01 +08:00
|
|
|
CALL check("h5open_f",error,total_error)
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
!
|
|
|
|
!Initialize data_in buffer
|
|
|
|
!
|
|
|
|
do i = 1, NX
|
|
|
|
do j = 1, NY
|
|
|
|
data_in(i,j) = (i-1) + (j-1)
|
|
|
|
end do
|
|
|
|
end do
|
|
|
|
|
|
|
|
!
|
|
|
|
!Create file "fflush1.h5" using default properties.
|
2010-01-30 12:29:13 +08:00
|
|
|
!
|
2002-09-24 06:06:01 +08:00
|
|
|
CALL h5_fixname_f(filename, fix_filename, H5P_DEFAULT_F, error)
|
|
|
|
if (error .ne. 0) then
|
|
|
|
write(*,*) "Cannot modify filename"
|
2005-08-05 04:22:11 +08:00
|
|
|
CALL h5_exit_f (1)
|
2002-09-24 06:06:01 +08:00
|
|
|
endif
|
|
|
|
CALL h5fcreate_f(fix_filename, H5F_ACC_TRUNC_F, file_id, error)
|
2000-09-20 04:06:49 +08:00
|
|
|
CALL check("h5fcreate_f",error,total_error)
|
|
|
|
|
|
|
|
!
|
|
|
|
!Create group "/G" inside file "fflush1.h5".
|
2010-01-30 12:29:13 +08:00
|
|
|
!
|
2000-09-20 04:06:49 +08:00
|
|
|
CALL h5gcreate_f(file_id, "/G", gid, error)
|
|
|
|
CALL check("h5gcreate_f",error,total_error)
|
|
|
|
|
|
|
|
!
|
2010-01-30 12:29:13 +08:00
|
|
|
!Create data space for the dataset.
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
|
|
|
CALL h5screate_simple_f(RANK, dims, dataspace, error)
|
|
|
|
CALL check("h5screate_simple_f",error,total_error)
|
|
|
|
|
|
|
|
!
|
|
|
|
!Create dataset "/D" inside file "fflush1.h5".
|
2010-01-30 12:29:13 +08:00
|
|
|
!
|
2000-09-20 04:06:49 +08:00
|
|
|
CALL h5dcreate_f(file_id, "/D", H5T_NATIVE_INTEGER, dataspace, &
|
|
|
|
dset_id, error)
|
|
|
|
CALL check("h5dcreate_f",error,total_error)
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
|
|
|
! Write data_in to the dataset
|
|
|
|
!
|
2001-04-27 11:50:22 +08:00
|
|
|
CALL h5dwrite_f(dset_id, H5T_NATIVE_INTEGER, data_in, data_dims, error)
|
2000-09-20 04:06:49 +08:00
|
|
|
CALL check("h5dwrite_f",error,total_error)
|
2010-01-30 12:29:13 +08:00
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
!
|
|
|
|
!flush and exit without closing the library
|
|
|
|
!
|
|
|
|
CALL H5fflush_f(file_id, H5F_SCOPE_GLOBAL_F, error)
|
|
|
|
CALL check("h5fflush_f",error,total_error)
|
|
|
|
|
2005-01-09 14:19:16 +08:00
|
|
|
! if errors detected, exit with non-zero code.
|
|
|
|
IF (total_error .ne. 0) CALL h5_exit_f (1)
|
2002-11-26 08:43:15 +08:00
|
|
|
|
2000-09-20 04:06:49 +08:00
|
|
|
|
2014-04-06 23:56:21 +08:00
|
|
|
STOP
|
2000-09-20 04:06:49 +08:00
|
|
|
|
|
|
|
|
|
|
|
END PROGRAM FFLUSH1EXAMPLE
|
|
|
|
|