2003-04-03 21:58:53 +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 *
|
|
|
|
|
* http://hdf.ncsa.uiuc.edu/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
|
* access to either file, you may request a copy from hdfhelp@ncsa.uiuc.edu. *
|
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
1997-12-11 06:41:56 +08:00
|
|
|
|
/*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Programmer: Robb Matzke <matzke@llnl.gov>
|
|
|
|
|
* Tuesday, December 9, 1997
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Purpose: Tests the dataset interface (H5D)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*/
|
1998-11-03 01:58:28 +08:00
|
|
|
|
|
2003-04-17 03:06:15 +08:00
|
|
|
|
#include <stdlib.h>
|
2003-04-14 19:18:55 +08:00
|
|
|
|
#include <time.h>
|
2003-04-17 03:06:15 +08:00
|
|
|
|
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "h5test.h"
|
1998-04-07 23:34:16 +08:00
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/*
|
|
|
|
|
* This file needs to access private datatypes from the H5Z package.
|
|
|
|
|
*/
|
|
|
|
|
#define H5Z_PACKAGE
|
|
|
|
|
#include "H5Zpkg.h"
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"dataset",
|
2002-08-21 00:18:02 +08:00
|
|
|
|
"compact_dataset",
|
2002-12-03 03:47:57 +08:00
|
|
|
|
"dset_offset",
|
2003-04-23 00:23:42 +08:00
|
|
|
|
"max_compact_dataset",
|
2003-05-06 22:21:42 +08:00
|
|
|
|
"simple",
|
|
|
|
|
"set_local",
|
1998-11-21 11:36:51 +08:00
|
|
|
|
NULL
|
|
|
|
|
};
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#define FILE_DEFLATE_NAME "deflate.h5"
|
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
/* Dataset names for testing filters */
|
1998-03-06 05:27:38 +08:00
|
|
|
|
#define DSET_DEFAULT_NAME "default"
|
|
|
|
|
#define DSET_CHUNKED_NAME "chunked"
|
2002-08-21 00:18:02 +08:00
|
|
|
|
#define DSET_COMPACT_NAME "compact"
|
1998-03-06 05:27:38 +08:00
|
|
|
|
#define DSET_SIMPLE_IO_NAME "simple_io"
|
2003-05-06 22:21:42 +08:00
|
|
|
|
#define DSET_USERBLOCK_IO_NAME "userblock_io"
|
2002-08-21 00:18:02 +08:00
|
|
|
|
#define DSET_COMPACT_IO_NAME "compact_io"
|
2003-04-23 00:23:42 +08:00
|
|
|
|
#define DSET_COMPACT_MAX_NAME "max_compact"
|
|
|
|
|
#define DSET_COMPACT_MAX2_NAME "max_compact_2"
|
2003-05-14 00:49:38 +08:00
|
|
|
|
#define DSET_CONV_BUF_NAME "conv_buf"
|
1998-03-06 05:27:38 +08:00
|
|
|
|
#define DSET_TCONV_NAME "tconv"
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#define DSET_DEFLATE_NAME "deflate"
|
2003-04-02 00:00:25 +08:00
|
|
|
|
#define DSET_SZIP_NAME "szip"
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#define DSET_SHUFFLE_NAME "shuffle"
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#define DSET_FLETCHER32_NAME "fletcher32"
|
|
|
|
|
#define DSET_FLETCHER32_NAME_2 "fletcher32_2"
|
|
|
|
|
#define DSET_FLETCHER32_NAME_3 "fletcher32_3"
|
|
|
|
|
#define DSET_SHUF_DEF_FLET_NAME "shuffle+deflate+fletcher32"
|
|
|
|
|
#define DSET_SHUF_DEF_FLET_NAME_2 "shuffle+deflate+fletcher32_2"
|
2003-04-02 00:00:25 +08:00
|
|
|
|
#define DSET_SHUF_SZIP_FLET_NAME "shuffle+szip+fletcher32"
|
|
|
|
|
#define DSET_SHUF_SZIP_FLET_NAME_2 "shuffle+szip+fletcher32_2"
|
|
|
|
|
|
1998-04-22 04:32:07 +08:00
|
|
|
|
#define DSET_BOGUS_NAME "bogus"
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#define DSET_MISSING_NAME "missing"
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#define DSET_CAN_APPLY_NAME "can_apply"
|
|
|
|
|
#define DSET_CAN_APPLY_SZIP_NAME "can_apply_szip"
|
|
|
|
|
#define DSET_SET_LOCAL_NAME "set_local"
|
|
|
|
|
#define DSET_SET_LOCAL_NAME_2 "set_local_2"
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#define DSET_ONEBYTE_SHUF_NAME "onebyte_shuffle"
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
#define USER_BLOCK 1024
|
2003-04-23 00:23:42 +08:00
|
|
|
|
#define SIXTY_FOUR_KB 65536
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
|
|
|
|
/* Temporary filter IDs used for testing */
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#define H5Z_FILTER_BOGUS 305
|
|
|
|
|
#define H5Z_FILTER_CORRUPT 306
|
|
|
|
|
#define H5Z_FILTER_BOGUS2 307
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
/* Flags for testing filters */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#define DISABLE_FLETCHER32 0
|
|
|
|
|
#define ENABLE_FLETCHER32 1
|
2003-02-05 02:50:56 +08:00
|
|
|
|
#define DATA_CORRUPTED 1
|
|
|
|
|
#define DATA_NOT_CORRUPTED 0
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* Parameters for the "set local" test */
|
|
|
|
|
#define BOGUS2_PERM_NPARMS 2 /* Number of "permanent" parameters */
|
|
|
|
|
#define BOGUS2_PARAM_1 13 /* (No particular meaning, just for checking value) */
|
|
|
|
|
#define BOGUS2_PARAM_2 35 /* (No particular meaning, just for checking value) */
|
|
|
|
|
#define BOGUS2_ALL_NPARMS 4 /* Total number of parameter = permanent + "local" parameters */
|
|
|
|
|
|
2003-05-14 00:49:38 +08:00
|
|
|
|
/* Dimensionality for conversion buffer test */
|
|
|
|
|
#define DIM1 100 /* Dim. Size of data member # 1 */
|
|
|
|
|
#define DIM2 5000 /* Dim. Size of data member # 2 */
|
|
|
|
|
#define DIM3 10 /* Dim. Size of data member # 3 */
|
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
|
/* Parameters for internal filter test */
|
|
|
|
|
#define FILTER_CHUNK_DIM1 2
|
|
|
|
|
#define FILTER_CHUNK_DIM2 25
|
|
|
|
|
#define FILTER_HS_OFFSET1 7
|
|
|
|
|
#define FILTER_HS_OFFSET2 30
|
|
|
|
|
#define FILTER_HS_SIZE1 4
|
|
|
|
|
#define FILTER_HS_SIZE2 50
|
|
|
|
|
|
2001-04-01 11:27:34 +08:00
|
|
|
|
/* Shared global arrays */
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#define DSET_DIM1 100
|
|
|
|
|
#define DSET_DIM2 200
|
|
|
|
|
int points[DSET_DIM1][DSET_DIM2], check[DSET_DIM1][DSET_DIM2];
|
|
|
|
|
double points_dbl[DSET_DIM1][DSET_DIM2], check_dbl[DSET_DIM1][DSET_DIM2];
|
|
|
|
|
|
|
|
|
|
/* Local prototypes for filter functions */
|
|
|
|
|
static size_t filter_bogus(unsigned int flags, size_t cd_nelmts,
|
|
|
|
|
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
2003-06-10 03:16:59 +08:00
|
|
|
|
static herr_t can_apply_bogus(hid_t dcpl_id, hid_t type_id, hid_t space_id);
|
2003-04-09 10:37:27 +08:00
|
|
|
|
static herr_t set_local_bogus2(hid_t dcpl_id, hid_t type_id, hid_t space_id);
|
|
|
|
|
static size_t filter_bogus2(unsigned int flags, size_t cd_nelmts,
|
|
|
|
|
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
|
|
|
|
static size_t filter_corrupt(unsigned int flags, size_t cd_nelmts,
|
|
|
|
|
const unsigned int *cd_values, size_t nbytes, size_t *buf_size, void **buf);
|
2001-04-01 11:27:34 +08:00
|
|
|
|
|
1997-12-11 06:41:56 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Function: test_create
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Purpose: Attempts to create a dataset.
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Return: Success: 0
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Failure: -1
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, December 9, 1997
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2002-08-21 00:18:02 +08:00
|
|
|
|
* Added test for compact dataset creation.
|
|
|
|
|
* Raymond Lu
|
|
|
|
|
* August 8, 2002
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
1998-01-17 06:23:43 +08:00
|
|
|
|
test_create(hid_t file)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
{
|
2002-08-21 00:18:02 +08:00
|
|
|
|
hid_t dataset, space, small_space, create_parms;
|
|
|
|
|
hsize_t dims[2], small_dims[2];
|
1998-03-06 05:27:38 +08:00
|
|
|
|
herr_t status;
|
1998-04-09 05:43:02 +08:00
|
|
|
|
hsize_t csize[2];
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
TESTING("create, open, close");
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
dims[0] = 256;
|
|
|
|
|
dims[1] = 512;
|
1998-02-26 02:48:33 +08:00
|
|
|
|
space = H5Screate_simple(2, dims, NULL);
|
1998-03-05 00:20:23 +08:00
|
|
|
|
assert(space>=0);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
2002-08-21 00:18:02 +08:00
|
|
|
|
/* Create a small data space for compact dataset */
|
|
|
|
|
small_dims[0] = 16;
|
|
|
|
|
small_dims[1] = 8;
|
|
|
|
|
small_space = H5Screate_simple(2, small_dims, NULL);
|
|
|
|
|
assert(space>=0);
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Create a dataset using the default dataset creation properties. We're
|
1998-01-17 06:23:43 +08:00
|
|
|
|
* not sure what they are, so we won't check.
|
|
|
|
|
*/
|
|
|
|
|
dataset = H5Dcreate(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space,
|
1998-03-06 05:27:38 +08:00
|
|
|
|
H5P_DEFAULT);
|
|
|
|
|
if (dataset<0) goto error;
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Close the dataset */
|
1998-03-06 05:27:38 +08:00
|
|
|
|
if (H5Dclose(dataset) < 0) goto error;
|
1998-03-01 02:19:05 +08:00
|
|
|
|
|
1998-07-21 05:01:32 +08:00
|
|
|
|
/* Add a comment to the dataset */
|
|
|
|
|
status = H5Gset_comment(file, DSET_DEFAULT_NAME, "This is a dataset");
|
|
|
|
|
if (status<0) goto error;
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Try creating a dataset that already exists. This should fail since a
|
1998-03-01 02:19:05 +08:00
|
|
|
|
* dataset can only be created once. Temporarily turn off error
|
|
|
|
|
* reporting.
|
1998-01-17 06:23:43 +08:00
|
|
|
|
*/
|
1998-11-21 11:36:51 +08:00
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
dataset = H5Dcreate(file, DSET_DEFAULT_NAME, H5T_NATIVE_DOUBLE, space,
|
|
|
|
|
H5P_DEFAULT);
|
|
|
|
|
} H5E_END_TRY;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
if (dataset >= 0) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
puts(" Library allowed overwrite of existing dataset.");
|
1998-03-06 05:27:38 +08:00
|
|
|
|
goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
}
|
1998-03-01 02:19:05 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Open the dataset we created above and then close it. This is how
|
|
|
|
|
* existing datasets are accessed.
|
|
|
|
|
*/
|
2003-04-17 03:06:15 +08:00
|
|
|
|
if (H5Fflush(file, H5F_SCOPE_GLOBAL) < 0) goto error;
|
1998-03-06 05:27:38 +08:00
|
|
|
|
if ((dataset = H5Dopen(file, DSET_DEFAULT_NAME))<0) goto error;
|
|
|
|
|
if (H5Dclose(dataset) < 0) goto error;
|
1998-03-01 02:19:05 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Try opening a non-existent dataset. This should fail since new datasets
|
1998-03-01 02:19:05 +08:00
|
|
|
|
* cannot be created with this function. Temporarily turn off error
|
|
|
|
|
* reporting.
|
1998-01-17 06:23:43 +08:00
|
|
|
|
*/
|
1998-11-21 11:36:51 +08:00
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
dataset = H5Dopen(file, "does_not_exist");
|
|
|
|
|
} H5E_END_TRY;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
if (dataset >= 0) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
puts(" Opened a non-existent dataset.");
|
1998-03-06 05:27:38 +08:00
|
|
|
|
goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
}
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Create a new dataset that uses chunked storage instead of the default
|
|
|
|
|
* layout.
|
|
|
|
|
*/
|
1998-02-26 03:13:49 +08:00
|
|
|
|
create_parms = H5Pcreate(H5P_DATASET_CREATE);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
assert(create_parms >= 0);
|
2001-01-13 03:57:33 +08:00
|
|
|
|
|
|
|
|
|
/* Attempt to create a dataset with invalid chunk sizes */
|
|
|
|
|
csize[0] = dims[0]*2;
|
|
|
|
|
csize[1] = dims[1]*2;
|
|
|
|
|
status = H5Pset_chunk(create_parms, 2, csize);
|
|
|
|
|
assert(status >= 0);
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
dataset = H5Dcreate(file, DSET_CHUNKED_NAME, H5T_NATIVE_DOUBLE, space,
|
|
|
|
|
create_parms);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (dataset >= 0) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2001-01-13 03:57:33 +08:00
|
|
|
|
puts(" Opened a dataset with incorrect chunking parameters.");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
csize[0] = 5;
|
|
|
|
|
csize[1] = 100;
|
1998-02-26 03:13:49 +08:00
|
|
|
|
status = H5Pset_chunk(create_parms, 2, csize);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
assert(status >= 0);
|
|
|
|
|
|
|
|
|
|
dataset = H5Dcreate(file, DSET_CHUNKED_NAME, H5T_NATIVE_DOUBLE, space,
|
1998-03-06 05:27:38 +08:00
|
|
|
|
create_parms);
|
|
|
|
|
if (dataset < 0) goto error;
|
1998-05-01 13:16:50 +08:00
|
|
|
|
H5Pclose (create_parms);
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
2002-11-07 23:57:53 +08:00
|
|
|
|
/* Test dataset address. Should be undefined. */
|
|
|
|
|
if(H5Dget_offset(dataset)!=HADDR_UNDEF) goto error;
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/*
|
|
|
|
|
* Close the chunked dataset.
|
|
|
|
|
*/
|
1998-03-06 05:27:38 +08:00
|
|
|
|
if (H5Dclose(dataset) < 0) goto error;
|
|
|
|
|
|
2002-08-21 00:18:02 +08:00
|
|
|
|
/*
|
|
|
|
|
* Create a compact dataset, then close it.
|
|
|
|
|
*/
|
|
|
|
|
create_parms = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
assert(create_parms >= 0);
|
|
|
|
|
status = H5Pset_layout(create_parms, H5D_COMPACT);
|
|
|
|
|
assert(status >= 0);
|
2002-09-14 00:57:46 +08:00
|
|
|
|
status = H5Pset_alloc_time(create_parms, H5D_ALLOC_TIME_EARLY);
|
2002-08-21 00:18:02 +08:00
|
|
|
|
assert(status >= 0);
|
|
|
|
|
|
|
|
|
|
dataset = H5Dcreate(file, DSET_COMPACT_NAME, H5T_NATIVE_DOUBLE,
|
|
|
|
|
small_space, create_parms);
|
|
|
|
|
if(dataset < 0) goto error;
|
|
|
|
|
H5Pclose(create_parms);
|
|
|
|
|
if(H5Dclose(dataset) <0) goto error;
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-03-05 00:20:23 +08:00
|
|
|
|
return 0;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-03-06 05:27:38 +08:00
|
|
|
|
error:
|
1998-03-05 00:20:23 +08:00
|
|
|
|
return -1;
|
1997-12-11 06:41:56 +08:00
|
|
|
|
}
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
1997-12-11 06:41:56 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Function: test_simple_io
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Purpose: Tests simple I/O. That is, reading and writing a complete
|
|
|
|
|
* multi-dimensional array without data type or data space
|
|
|
|
|
* conversions, without compression, and stored contiguously.
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Return: Success: 0
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Failure: -1
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Wednesday, December 10, 1997
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2003-05-06 22:21:42 +08:00
|
|
|
|
test_simple_io(hid_t fapl)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
{
|
2003-05-06 22:21:42 +08:00
|
|
|
|
char filename[32];
|
|
|
|
|
hid_t file, dataset, space, xfer;
|
1998-03-17 09:29:54 +08:00
|
|
|
|
int i, j, n;
|
1998-04-09 05:43:02 +08:00
|
|
|
|
hsize_t dims[2];
|
1998-03-17 09:29:54 +08:00
|
|
|
|
void *tconv_buf = NULL;
|
2002-12-13 06:44:56 +08:00
|
|
|
|
int f;
|
|
|
|
|
haddr_t offset;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
int rdata[DSET_DIM1][DSET_DIM2];
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
TESTING("simple I/O");
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
h5_fixname(FILENAME[4], fapl, filename, sizeof filename);
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Initialize the dataset */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = n = 0; i < DSET_DIM1; i++)
|
|
|
|
|
for (j = 0; j < DSET_DIM2; j++)
|
1998-03-06 05:27:38 +08:00
|
|
|
|
points[i][j] = n++;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Create the data space */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
dims[0] = DSET_DIM1;
|
|
|
|
|
dims[1] = DSET_DIM2;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if ((space = H5Screate_simple(2, dims, NULL))<0) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-03-17 09:29:54 +08:00
|
|
|
|
/* Create a small conversion buffer to test strip mining */
|
|
|
|
|
tconv_buf = malloc (1000);
|
2001-09-27 04:29:35 +08:00
|
|
|
|
xfer = H5Pcreate (H5P_DATASET_XFER);
|
1998-03-17 09:29:54 +08:00
|
|
|
|
assert (xfer>=0);
|
2003-06-10 03:16:59 +08:00
|
|
|
|
if (H5Pset_buffer (xfer, (size_t)1000, tconv_buf, NULL)<0) goto error;
|
1998-03-17 09:29:54 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Create the dataset */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if ((dataset = H5Dcreate(file, DSET_SIMPLE_IO_NAME, H5T_NATIVE_INT, space,
|
|
|
|
|
H5P_DEFAULT))<0) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
2002-11-07 23:57:53 +08:00
|
|
|
|
/* Test dataset address. Should be undefined. */
|
|
|
|
|
if(H5Dget_offset(dataset)!=HADDR_UNDEF) goto error;
|
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Write the data to the dataset */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, xfer, points)<0)
|
|
|
|
|
goto error;
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
2002-12-03 03:47:57 +08:00
|
|
|
|
/* Test dataset address in file. Open the same file as a C file, seek
|
|
|
|
|
* the data position as H5Dget_offset points to, read the dataset, and
|
|
|
|
|
* compare it with the data written in.*/
|
|
|
|
|
if((offset=H5Dget_offset(dataset))==HADDR_UNDEF) goto error;
|
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
/* Read the dataset back */
|
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, xfer, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
2002-12-03 03:47:57 +08:00
|
|
|
|
/* Check that the values read are the same as the values written */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = 0; i < DSET_DIM1; i++) {
|
|
|
|
|
for (j = 0; j < DSET_DIM2; j++) {
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if (points[i][j] != check[i][j]) {
|
2002-12-03 03:47:57 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %d,%d\n", i, j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-05-06 22:21:42 +08:00
|
|
|
|
}
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if(H5Pclose (xfer)<0) goto error;
|
|
|
|
|
if(H5Dclose(dataset)<0) goto error;
|
|
|
|
|
if(H5Fclose(file)<0) goto error;
|
1998-03-06 05:27:38 +08:00
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
f = HDopen(filename, O_RDONLY, 0);
|
|
|
|
|
HDlseek(f, (off_t)offset, SEEK_SET);
|
2003-05-08 05:52:24 +08:00
|
|
|
|
HDread(f, rdata, sizeof(int)*DSET_DIM1*DSET_DIM2);
|
2003-05-06 22:21:42 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Check that the values read are the same as the values written */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = 0; i < DSET_DIM1; i++) {
|
|
|
|
|
for (j = 0; j < DSET_DIM2; j++) {
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if (points[i][j] != rdata[i][j]) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %d,%d\n", i, j);
|
1998-03-06 05:27:38 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-05-06 22:21:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HDclose(f);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-05-01 13:16:50 +08:00
|
|
|
|
free (tconv_buf);
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-03-05 00:20:23 +08:00
|
|
|
|
return 0;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
error:
|
1998-03-05 00:20:23 +08:00
|
|
|
|
return -1;
|
1997-12-11 06:41:56 +08:00
|
|
|
|
}
|
2002-08-21 00:18:02 +08:00
|
|
|
|
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_userblock_offset
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests H5Dget_offset when user block exists.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Wednesday, November 27, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_userblock_offset(hid_t fapl)
|
|
|
|
|
{
|
|
|
|
|
char filename[32];
|
|
|
|
|
hid_t file, fcpl, dataset, space;
|
[svn-r6252] Purpose:
Lots of performance improvements & a couple new internal API interfaces.
Description:
Performance Improvements:
- Cached file offset & length sizes in shared file struct, to avoid
constantly looking them up in the FCPL.
- Generic property improvements:
- Added "revision" number to generic property classes to speed
up comparisons.
- Changed method of storing properties from using a hash-table
to the TBBT routines in the library.
- Share the propery names between classes and the lists derived
from them.
- Removed redundant 'def_value' buffer from each property.
- Switching code to use a "copy on write" strategy for
properties in each list, where the properties in each list
are shared with the properties in the class, until a
property's value is changed in a list.
- Fixed error in layout code which was allocating too many buffers.
- Redefined public macros of the form (H5open()/H5check, <variable>)
internally to only be (<variable>), avoiding innumerable useless
calls to H5open() and H5check_version().
- Reuse already zeroed buffers in H5F_contig_fill instead of
constantly re-zeroing them.
- Don't write fill values if writing entire dataset.
- Use gettimeofday() system call instead of time() system when
checking the modification time of a dataset.
- Added reference counted string API and use it for tracking the
names of objects opening in a file (for the ID->name code).
- Removed redundant H5P_get() calls in B-tree routines.
- Redefine H5T datatype macros internally to the library, to avoid
calling H5check redundantly.
- Keep dataspace information for dataset locally instead of reading
from disk each time. Added new module to track open objects
in a file, to allow this (which will be useful eventually for
some FPH5 metadata caching issues).
- Remove H5AC_find macro which was inlining metadata cache lookups,
and call function instead.
- Remove redundant memset() calls from H5G_namei() routine.
- Remove redundant checking of object type when locating objects
in metadata cache and rely on the address only.
- Create default dataset object to use when default dataset creation
property list is used to create datasets, bypassing querying
for all the property list values.
- Use default I/O vector size when performing raw data with the
default dataset transfer property list, instead of querying for
I/O vector size.
- Remove H5P_DEFAULT internally to the library, replacing it with
more specific default property list based on the type of
property list needed.
- Remove redundant memset() calls in object header message (H5O*)
routines.
- Remove redunant memset() calls in data I/O routines.
- Split free-list allocation routines into malloc() and calloc()-
like routines, instead of one combined routine.
- Remove lots of indirection in H5O*() routines.
- Simplify metadata cache entry comparison routine (used when
flushing entire cache out).
- Only enable metadata cache statistics when H5AC_DEBUG is turned
on, instead of always tracking them.
- Simplify address comparison macro (H5F_addr_eq).
- Remove redundant metadata cache entry protections during dataset
creation by protecting the object header once and making all
the modifications necessary for the dataset creation before
unprotecting it.
- Reduce # of "number of element in extent" computations performed
by computing and storing the value during dataspace creation.
- Simplify checking for group location's file information, when file
has not been involving in file-mounting operations.
- Use binary encoding for modification time, instead of ASCII.
- Hoist H5HL_peek calls (to get information in a local heap)
out of loops in many group routine.
- Use static variable for iterators of selections, instead of
dynamically allocation them each time.
- Lookup & insert new entries in one step, avoiding traversing
group's B-tree twice.
- Fixed memory leak in H5Gget_objname_idx() routine (tangential to
performance improvements, but fixed along the way).
- Use free-list for reference counted strings.
- Don't bother copying object names into cached group entries,
since they are re-created when an object is opened.
The benchmark I used to measure these results created several thousand
small (2K) datasets in a file and wrote out the data for them. This is
Elena's "regular.c" benchmark.
These changes resulted in approximately ~4.3x speedup of the
development branch when compared to the previous code in the
development branch and ~1.4x speedup compared to the release
branch.
Additionally, these changes reduce the total memory used (code and
data) by the development branch by ~800KB, bringing the development
branch back into the same ballpark as the release branch.
I'll send out a more detailed description of the benchmark results
as a followup note.
New internal API routines:
Added "reference counted strings" API for tracking strings that get
used by multiple owners without duplicating the strings.
Added "ternary search tree" API for text->object mappings.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Other platforms/configurations tested?
FreeBSD 4.7 (sleipnir) serial & parallel
Solaris 2.6 (baldric) serial
2003-01-10 01:20:03 +08:00
|
|
|
|
int i, j;
|
2002-12-03 03:47:57 +08:00
|
|
|
|
hsize_t dims[2];
|
2002-12-14 00:29:01 +08:00
|
|
|
|
int f;
|
2002-12-03 03:47:57 +08:00
|
|
|
|
haddr_t offset;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
int rdata[DSET_DIM1][DSET_DIM2];
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
|
|
|
|
TESTING("dataset offset with user block");
|
|
|
|
|
|
|
|
|
|
h5_fixname(FILENAME[2], fapl, filename, sizeof filename);
|
|
|
|
|
|
|
|
|
|
if((fcpl=H5Pcreate(H5P_FILE_CREATE))<0) goto error;
|
[svn-r6252] Purpose:
Lots of performance improvements & a couple new internal API interfaces.
Description:
Performance Improvements:
- Cached file offset & length sizes in shared file struct, to avoid
constantly looking them up in the FCPL.
- Generic property improvements:
- Added "revision" number to generic property classes to speed
up comparisons.
- Changed method of storing properties from using a hash-table
to the TBBT routines in the library.
- Share the propery names between classes and the lists derived
from them.
- Removed redundant 'def_value' buffer from each property.
- Switching code to use a "copy on write" strategy for
properties in each list, where the properties in each list
are shared with the properties in the class, until a
property's value is changed in a list.
- Fixed error in layout code which was allocating too many buffers.
- Redefined public macros of the form (H5open()/H5check, <variable>)
internally to only be (<variable>), avoiding innumerable useless
calls to H5open() and H5check_version().
- Reuse already zeroed buffers in H5F_contig_fill instead of
constantly re-zeroing them.
- Don't write fill values if writing entire dataset.
- Use gettimeofday() system call instead of time() system when
checking the modification time of a dataset.
- Added reference counted string API and use it for tracking the
names of objects opening in a file (for the ID->name code).
- Removed redundant H5P_get() calls in B-tree routines.
- Redefine H5T datatype macros internally to the library, to avoid
calling H5check redundantly.
- Keep dataspace information for dataset locally instead of reading
from disk each time. Added new module to track open objects
in a file, to allow this (which will be useful eventually for
some FPH5 metadata caching issues).
- Remove H5AC_find macro which was inlining metadata cache lookups,
and call function instead.
- Remove redundant memset() calls from H5G_namei() routine.
- Remove redundant checking of object type when locating objects
in metadata cache and rely on the address only.
- Create default dataset object to use when default dataset creation
property list is used to create datasets, bypassing querying
for all the property list values.
- Use default I/O vector size when performing raw data with the
default dataset transfer property list, instead of querying for
I/O vector size.
- Remove H5P_DEFAULT internally to the library, replacing it with
more specific default property list based on the type of
property list needed.
- Remove redundant memset() calls in object header message (H5O*)
routines.
- Remove redunant memset() calls in data I/O routines.
- Split free-list allocation routines into malloc() and calloc()-
like routines, instead of one combined routine.
- Remove lots of indirection in H5O*() routines.
- Simplify metadata cache entry comparison routine (used when
flushing entire cache out).
- Only enable metadata cache statistics when H5AC_DEBUG is turned
on, instead of always tracking them.
- Simplify address comparison macro (H5F_addr_eq).
- Remove redundant metadata cache entry protections during dataset
creation by protecting the object header once and making all
the modifications necessary for the dataset creation before
unprotecting it.
- Reduce # of "number of element in extent" computations performed
by computing and storing the value during dataspace creation.
- Simplify checking for group location's file information, when file
has not been involving in file-mounting operations.
- Use binary encoding for modification time, instead of ASCII.
- Hoist H5HL_peek calls (to get information in a local heap)
out of loops in many group routine.
- Use static variable for iterators of selections, instead of
dynamically allocation them each time.
- Lookup & insert new entries in one step, avoiding traversing
group's B-tree twice.
- Fixed memory leak in H5Gget_objname_idx() routine (tangential to
performance improvements, but fixed along the way).
- Use free-list for reference counted strings.
- Don't bother copying object names into cached group entries,
since they are re-created when an object is opened.
The benchmark I used to measure these results created several thousand
small (2K) datasets in a file and wrote out the data for them. This is
Elena's "regular.c" benchmark.
These changes resulted in approximately ~4.3x speedup of the
development branch when compared to the previous code in the
development branch and ~1.4x speedup compared to the release
branch.
Additionally, these changes reduce the total memory used (code and
data) by the development branch by ~800KB, bringing the development
branch back into the same ballpark as the release branch.
I'll send out a more detailed description of the benchmark results
as a followup note.
New internal API routines:
Added "reference counted strings" API for tracking strings that get
used by multiple owners without duplicating the strings.
Added "ternary search tree" API for text->object mappings.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Other platforms/configurations tested?
FreeBSD 4.7 (sleipnir) serial & parallel
Solaris 2.6 (baldric) serial
2003-01-10 01:20:03 +08:00
|
|
|
|
if(H5Pset_userblock(fcpl, (hsize_t)USER_BLOCK)<0) goto error;
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
[svn-r6252] Purpose:
Lots of performance improvements & a couple new internal API interfaces.
Description:
Performance Improvements:
- Cached file offset & length sizes in shared file struct, to avoid
constantly looking them up in the FCPL.
- Generic property improvements:
- Added "revision" number to generic property classes to speed
up comparisons.
- Changed method of storing properties from using a hash-table
to the TBBT routines in the library.
- Share the propery names between classes and the lists derived
from them.
- Removed redundant 'def_value' buffer from each property.
- Switching code to use a "copy on write" strategy for
properties in each list, where the properties in each list
are shared with the properties in the class, until a
property's value is changed in a list.
- Fixed error in layout code which was allocating too many buffers.
- Redefined public macros of the form (H5open()/H5check, <variable>)
internally to only be (<variable>), avoiding innumerable useless
calls to H5open() and H5check_version().
- Reuse already zeroed buffers in H5F_contig_fill instead of
constantly re-zeroing them.
- Don't write fill values if writing entire dataset.
- Use gettimeofday() system call instead of time() system when
checking the modification time of a dataset.
- Added reference counted string API and use it for tracking the
names of objects opening in a file (for the ID->name code).
- Removed redundant H5P_get() calls in B-tree routines.
- Redefine H5T datatype macros internally to the library, to avoid
calling H5check redundantly.
- Keep dataspace information for dataset locally instead of reading
from disk each time. Added new module to track open objects
in a file, to allow this (which will be useful eventually for
some FPH5 metadata caching issues).
- Remove H5AC_find macro which was inlining metadata cache lookups,
and call function instead.
- Remove redundant memset() calls from H5G_namei() routine.
- Remove redundant checking of object type when locating objects
in metadata cache and rely on the address only.
- Create default dataset object to use when default dataset creation
property list is used to create datasets, bypassing querying
for all the property list values.
- Use default I/O vector size when performing raw data with the
default dataset transfer property list, instead of querying for
I/O vector size.
- Remove H5P_DEFAULT internally to the library, replacing it with
more specific default property list based on the type of
property list needed.
- Remove redundant memset() calls in object header message (H5O*)
routines.
- Remove redunant memset() calls in data I/O routines.
- Split free-list allocation routines into malloc() and calloc()-
like routines, instead of one combined routine.
- Remove lots of indirection in H5O*() routines.
- Simplify metadata cache entry comparison routine (used when
flushing entire cache out).
- Only enable metadata cache statistics when H5AC_DEBUG is turned
on, instead of always tracking them.
- Simplify address comparison macro (H5F_addr_eq).
- Remove redundant metadata cache entry protections during dataset
creation by protecting the object header once and making all
the modifications necessary for the dataset creation before
unprotecting it.
- Reduce # of "number of element in extent" computations performed
by computing and storing the value during dataspace creation.
- Simplify checking for group location's file information, when file
has not been involving in file-mounting operations.
- Use binary encoding for modification time, instead of ASCII.
- Hoist H5HL_peek calls (to get information in a local heap)
out of loops in many group routine.
- Use static variable for iterators of selections, instead of
dynamically allocation them each time.
- Lookup & insert new entries in one step, avoiding traversing
group's B-tree twice.
- Fixed memory leak in H5Gget_objname_idx() routine (tangential to
performance improvements, but fixed along the way).
- Use free-list for reference counted strings.
- Don't bother copying object names into cached group entries,
since they are re-created when an object is opened.
The benchmark I used to measure these results created several thousand
small (2K) datasets in a file and wrote out the data for them. This is
Elena's "regular.c" benchmark.
These changes resulted in approximately ~4.3x speedup of the
development branch when compared to the previous code in the
development branch and ~1.4x speedup compared to the release
branch.
Additionally, these changes reduce the total memory used (code and
data) by the development branch by ~800KB, bringing the development
branch back into the same ballpark as the release branch.
I'll send out a more detailed description of the benchmark results
as a followup note.
New internal API routines:
Added "reference counted strings" API for tracking strings that get
used by multiple owners without duplicating the strings.
Added "ternary search tree" API for text->object mappings.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
Other platforms/configurations tested?
FreeBSD 4.7 (sleipnir) serial & parallel
Solaris 2.6 (baldric) serial
2003-01-10 01:20:03 +08:00
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, fcpl, fapl))<0)
|
2002-12-03 03:47:57 +08:00
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
dims[0] = DSET_DIM1;
|
|
|
|
|
dims[1] = DSET_DIM2;
|
2002-12-03 03:47:57 +08:00
|
|
|
|
if ((space = H5Screate_simple(2, dims, NULL))<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Create the dataset */
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if ((dataset = H5Dcreate(file, DSET_USERBLOCK_IO_NAME, H5T_NATIVE_INT, space,
|
2002-12-03 03:47:57 +08:00
|
|
|
|
H5P_DEFAULT))<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Write the data to the dataset */
|
|
|
|
|
if (H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, points)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Test dataset address in file. Open the same file as a C file, seek
|
|
|
|
|
* the data position as H5Dget_offset points to, read the dataset, and
|
|
|
|
|
* compare it with the data written in.*/
|
|
|
|
|
if((offset=H5Dget_offset(dataset))==HADDR_UNDEF) goto error;
|
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if(H5Dclose(dataset)<0) goto error;
|
|
|
|
|
if(H5Fclose(file)<0) goto error;
|
|
|
|
|
|
2002-12-14 00:29:01 +08:00
|
|
|
|
f = HDopen(filename, O_RDONLY, 0);
|
|
|
|
|
HDlseek(f, (off_t)offset, SEEK_SET);
|
2003-05-08 05:52:24 +08:00
|
|
|
|
HDread(f, rdata, sizeof(int)*DSET_DIM1*DSET_DIM2);
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = 0; i < DSET_DIM1; i++) {
|
|
|
|
|
for (j = 0; j < DSET_DIM2; j++) {
|
2002-12-03 03:47:57 +08:00
|
|
|
|
if (points[i][j] != rdata[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %d,%d\n", i, j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-14 00:29:01 +08:00
|
|
|
|
HDclose(f);
|
2002-12-03 03:47:57 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
error:
|
2002-12-03 03:47:57 +08:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-21 00:18:02 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_compact_io
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests compact dataset I/O. That is, reading and writing a
|
|
|
|
|
* complete multi-dimensional array without data type or data
|
|
|
|
|
* space conversions, without compression, and store in
|
|
|
|
|
* compact dataset.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* August 8, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2002-10-15 03:46:13 +08:00
|
|
|
|
test_compact_io(hid_t fapl)
|
2002-08-21 00:18:02 +08:00
|
|
|
|
{
|
|
|
|
|
hid_t file, dataset, space, plist;
|
|
|
|
|
hsize_t dims[2];
|
|
|
|
|
herr_t status;
|
|
|
|
|
int wbuf[16][8], rbuf[16][8];
|
2002-10-15 03:46:13 +08:00
|
|
|
|
char filename[1024];
|
2002-08-21 00:18:02 +08:00
|
|
|
|
int i, j, n;
|
|
|
|
|
|
|
|
|
|
TESTING("compact dataset I/O");
|
|
|
|
|
|
|
|
|
|
/* Initialize data */
|
|
|
|
|
n=0;
|
|
|
|
|
for(i=0; i<16; i++) {
|
|
|
|
|
for(j=0; j<8; j++) {
|
|
|
|
|
wbuf[i][j] = n++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create a small data space for compact dataset */
|
|
|
|
|
dims[0] = 16;
|
|
|
|
|
dims[1] = 8;
|
|
|
|
|
space = H5Screate_simple(2, dims, NULL);
|
|
|
|
|
assert(space>=0);
|
|
|
|
|
|
|
|
|
|
/* Create a file */
|
2002-10-15 03:46:13 +08:00
|
|
|
|
h5_fixname(FILENAME[1], fapl, filename, sizeof filename);
|
|
|
|
|
if((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0)
|
2002-08-21 00:18:02 +08:00
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Create property list for compact dataset creation */
|
|
|
|
|
plist = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
assert(plist >= 0);
|
|
|
|
|
status = H5Pset_layout(plist, H5D_COMPACT);
|
|
|
|
|
assert(status >= 0);
|
2002-09-14 00:57:46 +08:00
|
|
|
|
status = H5Pset_alloc_time(plist, H5D_ALLOC_TIME_EARLY);
|
2002-08-21 00:18:02 +08:00
|
|
|
|
assert(status >= 0);
|
|
|
|
|
|
|
|
|
|
/* Create and write to a compact dataset */
|
|
|
|
|
if((dataset = H5Dcreate(file, DSET_COMPACT_IO_NAME, H5T_NATIVE_INT, space,
|
|
|
|
|
plist))<0)
|
|
|
|
|
goto error;
|
2002-11-07 23:57:53 +08:00
|
|
|
|
|
|
|
|
|
/* Test dataset address. Should be undefined. */
|
|
|
|
|
if(H5Dget_offset(dataset)!=HADDR_UNDEF) goto error;
|
|
|
|
|
|
2002-08-21 00:18:02 +08:00
|
|
|
|
if(H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
2002-11-07 23:57:53 +08:00
|
|
|
|
/* Test dataset address. Should be undefined. */
|
|
|
|
|
if(H5Dget_offset(dataset)!=HADDR_UNDEF) goto error;
|
|
|
|
|
|
2002-08-21 00:18:02 +08:00
|
|
|
|
/* Close file */
|
|
|
|
|
H5Sclose(space);
|
|
|
|
|
H5Pclose(plist);
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open the file and check data
|
|
|
|
|
*/
|
2002-10-15 03:46:13 +08:00
|
|
|
|
if((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0)
|
2002-08-21 00:18:02 +08:00
|
|
|
|
goto error;
|
|
|
|
|
if((dataset = H5Dopen(file, DSET_COMPACT_IO_NAME))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i = 0; i < 16; i++) {
|
|
|
|
|
for (j = 0; j < 8; j++) {
|
|
|
|
|
if (rbuf[i][j] != wbuf[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %d,%d\n", i, j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-23 00:23:42 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_max_compact
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests compact dataset of maximal size.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* August 8, 2002
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_max_compact(hid_t fapl)
|
|
|
|
|
{
|
|
|
|
|
hid_t file, dataset, space, plist;
|
|
|
|
|
hsize_t dims[1];
|
|
|
|
|
hsize_t compact_size;
|
|
|
|
|
herr_t status;
|
|
|
|
|
int *wbuf, *rbuf;
|
|
|
|
|
char filename[1024];
|
2003-04-29 08:01:04 +08:00
|
|
|
|
int i, n;
|
2003-04-23 00:23:42 +08:00
|
|
|
|
|
|
|
|
|
TESTING("compact dataset of maximal size");
|
|
|
|
|
|
|
|
|
|
/* Test compact dataset of size 64KB-64 */
|
|
|
|
|
|
|
|
|
|
/* Initialize data */
|
|
|
|
|
compact_size = (SIXTY_FOUR_KB-64)/sizeof(int);
|
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
|
wbuf = (int*)HDmalloc(sizeof(int)*(size_t)compact_size);
|
|
|
|
|
rbuf = (int*)HDmalloc(sizeof(int)*(size_t)compact_size);
|
2003-04-23 00:23:42 +08:00
|
|
|
|
|
|
|
|
|
n=0;
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for(i=0; i<(int)compact_size; i++)
|
2003-04-23 00:23:42 +08:00
|
|
|
|
wbuf[i] = n++;
|
|
|
|
|
|
|
|
|
|
/* Create a small data space for compact dataset */
|
|
|
|
|
dims[0] = compact_size;
|
|
|
|
|
space = H5Screate_simple(1, dims, NULL);
|
|
|
|
|
assert(space>=0);
|
|
|
|
|
|
|
|
|
|
/* Create a file */
|
|
|
|
|
h5_fixname(FILENAME[3], fapl, filename, sizeof filename);
|
|
|
|
|
if((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Create property list for compact dataset creation */
|
|
|
|
|
plist = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
assert(plist >= 0);
|
|
|
|
|
status = H5Pset_layout(plist, H5D_COMPACT);
|
|
|
|
|
assert(status >= 0);
|
|
|
|
|
|
|
|
|
|
/* Create and write to a compact dataset */
|
|
|
|
|
if((dataset = H5Dcreate(file, DSET_COMPACT_MAX_NAME, H5T_NATIVE_INT, space,
|
|
|
|
|
plist))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
if(H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, wbuf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Close file */
|
|
|
|
|
H5Sclose(space);
|
|
|
|
|
H5Pclose(plist);
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open the file and check data
|
|
|
|
|
*/
|
|
|
|
|
if((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if((dataset = H5Dopen(file, DSET_COMPACT_MAX_NAME))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, rbuf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = 0; i < (int)compact_size; i++) {
|
2003-04-23 00:23:42 +08:00
|
|
|
|
if (rbuf[i] != wbuf[i]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
2003-05-08 05:52:24 +08:00
|
|
|
|
printf(" At index %d\n", i);
|
2003-04-23 00:23:42 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
HDfree(wbuf);
|
|
|
|
|
HDfree(rbuf);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Test compact dataset of size 64KB */
|
|
|
|
|
|
|
|
|
|
/* Create a data space for compact dataset */
|
|
|
|
|
compact_size = SIXTY_FOUR_KB/sizeof(int);
|
|
|
|
|
dims[0] = compact_size;
|
|
|
|
|
space = H5Screate_simple(1, dims, NULL);
|
|
|
|
|
assert(space>=0);
|
|
|
|
|
|
|
|
|
|
/* Open file */
|
|
|
|
|
if((file=H5Fopen(filename, H5F_ACC_RDWR, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Create property list for compact dataset creation */
|
|
|
|
|
plist = H5Pcreate(H5P_DATASET_CREATE);
|
|
|
|
|
assert(plist >= 0);
|
|
|
|
|
status = H5Pset_layout(plist, H5D_COMPACT);
|
|
|
|
|
assert(status >= 0);
|
|
|
|
|
|
|
|
|
|
/* Create and write to a compact dataset */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Dcreate(file, DSET_COMPACT_MAX2_NAME, H5T_NATIVE_INT, space, plist);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
|
|
|
|
|
/* Close file */
|
|
|
|
|
H5Sclose(space);
|
|
|
|
|
H5Pclose(plist);
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2003-05-14 00:49:38 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_conv_buffer
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test size of data type conversion buffer.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Monday, May 12, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_conv_buffer(hid_t fid)
|
|
|
|
|
{
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
int a[DIM1][DIM2][DIM3];
|
|
|
|
|
float b[DIM2];
|
|
|
|
|
double c[DIM3];
|
|
|
|
|
} CmpField;
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
|
{
|
|
|
|
|
float b[DIM2];
|
|
|
|
|
double c[DIM3];
|
|
|
|
|
} CmpFieldR;
|
|
|
|
|
|
|
|
|
|
herr_t status = -1;
|
|
|
|
|
int j, k, l;
|
|
|
|
|
|
|
|
|
|
CmpField *cf;
|
|
|
|
|
CmpFieldR *cfrR;
|
|
|
|
|
|
|
|
|
|
hid_t dataset = -1; /* dataset ID */
|
|
|
|
|
hid_t space = -1; /* data space ID */
|
|
|
|
|
hid_t ctype1, ctype2; /* data type ID */
|
|
|
|
|
hid_t arr_type1, arr_type2, arr_type3, arr_type4, arr_type5;
|
|
|
|
|
hsize_t dimsa[3];
|
|
|
|
|
hsize_t dimsb[1];
|
|
|
|
|
hsize_t dimsc[1];
|
|
|
|
|
hid_t xfer_list;
|
2003-06-04 23:25:23 +08:00
|
|
|
|
size_t size;
|
2003-05-14 00:49:38 +08:00
|
|
|
|
|
|
|
|
|
TESTING("data type conversion buffer size");
|
|
|
|
|
|
|
|
|
|
cf = (CmpField *)calloc(1, sizeof(CmpField));
|
|
|
|
|
|
|
|
|
|
/* Populate the data members */
|
|
|
|
|
for (j = 0; j < DIM1; j++)
|
|
|
|
|
for (k = 0; k < DIM2; k++)
|
|
|
|
|
for (l = 0; l < DIM3; l++)
|
|
|
|
|
cf->a[j][k][l] = 10*(j+1) + l + k;
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < DIM2; j++)
|
|
|
|
|
cf->b[j] = 100.*(j+1) + 0.01*j;
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < DIM3; j++)
|
|
|
|
|
cf->c[j] = 100.*(j+1) + 0.02*j;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Create data space */
|
|
|
|
|
if((space=H5Screate(H5S_SCALAR))<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Add members to the compound data type */
|
|
|
|
|
dimsa[0] = DIM1;
|
|
|
|
|
dimsa[1] = DIM2;
|
|
|
|
|
dimsa[2] = DIM3;
|
|
|
|
|
dimsb[0] = DIM2;
|
|
|
|
|
dimsc[0] = DIM3;
|
|
|
|
|
|
|
|
|
|
/* Create the memory data type */
|
|
|
|
|
if((ctype1 = H5Tcreate(H5T_COMPOUND, sizeof (CmpField)))<0) goto error;
|
|
|
|
|
|
|
|
|
|
if((arr_type1 = H5Tarray_create(H5T_NATIVE_INT, 3, dimsa, NULL))<0) goto error;
|
|
|
|
|
if((arr_type2 = H5Tarray_create(H5T_NATIVE_FLOAT, 1, dimsb, NULL))<0) goto error;
|
|
|
|
|
if((arr_type3 = H5Tarray_create(H5T_NATIVE_DOUBLE, 1, dimsc, NULL))<0) goto error;
|
|
|
|
|
|
|
|
|
|
if(H5Tinsert(ctype1, "A", HOFFSET(CmpField, a), arr_type1)<0) goto error;
|
|
|
|
|
if(H5Tinsert (ctype1, "B", HOFFSET(CmpField, b), arr_type2)<0) goto error;
|
|
|
|
|
if(H5Tinsert (ctype1, "C", HOFFSET(CmpField, c), arr_type3)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Create the dataset */
|
|
|
|
|
if((dataset = H5Dcreate(fid, DSET_CONV_BUF_NAME, ctype1, space, H5P_DEFAULT))<0) goto error;
|
|
|
|
|
if(H5Dwrite(dataset, ctype1, H5S_ALL, H5S_ALL, H5P_DEFAULT, cf)<0) goto error;
|
|
|
|
|
|
|
|
|
|
if((ctype2 = H5Tcreate(H5T_COMPOUND, sizeof (CmpFieldR)))<0) goto error;
|
|
|
|
|
|
|
|
|
|
if((arr_type4 = H5Tarray_create(H5T_NATIVE_FLOAT, 1, dimsb, NULL))<0) goto error;
|
|
|
|
|
if((arr_type5 = H5Tarray_create(H5T_NATIVE_DOUBLE, 1, dimsc, NULL))<0) goto error;
|
|
|
|
|
|
|
|
|
|
if(H5Tinsert (ctype2, "B", HOFFSET(CmpFieldR, b), arr_type4)<0) goto error;
|
|
|
|
|
if(H5Tinsert (ctype2, "C", HOFFSET(CmpFieldR, c), arr_type5)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Read should succeed since library will set conversion buffer big enough */
|
|
|
|
|
cfrR = (CmpFieldR *)calloc(1, sizeof(CmpFieldR));
|
|
|
|
|
if(H5Dread(dataset, ctype2, H5S_ALL, H5S_ALL, H5P_DEFAULT, cfrR)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Read should fail since conversion buffer isn't big enough */
|
|
|
|
|
xfer_list = H5Pcreate (H5P_DATASET_XFER);
|
|
|
|
|
size = (DIM2*DIM3*(sizeof(int))+ DIM2*(sizeof(float))+
|
|
|
|
|
DIM3*(sizeof(double)));
|
|
|
|
|
if(H5Pset_buffer (xfer_list, size, NULL, NULL)<0) goto error;
|
|
|
|
|
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status = H5Dread(dataset, ctype2, H5S_ALL, H5S_ALL, xfer_list, cfrR);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (status >= 0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
puts(" Library shouldn't allow conversion buffer too small");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Read will succeed since conversion buffer is big enough */
|
|
|
|
|
size = (DIM1*DIM2*DIM3*(sizeof(int))+ DIM2*(sizeof(float))+
|
|
|
|
|
DIM3*(sizeof(double)));
|
|
|
|
|
if(H5Pset_buffer (xfer_list, size, NULL, NULL)<0) goto error;
|
|
|
|
|
|
|
|
|
|
if(H5Dread(dataset, ctype2, H5S_ALL, H5S_ALL, xfer_list, cfrR)<0) goto error;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(H5Pclose(xfer_list)<0) goto error;
|
|
|
|
|
if(H5Sclose(space)<0) goto error;
|
|
|
|
|
if(H5Tclose(arr_type1)<0) goto error;
|
|
|
|
|
if(H5Tclose(arr_type2)<0) goto error;
|
|
|
|
|
if(H5Tclose(arr_type3)<0) goto error;
|
|
|
|
|
if(H5Tclose(ctype1)<0) goto error;
|
|
|
|
|
if(H5Tclose(ctype2)<0) goto error;
|
|
|
|
|
if(H5Tclose(arr_type4)<0) goto error;
|
|
|
|
|
if(H5Tclose(arr_type5)<0) goto error;
|
|
|
|
|
if(H5Dclose(dataset)<0) goto error;
|
|
|
|
|
|
|
|
|
|
if(cf)
|
|
|
|
|
HDfree(cf);
|
|
|
|
|
if(cfrR)
|
|
|
|
|
HDfree(cfrR);
|
|
|
|
|
puts(" PASSED");
|
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1998-01-15 03:42:59 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Function: test_tconv
|
1998-01-15 03:42:59 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Purpose: Test some simple data type conversion stuff.
|
1998-01-15 03:42:59 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Return: Success: 0
|
1998-01-15 03:42:59 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Failure: -1
|
1998-01-15 03:42:59 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Wednesday, January 14, 1998
|
1998-01-15 03:42:59 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
1998-01-17 06:23:43 +08:00
|
|
|
|
test_tconv(hid_t file)
|
1998-01-15 03:42:59 +08:00
|
|
|
|
{
|
1998-03-05 00:20:23 +08:00
|
|
|
|
char *out=NULL, *in=NULL;
|
|
|
|
|
int i;
|
1998-04-09 05:43:02 +08:00
|
|
|
|
hsize_t dims[1];
|
1998-06-19 05:03:30 +08:00
|
|
|
|
hid_t space, dataset;
|
1998-02-13 00:39:09 +08:00
|
|
|
|
|
|
|
|
|
out = malloc (4*1000000);
|
|
|
|
|
assert (out);
|
|
|
|
|
in = malloc (4*1000000);
|
|
|
|
|
assert (in);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
TESTING("data type conversion");
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
1998-01-17 06:23:43 +08:00
|
|
|
|
/* Initialize the dataset */
|
1998-03-05 00:20:23 +08:00
|
|
|
|
for (i = 0; i < 1000000; i++) {
|
|
|
|
|
out[i*4+0] = 0x11;
|
|
|
|
|
out[i*4+1] = 0x22;
|
|
|
|
|
out[i*4+2] = 0x33;
|
|
|
|
|
out[i*4+3] = 0x44;
|
|
|
|
|
}
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
dims[0] = 1000000;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if ((space = H5Screate_simple (1, dims, NULL))<0) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Create the data set */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if ((dataset = H5Dcreate(file, DSET_TCONV_NAME, H5T_STD_I32LE, space,
|
|
|
|
|
H5P_DEFAULT))<0) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Write the data to the dataset */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Dwrite(dataset, H5T_STD_I32LE, H5S_ALL, H5S_ALL, H5P_DEFAULT,
|
|
|
|
|
out)<0) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Read data with byte order conversion */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Dread(dataset, H5T_STD_I32BE, H5S_ALL, H5S_ALL, H5P_DEFAULT, in)<0)
|
|
|
|
|
goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
|
|
|
|
/* Check */
|
|
|
|
|
for (i = 0; i < 1000000; i++) {
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (in[4*i+0]!=out[4*i+3] ||
|
|
|
|
|
in[4*i+1]!=out[4*i+2] ||
|
|
|
|
|
in[4*i+2]!=out[4*i+1] ||
|
|
|
|
|
in[4*i+3]!=out[4*i+0]) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
puts(" Read with byte order conversion failed.");
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
1998-01-17 06:23:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Dclose(dataset)<0) goto error;
|
1998-05-01 13:16:50 +08:00
|
|
|
|
free (out);
|
|
|
|
|
free (in);
|
1998-01-17 06:23:43 +08:00
|
|
|
|
puts(" PASSED");
|
1998-03-05 00:20:23 +08:00
|
|
|
|
return 0;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
1998-01-15 03:42:59 +08:00
|
|
|
|
}
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* This message derives from H5Z */
|
|
|
|
|
const H5Z_class_t H5Z_BOGUS[1] = {{
|
|
|
|
|
H5Z_FILTER_BOGUS, /* Filter id number */
|
|
|
|
|
"bogus", /* Filter name for debugging */
|
|
|
|
|
NULL, /* The "can apply" callback */
|
|
|
|
|
NULL, /* The "set local" callback */
|
|
|
|
|
filter_bogus, /* The actual filter function */
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: can_apply_bogus
|
|
|
|
|
*
|
|
|
|
|
* Purpose: A bogus 'can apply' callback that returns 0 for H5T_NATIVE_DOUBLE
|
|
|
|
|
* dataype, but returns 1 for all other datatypes
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Described above
|
|
|
|
|
* Failure: 0
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Friday, April 5, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
can_apply_bogus(hid_t UNUSED dcpl_id, hid_t type_id, hid_t UNUSED space_id)
|
|
|
|
|
{
|
|
|
|
|
if(H5Tequal(type_id,H5T_NATIVE_DOUBLE))
|
|
|
|
|
return 0;
|
|
|
|
|
else
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-04-09 10:37:27 +08:00
|
|
|
|
* Function: filter_bogus
|
1998-04-22 04:32:07 +08:00
|
|
|
|
*
|
1998-08-06 06:22:59 +08:00
|
|
|
|
* Purpose: A bogus compression method that doesn't do anything.
|
1998-04-22 04:32:07 +08:00
|
|
|
|
*
|
1998-08-06 06:22:59 +08:00
|
|
|
|
* Return: Success: Data chunk size
|
1998-04-22 04:32:07 +08:00
|
|
|
|
*
|
|
|
|
|
* Failure: 0
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, April 21, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static size_t
|
2003-04-09 10:37:27 +08:00
|
|
|
|
filter_bogus(unsigned int UNUSED flags, size_t UNUSED cd_nelmts,
|
2002-04-23 01:48:24 +08:00
|
|
|
|
const unsigned int UNUSED *cd_values, size_t nbytes,
|
|
|
|
|
size_t UNUSED *buf_size, void UNUSED **buf)
|
1998-04-22 04:32:07 +08:00
|
|
|
|
{
|
1998-08-06 06:22:59 +08:00
|
|
|
|
return nbytes;
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-04-09 10:37:27 +08:00
|
|
|
|
* Function: set_local_bogus2
|
|
|
|
|
*
|
|
|
|
|
* Purpose: A 'set local' callback that stores the size of the datatype
|
|
|
|
|
* and adds it to all the H5T_NATIVE_INT values during
|
|
|
|
|
* filter operation.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: non-negative
|
|
|
|
|
* Failure: negative
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Friday, April 5, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
set_local_bogus2(hid_t dcpl_id, hid_t type_id, hid_t UNUSED space_id)
|
|
|
|
|
{
|
|
|
|
|
unsigned add_on=0; /* Value to add to data going through */
|
|
|
|
|
unsigned flags; /* Filter flags */
|
|
|
|
|
size_t cd_nelmts=BOGUS2_PERM_NPARMS; /* Number of filter parameters */
|
|
|
|
|
unsigned cd_values[4]; /* Filter parameters */
|
|
|
|
|
|
|
|
|
|
/* Check for native integer datatype and set private property */
|
|
|
|
|
if(H5Tequal(type_id,H5T_NATIVE_INT)>0)
|
2003-06-26 10:10:33 +08:00
|
|
|
|
add_on=(unsigned)H5Tget_size(type_id);
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
|
|
|
|
/* Get the filter's current parameters */
|
|
|
|
|
if(H5Pget_filter_by_id(dcpl_id,H5Z_FILTER_BOGUS2,&flags,&cd_nelmts,
|
|
|
|
|
cd_values,0,NULL)<0)
|
|
|
|
|
return(FAIL);
|
|
|
|
|
|
|
|
|
|
/* Check that the parameter values were passed along correctly */
|
|
|
|
|
if(cd_values[0]!=BOGUS2_PARAM_1)
|
|
|
|
|
return(FAIL);
|
|
|
|
|
if(cd_values[1]!=BOGUS2_PARAM_2)
|
|
|
|
|
return(FAIL);
|
|
|
|
|
|
|
|
|
|
/* Set "local" parameters for this dataset */
|
|
|
|
|
cd_values[2]=(add_on>0); /* Flag to indicate data is modified */
|
|
|
|
|
cd_values[3]=add_on; /* Amount the data was modified by */
|
|
|
|
|
|
|
|
|
|
/* Modify the filter's parameters for this dataset */
|
|
|
|
|
if(H5Pmodify_filter(dcpl_id, H5Z_FILTER_BOGUS2, flags, BOGUS2_ALL_NPARMS,
|
|
|
|
|
cd_values)<0)
|
|
|
|
|
return(FAIL);
|
|
|
|
|
|
|
|
|
|
return(SUCCEED);
|
|
|
|
|
} /* end set_local_bogus2() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: filter_bogus2
|
|
|
|
|
*
|
|
|
|
|
* Purpose: A filter method that adds a value to data values on writing
|
|
|
|
|
* (if the parameter is set), but does not modify data values on
|
|
|
|
|
* reading (so that correct operation of the filter can be
|
|
|
|
|
* checked).
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Data chunk size
|
|
|
|
|
* Failure: 0
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Monday, April 7, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static size_t
|
|
|
|
|
filter_bogus2(unsigned int flags, size_t cd_nelmts,
|
|
|
|
|
const unsigned int *cd_values, size_t nbytes,
|
|
|
|
|
size_t *buf_size, void **buf)
|
|
|
|
|
{
|
|
|
|
|
/* Check for the correct number of parameters */
|
|
|
|
|
if(cd_nelmts!=BOGUS2_ALL_NPARMS)
|
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
|
|
/* Check that permanent parameters are set correctly */
|
|
|
|
|
if(cd_values[0]!=BOGUS2_PARAM_1)
|
|
|
|
|
return(0);
|
|
|
|
|
if(cd_values[1]!=BOGUS2_PARAM_2)
|
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
|
|
/* Check if this filter is supposed to do something */
|
|
|
|
|
if(cd_values[2]>0) {
|
|
|
|
|
/* Check whether we are "uncompressing" */
|
|
|
|
|
if (flags & H5Z_FLAG_REVERSE) {
|
|
|
|
|
/* Do nothing */
|
|
|
|
|
} /* end if */
|
|
|
|
|
/* "Compressing" */
|
|
|
|
|
else {
|
|
|
|
|
unsigned add_on=cd_values[3]; /* Get "add on" value */
|
|
|
|
|
int *int_ptr=*buf; /* Pointer to the data values */
|
|
|
|
|
size_t buf_left=*buf_size; /* Amount of data buffer left to process */
|
|
|
|
|
|
|
|
|
|
/* Add the "add on" value to all the data values */
|
|
|
|
|
while(buf_left>0) {
|
|
|
|
|
*int_ptr++ += add_on;
|
|
|
|
|
buf_left -= sizeof(int);
|
|
|
|
|
} /* end while */
|
|
|
|
|
} /* end else */
|
|
|
|
|
|
|
|
|
|
return(nbytes);
|
|
|
|
|
} /* end if */
|
|
|
|
|
/* Filter is "no op" */
|
|
|
|
|
else
|
|
|
|
|
return(nbytes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This message derives from H5Z */
|
|
|
|
|
const H5Z_class_t H5Z_CORRUPT[1] = {{
|
|
|
|
|
H5Z_FILTER_CORRUPT, /* Filter id number */
|
|
|
|
|
"corrupt", /* Filter name for debugging */
|
|
|
|
|
NULL, /* The "can apply" callback */
|
|
|
|
|
NULL, /* The "set local" callback */
|
|
|
|
|
filter_corrupt, /* The actual filter function */
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: filter_corrupt
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*
|
2003-02-13 04:07:21 +08:00
|
|
|
|
* Purpose: For testing Fletcher32 checksum. modify data slightly during
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* writing so that when data is read back, the checksum should
|
|
|
|
|
* fail.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: Data chunk size
|
|
|
|
|
*
|
|
|
|
|
* Failure: 0
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Jan 14, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static size_t
|
2003-04-09 10:37:27 +08:00
|
|
|
|
filter_corrupt(unsigned int flags, size_t cd_nelmts,
|
2003-02-05 02:50:56 +08:00
|
|
|
|
const unsigned int *cd_values, size_t nbytes,
|
|
|
|
|
size_t *buf_size, void **buf)
|
|
|
|
|
{
|
|
|
|
|
size_t ret_value = 0;
|
|
|
|
|
unsigned char *dst = (unsigned char*)(*buf);
|
|
|
|
|
unsigned int offset;
|
|
|
|
|
unsigned int length;
|
|
|
|
|
unsigned int value;
|
2003-02-13 01:04:40 +08:00
|
|
|
|
void *data;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if (cd_nelmts!=3 || !cd_values)
|
|
|
|
|
return 0;
|
|
|
|
|
offset = cd_values[0];
|
|
|
|
|
length = cd_values[1];
|
|
|
|
|
value = cd_values[2];
|
|
|
|
|
if(offset>nbytes || (offset+length)>nbytes || length<sizeof(unsigned int))
|
|
|
|
|
return 0;
|
|
|
|
|
|
2003-02-13 01:04:40 +08:00
|
|
|
|
data = HDmalloc(length);
|
|
|
|
|
HDmemset(data, (int)value, length);
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if (flags & H5Z_FLAG_REVERSE) { /* Varify data is actually corrupted during read */
|
|
|
|
|
dst += offset;
|
2003-02-13 01:04:40 +08:00
|
|
|
|
if(HDmemcmp(data, dst, length)!=0) return 0;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*buf_size = nbytes;
|
|
|
|
|
ret_value = nbytes;
|
|
|
|
|
} else { /* Write corrupted data */
|
|
|
|
|
dst += offset;
|
2003-02-13 01:04:40 +08:00
|
|
|
|
HDmemcpy(dst, data, length);
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*buf_size = nbytes;
|
|
|
|
|
ret_value = *buf_size;
|
|
|
|
|
}
|
|
|
|
|
|
2003-02-13 01:04:40 +08:00
|
|
|
|
if(data)
|
|
|
|
|
HDfree(data);
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
return ret_value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: filter_cb_cont
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Callback function to handle checksum failure. Let it continue.
|
|
|
|
|
*
|
|
|
|
|
* Return: continue
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Jan 14, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static H5Z_cb_return_t
|
2003-02-17 23:54:15 +08:00
|
|
|
|
filter_cb_cont(H5Z_filter_t filter, void UNUSED *buf, size_t UNUSED buf_size,
|
|
|
|
|
void UNUSED *op_data)
|
2003-02-05 02:50:56 +08:00
|
|
|
|
{
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(H5Z_FILTER_FLETCHER32==filter)
|
2003-02-05 02:50:56 +08:00
|
|
|
|
return H5Z_CB_CONT;
|
2003-02-13 01:04:40 +08:00
|
|
|
|
else
|
|
|
|
|
return H5Z_CB_FAIL;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: filter_cb_fail
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Callback function to handle checksum failure. Let it fail.
|
|
|
|
|
*
|
|
|
|
|
* Return: fail
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Jan 14, 2003
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static H5Z_cb_return_t
|
2003-02-17 23:54:15 +08:00
|
|
|
|
filter_cb_fail(H5Z_filter_t filter, void UNUSED *buf, size_t UNUSED buf_size,
|
|
|
|
|
void UNUSED *op_data)
|
2003-02-05 02:50:56 +08:00
|
|
|
|
{
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(H5Z_FILTER_FLETCHER32==filter)
|
2003-02-05 02:50:56 +08:00
|
|
|
|
return H5Z_CB_FAIL;
|
2003-02-13 01:04:40 +08:00
|
|
|
|
else
|
|
|
|
|
return H5Z_CB_CONT;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_filter_internal
|
1998-04-18 05:29:43 +08:00
|
|
|
|
*
|
1999-01-19 01:54:16 +08:00
|
|
|
|
* Purpose: Tests dataset compression. If compression is requested when
|
|
|
|
|
* it hasn't been compiled into the library (such as when
|
|
|
|
|
* updating an existing compressed dataset) then data is sent to
|
|
|
|
|
* the file uncompressed but no errors are returned.
|
1998-04-18 05:29:43 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Wednesday, April 15, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2002-11-20 21:19:37 +08:00
|
|
|
|
* Moved out of main test_compression routine
|
|
|
|
|
* Quincey Koziol, November 14, 2002
|
1998-04-18 05:29:43 +08:00
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2003-02-13 04:07:21 +08:00
|
|
|
|
test_filter_internal(hid_t fid, const char *name, hid_t dcpl, int if_fletcher32,
|
2003-02-05 02:50:56 +08:00
|
|
|
|
int corrupted, hsize_t *dset_size)
|
1998-04-18 05:29:43 +08:00
|
|
|
|
{
|
2002-11-20 21:19:37 +08:00
|
|
|
|
hid_t dataset; /* Dataset ID */
|
|
|
|
|
hid_t dxpl; /* Dataset xfer property list ID */
|
|
|
|
|
hid_t sid; /* Dataspace ID */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
const hsize_t size[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */
|
|
|
|
|
const hssize_t hs_offset[2] = {FILTER_HS_OFFSET1, FILTER_HS_OFFSET2}; /* Hyperslab offset */
|
|
|
|
|
const hsize_t hs_size[2] = {FILTER_HS_SIZE1, FILTER_HS_SIZE2}; /* Hyperslab size */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
void *tconv_buf = NULL; /* Temporary conversion buffer */
|
|
|
|
|
hsize_t i, j, n; /* Local index variables */
|
2003-02-05 02:50:56 +08:00
|
|
|
|
herr_t status; /* Error status */
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if ((sid = H5Screate_simple(2, size, NULL))<0) goto error;
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
1998-04-23 01:26:01 +08:00
|
|
|
|
/*
|
|
|
|
|
* Create a small conversion buffer to test strip mining. We
|
|
|
|
|
* might as well test all we can!
|
|
|
|
|
*/
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if ((dxpl = H5Pcreate (H5P_DATASET_XFER))<0) goto error;
|
2003-04-03 21:58:53 +08:00
|
|
|
|
tconv_buf = malloc (1000);
|
2003-06-10 03:16:59 +08:00
|
|
|
|
if (H5Pset_buffer (dxpl, (size_t)1000, tconv_buf, NULL)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if (if_fletcher32==DISABLE_FLETCHER32) {
|
2003-02-05 02:50:56 +08:00
|
|
|
|
if(H5Pset_edc_check(dxpl, H5Z_DISABLE_EDC)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if(H5Z_DISABLE_EDC != H5Pget_edc_check(dxpl))
|
2003-04-09 10:37:27 +08:00
|
|
|
|
goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
}
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (setup)");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* Check if all the filters are available */
|
|
|
|
|
if(H5Pall_filters_avail(dcpl)!=TRUE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Incorrect filter availability\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
1998-04-18 05:29:43 +08:00
|
|
|
|
/* Create the dataset */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if ((dataset = H5Dcreate(fid, name, H5T_NATIVE_INT, sid,
|
2003-05-08 05:52:24 +08:00
|
|
|
|
dcpl))<0) goto error;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 1: Read uninitialized data. It should be zero.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (uninitialized read)");
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Dread (dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
1998-11-21 11:36:51 +08:00
|
|
|
|
goto error;
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
|
|
|
|
if (0!=check[i][j]) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
printf(" Read a non-zero value.\n");
|
|
|
|
|
printf(" At index %lu,%lu\n",
|
1998-04-22 04:32:07 +08:00
|
|
|
|
(unsigned long)i, (unsigned long)j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* STEP 2: Test filters by setting up a chunked dataset and writing
|
1998-04-22 04:32:07 +08:00
|
|
|
|
* to it.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (write)");
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
for (i=n=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
2001-11-28 00:29:13 +08:00
|
|
|
|
points[i][j] = (int)(n++);
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if (H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, points)<0)
|
1998-11-21 11:36:51 +08:00
|
|
|
|
goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if((*dset_size=H5Dget_storage_size(dataset))==0) goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 3: Try to read the data we just wrote.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (read)");
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
|
|
|
|
/* Read the dataset back */
|
2003-02-05 02:50:56 +08:00
|
|
|
|
if(corrupted) {
|
|
|
|
|
/* Default behavior is failure when data is corrupted. */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to continue inspite data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_cont, NULL)<0) goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to fail when data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_fail, NULL)<0) goto error;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
} else {
|
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
|
|
|
|
if (points[i][j] != check[i][j]) {
|
|
|
|
|
H5_FAILED();
|
2003-05-08 05:52:24 +08:00
|
|
|
|
fprintf(stderr," Read different values than written.\n");
|
|
|
|
|
fprintf(stderr," At index %lu,%lu\n", (unsigned long)i, (unsigned long)j);
|
|
|
|
|
fprintf(stderr," At original: %d\n", (int)points[i][j]);
|
|
|
|
|
fprintf(stderr," At returned: %d\n", (int)check[i][j]);
|
2003-02-05 02:50:56 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-18 05:29:43 +08:00
|
|
|
|
}
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 4: Write new data over the top of the old data. The new data is
|
|
|
|
|
* random thus not very compressible, and will cause the chunks to move
|
|
|
|
|
* around as they grow. We only change values for the left half of the
|
|
|
|
|
* dataset although we rewrite the whole thing.
|
|
|
|
|
*----------------------------------------------------------------------
|
1998-04-18 05:29:43 +08:00
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (modify)");
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]/2; j++) {
|
2003-04-14 19:18:55 +08:00
|
|
|
|
points[i][j] = HDrandom ();
|
1998-04-18 05:29:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Dwrite (dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, points)<0)
|
1998-11-21 11:36:51 +08:00
|
|
|
|
goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if(corrupted) {
|
|
|
|
|
/* Default behavior is failure when data is corrupted. */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to continue inspite data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_cont, NULL)<0) goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to fail when data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_fail, NULL)<0) goto error;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
} else {
|
|
|
|
|
/* Read the dataset back and check it */
|
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
|
|
|
|
if (points[i][j] != check[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %lu,%lu\n",
|
|
|
|
|
(unsigned long)i, (unsigned long)j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-18 05:29:43 +08:00
|
|
|
|
}
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if((*dset_size=H5Dget_storage_size(dataset))==0) goto error;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
1998-04-22 04:32:07 +08:00
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 5: Close the dataset and then open it and read it again. This
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* insures that the filters message is picked up properly from the
|
1998-04-22 04:32:07 +08:00
|
|
|
|
* object header.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (re-open)");
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Dclose (dataset)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if ((dataset = H5Dopen (fid, name))<0) goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if(corrupted) {
|
|
|
|
|
/* Default behavior is failure when data is corrupted. */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to continue inspite data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_cont, NULL)<0) goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to fail when data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_fail, NULL)<0) goto error;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
} else {
|
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
|
|
|
|
if (points[i][j] != check[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %lu,%lu\n",
|
|
|
|
|
(unsigned long)i, (unsigned long)j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1999-01-19 01:54:16 +08:00
|
|
|
|
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 6: Test partial I/O by writing to and then reading from a
|
|
|
|
|
* hyperslab of the dataset. The hyperslab does not line up on chunk
|
|
|
|
|
* boundaries (we know that case already works from above tests).
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-05 02:50:56 +08:00
|
|
|
|
TESTING(" filters (partial I/O)");
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
|
|
|
|
for (i=0; i<hs_size[0]; i++) {
|
|
|
|
|
for (j=0; j<hs_size[1]; j++) {
|
2003-04-14 19:18:55 +08:00
|
|
|
|
points[hs_offset[0]+i][hs_offset[1]+j] = HDrandom();
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Sselect_hyperslab(sid, H5S_SELECT_SET, hs_offset, NULL, hs_size,
|
1998-11-21 11:36:51 +08:00
|
|
|
|
NULL)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Dwrite (dataset, H5T_NATIVE_INT, sid, sid, dxpl, points)<0)
|
1998-11-21 11:36:51 +08:00
|
|
|
|
goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
if(corrupted) {
|
|
|
|
|
/* Default behavior is failure when data is corrupted. */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to continue inspite data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_cont, NULL)<0) goto error;
|
|
|
|
|
if(H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Callback decides to fail when data is corrupted. */
|
|
|
|
|
if(H5Pset_filter_callback(dxpl, filter_cb_fail, NULL)<0) goto error;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
status=H5Dread(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, dxpl, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(status>=0) goto error;
|
|
|
|
|
} else {
|
|
|
|
|
if (H5Dread (dataset, H5T_NATIVE_INT, sid, sid, dxpl, check)<0)
|
|
|
|
|
goto error;
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<hs_size[0]; i++) {
|
|
|
|
|
for (j=0; j<hs_size[1]; j++) {
|
|
|
|
|
if (points[hs_offset[0]+i][hs_offset[1]+j] !=
|
2003-05-08 05:52:24 +08:00
|
|
|
|
check[hs_offset[0]+i][hs_offset[1]+j]) {
|
2003-02-05 02:50:56 +08:00
|
|
|
|
H5_FAILED();
|
2003-05-08 05:52:24 +08:00
|
|
|
|
fprintf(stderr," Read different values than written.\n");
|
|
|
|
|
fprintf(stderr," At index %lu,%lu\n",
|
2003-02-05 02:50:56 +08:00
|
|
|
|
(unsigned long)(hs_offset[0]+i),
|
|
|
|
|
(unsigned long)(hs_offset[1]+j));
|
2003-05-08 05:52:24 +08:00
|
|
|
|
fprintf(stderr," At original: %d\n",
|
2003-02-05 02:50:56 +08:00
|
|
|
|
(int)points[hs_offset[0]+i][hs_offset[1]+j]);
|
2003-05-08 05:52:24 +08:00
|
|
|
|
fprintf(stderr," At returned: %d\n",
|
2003-02-05 02:50:56 +08:00
|
|
|
|
(int)check[hs_offset[0]+i][hs_offset[1]+j]);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-18 05:29:43 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
/* Get the storage size of the dataset */
|
2003-04-02 00:00:25 +08:00
|
|
|
|
if((*dset_size=H5Dget_storage_size(dataset))==0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
/* Clean up objects used for this test */
|
1998-08-06 06:22:59 +08:00
|
|
|
|
if (H5Dclose (dataset)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Sclose (sid)<0) goto error;
|
|
|
|
|
if (H5Pclose (dxpl)<0) goto error;
|
|
|
|
|
free (tconv_buf);
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
|
|
error:
|
2003-05-08 05:52:24 +08:00
|
|
|
|
if(tconv_buf)
|
|
|
|
|
free (tconv_buf);
|
2002-11-20 21:19:37 +08:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* Function: test_filters
|
2002-11-20 21:19:37 +08:00
|
|
|
|
*
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* Purpose: Tests dataset filter.
|
2002-11-20 21:19:37 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Wednesday, April 15, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* Moved guts of filter testing out of main routine.
|
2003-02-13 04:07:21 +08:00
|
|
|
|
* Tests shuffle, deflate, fletcher32 checksum filters.
|
2002-11-20 21:19:37 +08:00
|
|
|
|
* Quincey Koziol, November 14, 2002
|
|
|
|
|
*
|
2003-02-13 04:07:21 +08:00
|
|
|
|
* Added Fletcher32 filter testing
|
2003-02-05 02:50:56 +08:00
|
|
|
|
* Raymond Lu, Jan 22, 2002
|
|
|
|
|
*
|
2002-11-20 21:19:37 +08:00
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2003-02-05 02:50:56 +08:00
|
|
|
|
test_filters(hid_t file)
|
2002-11-20 21:19:37 +08:00
|
|
|
|
{
|
|
|
|
|
hid_t dc; /* Dataset creation property list ID */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
const hsize_t chunk_size[2] = {FILTER_CHUNK_DIM1, FILTER_CHUNK_DIM2}; /* Chunk dimensions */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
hsize_t null_size; /* Size of dataset with null filter */
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_FLETCHER32
|
|
|
|
|
hsize_t fletcher32_size; /* Size of dataset with Fletcher32 checksum */
|
2003-02-05 02:50:56 +08:00
|
|
|
|
unsigned data_corrupt[3]; /* position and length of data to be corrupted */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_FLETCHER32 */
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_DEFLATE
|
|
|
|
|
hsize_t deflate_size; /* Size of dataset with deflate filter */
|
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE */
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
|
|
|
|
#ifdef H5_HAVE_FILTER_SZIP
|
|
|
|
|
hsize_t szip_size; /* Size of dataset with szip filter */
|
2003-07-01 03:47:40 +08:00
|
|
|
|
unsigned szip_options_mask=H5_SZIP_NN_OPTION_MASK;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
unsigned szip_pixels_per_block=4;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_SZIP */
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
|
|
|
|
hsize_t shuffle_size; /* Size of dataset with shuffle filter */
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SHUFFLE */
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
|
|
|
|
#if (defined H5_HAVE_FILTER_DEFLATE | defined H5_HAVE_FILTER_SZIP) && defined H5_HAVE_FILTER_SHUFFLE && defined H5_HAVE_FILTER_FLETCHER32
|
2003-02-05 02:50:56 +08:00
|
|
|
|
hsize_t combo_size; /* Size of dataset with shuffle+deflate filter */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE && H5_HAVE_FILTER_SHUFFLE && H5_HAVE_FILTER_FLETCHER32 */
|
1998-04-22 04:32:07 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
|
* STEP 0: Test null I/O filter by itself.
|
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
2002-11-20 21:19:37 +08:00
|
|
|
|
puts("Testing 'null' filter");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Zregister (H5Z_BOGUS)<0) goto error;
|
|
|
|
|
if (H5Pset_filter (dc, H5Z_FILTER_BOGUS, 0, 0, NULL)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_BOGUS_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&null_size)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/*----------------------------------------------------------
|
2003-02-13 04:07:21 +08:00
|
|
|
|
* STEP 1: Test Fletcher32 Checksum by itself.
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_FLETCHER32
|
|
|
|
|
puts("Testing Fletcher32 checksum(enabled for read)");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if (H5Pset_filter (dc,H5Z_FILTER_FLETCHER32,0,0,NULL)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/* Enable checksum during read */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_FLETCHER32_NAME,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&fletcher32_size)<0) goto error;
|
|
|
|
|
if(fletcher32_size<=null_size) {
|
2002-11-20 21:19:37 +08:00
|
|
|
|
H5_FAILED();
|
2003-02-05 02:50:56 +08:00
|
|
|
|
puts(" Size after checksumming is incorrect.");
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Disable checksum during read */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
puts("Testing Fletcher32 checksum(disabled for read)");
|
|
|
|
|
if(test_filter_internal(file,DSET_FLETCHER32_NAME_2,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&fletcher32_size)<0) goto error;
|
|
|
|
|
if(fletcher32_size<=null_size) {
|
2003-02-05 02:50:56 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
puts(" Size after checksumming is incorrect.");
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Try to corrupt data and see if checksum fails */
|
2003-02-13 04:07:21 +08:00
|
|
|
|
puts("Testing Fletcher32 checksum(when data is corrupted)");
|
2003-02-05 02:50:56 +08:00
|
|
|
|
data_corrupt[0] = 52;
|
|
|
|
|
data_corrupt[1] = 33;
|
|
|
|
|
data_corrupt[2] = 27;
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Zregister (H5Z_CORRUPT)<0) goto error;
|
|
|
|
|
if (H5Pset_filter (dc, H5Z_FILTER_CORRUPT, 0, 3, data_corrupt)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_FLETCHER32_NAME_3,dc,ENABLE_FLETCHER32,DATA_CORRUPTED,&fletcher32_size)<0) goto error;
|
|
|
|
|
if(fletcher32_size<=null_size) {
|
2003-02-05 02:50:56 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
puts(" Size after checksumming is incorrect.");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#else /* H5_HAVE_FILTER_FLETCHER32 */
|
|
|
|
|
TESTING("fletcher32 checksum");
|
2003-02-05 02:50:56 +08:00
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Fletcher32 checksum not enabled");
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_FLETCHER32 */
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
|
* STEP 2: Test deflation by itself.
|
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifdef H5_HAVE_FILTER_DEFLATE
|
|
|
|
|
puts("Testing deflate filter");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
|
|
|
|
if (H5Pset_deflate (dc, 6)<0) goto error;
|
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_DEFLATE_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&deflate_size)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
#else /* H5_HAVE_FILTER_DEFLATE */
|
|
|
|
|
TESTING("deflate filter");
|
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Deflate filter not enabled");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE */
|
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/*----------------------------------------------------------
|
2003-04-02 00:00:25 +08:00
|
|
|
|
* STEP 3: Test szip compression by itself.
|
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#ifdef H5_HAVE_FILTER_SZIP
|
|
|
|
|
puts("Testing szip filter");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SZIP_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&szip_size)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
#else /* H5_HAVE_FILTER_SZIP */
|
|
|
|
|
TESTING("szip filter");
|
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Szip filter not enabled");
|
2003-04-02 00:00:25 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_SZIP */
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
|
* STEP 4: Test shuffling by itself.
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
|
|
|
|
puts("Testing shuffle filter");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SHUFFLE_NAME,dc,DISABLE_FLETCHER32,DATA_NOT_CORRUPTED,&shuffle_size)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if(shuffle_size!=null_size) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
puts(" Shuffled size not the same as uncompressed size.");
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
#else /* H5_HAVE_FILTER_SHUFFLE */
|
|
|
|
|
TESTING("shuffle filter");
|
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Shuffle filter not enabled");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_SHUFFLE */
|
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
/*----------------------------------------------------------
|
2003-04-02 00:00:25 +08:00
|
|
|
|
* STEP 5: Test shuffle + deflate + checksum in any order.
|
2003-02-05 02:50:56 +08:00
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#if defined H5_HAVE_FILTER_DEFLATE && defined H5_HAVE_FILTER_SHUFFLE && defined H5_HAVE_FILTER_FLETCHER32
|
2003-02-05 02:50:56 +08:00
|
|
|
|
puts("Testing shuffle+deflate+checksum filters(checksum first)");
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if (H5Pset_fletcher32 (dc)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
if (H5Pset_deflate (dc, 6)<0) goto error;
|
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SHUF_DEF_FLET_NAME,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size)<0) goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
|
2003-02-05 02:50:56 +08:00
|
|
|
|
puts("Testing shuffle+deflate+checksum filters(checksum last)");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
if (H5Pset_deflate (dc, 6)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if (H5Pset_fletcher32 (dc)<0) goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
2003-02-13 04:07:21 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SHUF_DEF_FLET_NAME_2,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size)<0) goto error;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
2003-02-13 04:07:21 +08:00
|
|
|
|
#else /* H5_HAVE_FILTER_DEFLATE && H5_HAVE_FILTER_SHUFFLE && H5_HAVE_FILTER_FLETCHER32 */
|
|
|
|
|
TESTING("shuffle+deflate+fletcher32 filters");
|
2003-02-05 02:50:56 +08:00
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Deflate, shuffle, or fletcher32 checksum filter not enabled");
|
2003-04-02 00:00:25 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE && H5_HAVE_FILTER_SHUFFLE && H5_HAVE_FILTER_FLETCHER32 */
|
2003-04-03 21:58:53 +08:00
|
|
|
|
|
2003-04-02 00:00:25 +08:00
|
|
|
|
/*----------------------------------------------------------
|
|
|
|
|
* STEP 6: Test shuffle + szip + checksum in any order.
|
|
|
|
|
*----------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
#if defined H5_HAVE_FILTER_SZIP && defined H5_HAVE_FILTER_SHUFFLE && defined H5_HAVE_FILTER_FLETCHER32
|
|
|
|
|
|
|
|
|
|
puts("Testing shuffle+szip+checksum filters(checksum first)");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
if (H5Pset_fletcher32 (dc)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
|
|
|
|
if (H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
|
|
|
|
|
puts("Testing shuffle+szip+checksum filters(checksum last)");
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
|
|
|
|
if (H5Pset_szip(dc, szip_options_mask, szip_pixels_per_block)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
if (H5Pset_fletcher32 (dc)<0) goto error;
|
|
|
|
|
|
2003-04-03 21:58:53 +08:00
|
|
|
|
if(test_filter_internal(file,DSET_SHUF_SZIP_FLET_NAME_2,dc,ENABLE_FLETCHER32,DATA_NOT_CORRUPTED,&combo_size)<0) goto error;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up objects used for this test */
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
#else /* H5_HAVE_FILTER_SZIP && H5_HAVE_FILTER_SHUFFLE && H5_HAVE_FILTER_FLETCHER32 */
|
|
|
|
|
TESTING("shuffle+szip+fletcher32 filters");
|
|
|
|
|
SKIPPED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
puts(" Szip, shuffle, or fletcher32 checksum filter not enabled");
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SZIP && H5_HAVE_FILTER_SHUFFLE && H5_HAVE_FILTER_FLETCHER32 */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_missing_filter
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests library behavior when filter is missing
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Thursday, November 14, 2002
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_missing_filter(hid_t file)
|
|
|
|
|
{
|
|
|
|
|
hid_t fid; /* File ID */
|
|
|
|
|
hid_t dsid; /* Dataset ID */
|
|
|
|
|
hid_t sid; /* Dataspace ID */
|
|
|
|
|
hid_t dcpl; /* Dataspace creation property list ID */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
const hsize_t dims[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */
|
2002-11-20 21:19:37 +08:00
|
|
|
|
const hsize_t chunk_dims[2] = {2, 25}; /* Chunk dimensions */
|
|
|
|
|
hsize_t dset_size; /* Dataset size */
|
|
|
|
|
hsize_t i,j; /* Local index variables */
|
|
|
|
|
herr_t ret; /* Generic return value */
|
|
|
|
|
char testfile[512]=""; /* Buffer to hold name of existing test file */
|
|
|
|
|
char *srcdir = HDgetenv("srcdir"); /* The source directory, if we are using the --srcdir configure option */
|
|
|
|
|
|
|
|
|
|
TESTING("dataset access with missing filter");
|
|
|
|
|
|
|
|
|
|
/* Unregister the deflate filter */
|
|
|
|
|
#ifdef H5_HAVE_FILTER_DEFLATE
|
|
|
|
|
/* Verify deflate filter is registered currently */
|
|
|
|
|
if(H5Zfilter_avail(H5Z_FILTER_DEFLATE)!=TRUE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Deflate filter not available\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Unregister deflate filter (use internal function) */
|
|
|
|
|
if (H5Z_unregister(H5Z_FILTER_DEFLATE)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't unregister deflate filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE */
|
|
|
|
|
/* Verify deflate filter is not registered currently */
|
|
|
|
|
if(H5Zfilter_avail(H5Z_FILTER_DEFLATE)!=FALSE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Deflate filter available\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create dcpl with deflate filter */
|
|
|
|
|
if((dcpl = H5Pcreate(H5P_DATASET_CREATE))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Pset_chunk(dcpl, 2, chunk_dims)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set chunk sizes\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Pset_deflate(dcpl, 9)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set deflate filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* Check if all the filters are available */
|
|
|
|
|
ret=H5Pall_filters_avail(dcpl);
|
|
|
|
|
if(ret<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't check filter availability\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(ret!=FALSE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Filter shouldn't be available\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
/* Create the data space */
|
|
|
|
|
if ((sid = H5Screate_simple(2, dims, NULL))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
if ((dsid = H5Dcreate(file, DSET_MISSING_NAME, H5T_NATIVE_INT, sid, dcpl))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Write data */
|
|
|
|
|
if (H5Dwrite(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, points)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error writing dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Flush the file (to clear the cache) */
|
|
|
|
|
if (H5Fflush(file, H5F_SCOPE_GLOBAL)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error flushing file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Query the dataset's size on disk */
|
|
|
|
|
if((dset_size=H5Dget_storage_size(dsid))==0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error querying dataset size\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Verify that the size indicates data is uncompressed */
|
|
|
|
|
/* (i.e. the deflation filter we asked for was silently ignored) */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
if((H5Tget_size(H5T_NATIVE_INT)*DSET_DIM1*DSET_DIM2)!=dset_size) {
|
2002-11-20 21:19:37 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Incorrect dataset size: %lu\n",__LINE__,(unsigned long)dset_size);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
|
if (H5Dread(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, check)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error reading dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Compare data */
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<dims[0]; i++) {
|
|
|
|
|
for (j=0; j<dims[1]; j++) {
|
1998-04-22 04:32:07 +08:00
|
|
|
|
if (points[i][j] != check[i][j]) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2002-11-20 21:19:37 +08:00
|
|
|
|
printf(" Line %d: Read different values than written.\n",__LINE__);
|
|
|
|
|
printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j));
|
|
|
|
|
printf(" At original: %d\n",points[i][j]);
|
|
|
|
|
printf(" At returned: %d\n",check[i][j]);
|
1998-04-22 04:32:07 +08:00
|
|
|
|
goto error;
|
2002-11-20 21:19:37 +08:00
|
|
|
|
} /* end if */
|
|
|
|
|
} /* end for */
|
|
|
|
|
} /* end for */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
|
if(H5Sclose(sid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset creation property list */
|
|
|
|
|
if(H5Pclose(dcpl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Try reading existing dataset with deflate filter */
|
|
|
|
|
|
|
|
|
|
/* Compose the name of the file to open, using the srcdir, if appropriate */
|
|
|
|
|
if (srcdir && ((HDstrlen(srcdir) + HDstrlen(FILE_DEFLATE_NAME) + 1) < sizeof(testfile))){
|
|
|
|
|
HDstrcpy(testfile, srcdir);
|
|
|
|
|
HDstrcat(testfile, "/");
|
1998-04-22 04:32:07 +08:00
|
|
|
|
}
|
2002-11-20 21:19:37 +08:00
|
|
|
|
HDstrcat(testfile, FILE_DEFLATE_NAME);
|
|
|
|
|
|
|
|
|
|
/* Open existing file */
|
|
|
|
|
if((fid=H5Fopen(testfile, H5F_ACC_RDONLY, H5P_DEFAULT))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open existing deflated file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Open dataset */
|
|
|
|
|
if ((dsid = H5Dopen(fid, "Dataset1"))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Read data (should fail, since deflate filter is missing) */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
ret=H5Dread(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, check);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (ret>=0) {
|
|
|
|
|
H5_FAILED();
|
2003-04-09 10:37:27 +08:00
|
|
|
|
printf(" Line %d: Should not be able to read dataset data\n",__LINE__);
|
2002-11-20 21:19:37 +08:00
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close existing file */
|
|
|
|
|
if(H5Fclose(fid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Re-register the deflate filter */
|
|
|
|
|
/* Verify deflate filter is not registered currently */
|
|
|
|
|
if(H5Zfilter_avail(H5Z_FILTER_DEFLATE)!=FALSE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Deflate filter available\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
#ifdef H5_HAVE_FILTER_DEFLATE
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* Register deflate filter (use internal function to avoid range checks) */
|
|
|
|
|
if(H5Z_register(H5Z_DEFLATE)<0) {
|
2002-11-20 21:19:37 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't unregister deflate filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Verify deflate filter is registered currently */
|
|
|
|
|
if(H5Zfilter_avail(H5Z_FILTER_DEFLATE)!=TRUE) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Deflate filter not available\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE */
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-04-18 05:29:43 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2002-11-20 21:19:37 +08:00
|
|
|
|
error:
|
1998-04-18 05:29:43 +08:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
1998-06-10 22:43:15 +08:00
|
|
|
|
|
2002-11-14 00:38:43 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_onebyte_shuffle
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests the 8-bit array with shuffling algorithm.
|
2002-11-20 21:19:37 +08:00
|
|
|
|
* The shuffled array should be the same result as
|
|
|
|
|
* that before the shuffling.
|
2002-11-14 00:38:43 +08:00
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Kent Yang
|
|
|
|
|
* Wednesday, , 2002 Nov. 13th
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_onebyte_shuffle(hid_t file)
|
|
|
|
|
{
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
2002-11-14 00:38:43 +08:00
|
|
|
|
hid_t dataset, space,dc;
|
|
|
|
|
const hsize_t size[2] = {10, 20};
|
|
|
|
|
const hsize_t chunk_size[2] = {10, 20};
|
|
|
|
|
unsigned char orig_data[10][20];
|
|
|
|
|
unsigned char new_data[10][20];
|
|
|
|
|
hsize_t i, j;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#else /* H5_HAVE_FILTER_SHUFFLE */
|
|
|
|
|
const char *not_supported= " Data shuffling is not enabled.";
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SHUFFLE */
|
2002-11-14 00:38:43 +08:00
|
|
|
|
|
|
|
|
|
TESTING("8-bit shuffling (setup)");
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
2002-11-14 00:38:43 +08:00
|
|
|
|
/* Create the data space */
|
|
|
|
|
if ((space = H5Screate_simple(2, size, NULL))<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Use shuffling algorithm with 8-bit */
|
|
|
|
|
if((dc = H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
|
|
|
|
if (H5Pset_chunk (dc, 2, chunk_size)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
if (H5Pset_shuffle (dc)<0) goto error;
|
2002-11-14 00:38:43 +08:00
|
|
|
|
|
|
|
|
|
/* Create the dataset */
|
|
|
|
|
if ((dataset = H5Dcreate(file, DSET_ONEBYTE_SHUF_NAME, H5T_NATIVE_UCHAR,
|
|
|
|
|
space,dc))<0) goto error;
|
|
|
|
|
|
|
|
|
|
for (i= 0;i< 10; i++)
|
|
|
|
|
for (j = 0; j < 20; j++)
|
2003-04-14 19:18:55 +08:00
|
|
|
|
orig_data[i][j] = HDrandom();
|
2002-11-14 00:38:43 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
#else
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 1: Test shuffling by setting up a chunked dataset and writing
|
|
|
|
|
* to it.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
TESTING("8-bit shuffling (write)");
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
2002-11-14 00:38:43 +08:00
|
|
|
|
if (H5Dwrite(dataset, H5T_NATIVE_UCHAR, H5S_ALL, H5S_ALL, H5P_DEFAULT,
|
|
|
|
|
orig_data)<0)
|
|
|
|
|
goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
2002-11-14 00:38:43 +08:00
|
|
|
|
PASSED();
|
|
|
|
|
#else
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* STEP 2: Try to read the data we just wrote.
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
TESTING("8-bit shuffling (read)");
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SHUFFLE
|
2002-11-14 00:38:43 +08:00
|
|
|
|
/* Read the dataset back */
|
|
|
|
|
if (H5Dread(dataset, H5T_NATIVE_UCHAR, H5S_ALL, H5S_ALL, H5P_DEFAULT,
|
|
|
|
|
new_data)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<size[0]; i++) {
|
|
|
|
|
for (j=0; j<size[1]; j++) {
|
|
|
|
|
if (new_data[i][j] != orig_data[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Read different values than written.\n");
|
|
|
|
|
printf(" At index %lu,%lu\n",
|
|
|
|
|
(unsigned long)i, (unsigned long)j);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*----------------------------------------------------------------------
|
|
|
|
|
* Cleanup
|
|
|
|
|
*----------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
if (H5Pclose (dc)<0) goto error;
|
|
|
|
|
if (H5Dclose(dataset)<0) goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
#else
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-14 00:38:43 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
error:
|
2002-11-14 00:38:43 +08:00
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1998-06-10 22:43:15 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_multiopen
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests that a bug no longer exists. If a dataset is opened
|
|
|
|
|
* twice and one of the handles is used to extend the dataset,
|
|
|
|
|
* then the other handle should return the new size when
|
|
|
|
|
* queried.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, June 9, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_multiopen (hid_t file)
|
|
|
|
|
{
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
|
hid_t dcpl=-1, space=-1, dset1=-1, dset2=-1;
|
1998-06-10 22:43:15 +08:00
|
|
|
|
hsize_t cur_size[1] = {10};
|
|
|
|
|
static hsize_t max_size[1] = {H5S_UNLIMITED};
|
|
|
|
|
hsize_t tmp_size[1];
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
TESTING("multi-open with extending");
|
1998-06-10 22:43:15 +08:00
|
|
|
|
|
|
|
|
|
/* Create the dataset and open it twice */
|
2001-10-04 01:57:56 +08:00
|
|
|
|
if((dcpl=H5Pcreate(H5P_DATASET_CREATE))<0) goto error;
|
1998-06-10 22:43:15 +08:00
|
|
|
|
if (H5Pset_chunk (dcpl, 1, cur_size)<0) goto error;
|
|
|
|
|
if ((space=H5Screate_simple (1, cur_size, max_size))<0) goto error;
|
|
|
|
|
if ((dset1=H5Dcreate (file, "multiopen", H5T_NATIVE_INT, space,
|
|
|
|
|
dcpl))<0) goto error;
|
1998-09-11 23:39:28 +08:00
|
|
|
|
if ((dset2=H5Dopen (dset1, "."))<0) goto error;
|
1998-06-10 22:43:15 +08:00
|
|
|
|
if (H5Sclose (space)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Extend with the first handle */
|
|
|
|
|
cur_size[0] = 20;
|
|
|
|
|
if (H5Dextend (dset1, cur_size)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Get the size from the second handle */
|
|
|
|
|
if ((space = H5Dget_space (dset2))<0) goto error;
|
1998-09-01 11:35:23 +08:00
|
|
|
|
if (H5Sget_simple_extent_dims (space, tmp_size, NULL)<0) goto error;
|
1998-06-10 22:43:15 +08:00
|
|
|
|
if (cur_size[0]!=tmp_size[0]) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-21 11:36:51 +08:00
|
|
|
|
printf (" Got %d instead of %d!\n",
|
1998-06-10 22:43:15 +08:00
|
|
|
|
(int)tmp_size[0], (int)cur_size[0]);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (H5Dclose (dset1)<0) goto error;
|
|
|
|
|
if (H5Dclose (dset2)<0) goto error;
|
|
|
|
|
if (H5Sclose (space)<0) goto error;
|
|
|
|
|
if (H5Pclose (dcpl)<0) goto error;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
PASSED();
|
1998-06-10 22:43:15 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Dclose (dset1);
|
|
|
|
|
H5Dclose (dset2);
|
|
|
|
|
H5Sclose (space);
|
|
|
|
|
H5Pclose (dcpl);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
1999-06-08 04:20:32 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_types
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Make some datasets with various types so we can test h5ls.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Monday, June 7, 1999
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_types(hid_t file)
|
|
|
|
|
{
|
|
|
|
|
hid_t grp=-1, type=-1, space=-1, dset=-1;
|
|
|
|
|
size_t i;
|
|
|
|
|
hsize_t nelmts;
|
|
|
|
|
unsigned char buf[32];
|
|
|
|
|
|
|
|
|
|
TESTING("various datatypes");
|
|
|
|
|
if ((grp=H5Gcreate(file, "typetests", 0))<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* bitfield_1 */
|
|
|
|
|
nelmts = sizeof(buf);
|
|
|
|
|
if ((type=H5Tcopy(H5T_STD_B8LE))<0 ||
|
|
|
|
|
(space=H5Screate_simple(1, &nelmts, NULL))<0 ||
|
|
|
|
|
(dset=H5Dcreate(grp, "bitfield_1", type, space, H5P_DEFAULT))<0)
|
|
|
|
|
goto error;
|
1999-11-18 06:00:15 +08:00
|
|
|
|
for (i=0; i<sizeof buf; i++) buf[i] = (unsigned char)0xff ^ (unsigned char)i;
|
1999-06-08 04:20:32 +08:00
|
|
|
|
if (H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf)<0)
|
|
|
|
|
goto error;
|
2001-12-12 03:53:44 +08:00
|
|
|
|
|
1999-06-08 04:20:32 +08:00
|
|
|
|
if (H5Sclose(space)<0) goto error;
|
|
|
|
|
if (H5Tclose(type)<0) goto error;
|
|
|
|
|
if (H5Dclose(dset)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* bitfield_2 */
|
|
|
|
|
nelmts = sizeof(buf)/2;
|
|
|
|
|
if ((type=H5Tcopy(H5T_STD_B16LE))<0 ||
|
|
|
|
|
(space=H5Screate_simple(1, &nelmts, NULL))<0 ||
|
|
|
|
|
(dset=H5Dcreate(grp, "bitfield_2", type, space, H5P_DEFAULT))<0)
|
|
|
|
|
goto error;
|
1999-11-18 06:00:15 +08:00
|
|
|
|
for (i=0; i<sizeof buf; i++) buf[i] = (unsigned char)0xff ^ (unsigned char)i;
|
1999-06-08 04:20:32 +08:00
|
|
|
|
if (H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if (H5Sclose(space)<0) goto error;
|
|
|
|
|
if (H5Tclose(type)<0) goto error;
|
|
|
|
|
if (H5Dclose(dset)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* opaque_1 */
|
|
|
|
|
nelmts = sizeof(buf);
|
|
|
|
|
if ((type=H5Tcreate(H5T_OPAQUE, 1))<0 ||
|
|
|
|
|
H5Tset_tag(type, "testing 1-byte opaque type")<0 ||
|
|
|
|
|
(space=H5Screate_simple(1, &nelmts, NULL))<0 ||
|
|
|
|
|
(dset=H5Dcreate(grp, "opaque_1", type, space, H5P_DEFAULT))<0)
|
|
|
|
|
goto error;
|
1999-11-18 06:00:15 +08:00
|
|
|
|
for (i=0; i<sizeof buf; i++) buf[i] = (unsigned char)0xff ^ (unsigned char)i;
|
1999-06-08 04:20:32 +08:00
|
|
|
|
if (H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if (H5Sclose(space)<0) goto error;
|
|
|
|
|
if (H5Tclose(type)<0) goto error;
|
|
|
|
|
if (H5Dclose(dset)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* opaque_2 */
|
|
|
|
|
nelmts = sizeof(buf)/4;
|
|
|
|
|
if ((type=H5Tcreate(H5T_OPAQUE, 4))<0 ||
|
|
|
|
|
H5Tset_tag(type, "testing 4-byte opaque type")<0 ||
|
|
|
|
|
(space=H5Screate_simple(1, &nelmts, NULL))<0 ||
|
|
|
|
|
(dset=H5Dcreate(grp, "opaque_2", type, space, H5P_DEFAULT))<0)
|
|
|
|
|
goto error;
|
1999-11-18 06:00:15 +08:00
|
|
|
|
for (i=0; i<sizeof buf; i++) buf[i] = (unsigned char)0xff ^ (unsigned char)i;
|
1999-06-08 04:20:32 +08:00
|
|
|
|
if (H5Dwrite(dset, type, H5S_ALL, H5S_ALL, H5P_DEFAULT, buf)<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if (H5Sclose(space)<0) goto error;
|
|
|
|
|
if (H5Tclose(type)<0) goto error;
|
|
|
|
|
if (H5Dclose(dset)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Cleanup */
|
|
|
|
|
if (H5Gclose(grp)<0) goto error;
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Gclose(grp);
|
|
|
|
|
H5Tclose(type);
|
|
|
|
|
H5Sclose(space);
|
|
|
|
|
H5Dclose(dset);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* This message derives from H5Z */
|
|
|
|
|
const H5Z_class_t H5Z_CAN_APPLY[1] = {{
|
|
|
|
|
H5Z_FILTER_BOGUS, /* Filter id number */
|
|
|
|
|
"bogus", /* Filter name for debugging */
|
|
|
|
|
can_apply_bogus, /* The "can apply" callback */
|
|
|
|
|
NULL, /* The "set local" callback */
|
|
|
|
|
filter_bogus, /* The actual filter function */
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_can_apply
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests library behavior when filter indicates it can't
|
|
|
|
|
* apply to certain combinations of creation parameters
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Friday, April 5, 2003
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
|
|
|
|
test_can_apply(hid_t file)
|
|
|
|
|
{
|
|
|
|
|
hid_t dsid; /* Dataset ID */
|
|
|
|
|
hid_t sid; /* Dataspace ID */
|
|
|
|
|
hid_t dcpl; /* Dataspace creation property list ID */
|
|
|
|
|
const hsize_t dims[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */
|
|
|
|
|
const hsize_t chunk_dims[2] = {2, 25}; /* Chunk dimensions */
|
|
|
|
|
hsize_t dset_size; /* Dataset size */
|
|
|
|
|
hsize_t i,j; /* Local index variables */
|
|
|
|
|
|
|
|
|
|
TESTING("dataset filter 'can apply' callback");
|
|
|
|
|
|
|
|
|
|
/* Create dcpl with special filter */
|
|
|
|
|
if((dcpl = H5Pcreate(H5P_DATASET_CREATE))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Pset_chunk(dcpl, 2, chunk_dims)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set chunk sizes\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Zregister (H5Z_CAN_APPLY)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't register 'can apply' filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if(H5Pset_filter (dcpl, H5Z_FILTER_BOGUS, 0, 0, NULL)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set bogus filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
if ((sid = H5Screate_simple(2, dims, NULL))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
/* (Should fail because the 'can apply' filter should indicate inappropriate combination) */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
dsid = H5Dcreate(file, DSET_CAN_APPLY_NAME, H5T_NATIVE_DOUBLE, sid, dcpl);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (dsid >=0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Shouldn't have created dataset!\n",__LINE__);
|
|
|
|
|
H5Dclose(dsid);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
if ((dsid = H5Dcreate(file, DSET_CAN_APPLY_NAME, H5T_NATIVE_INT, sid, dcpl))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Write data */
|
|
|
|
|
if (H5Dwrite(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, points)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error writing dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Flush the file (to clear the cache) */
|
|
|
|
|
if (H5Fflush(file, H5F_SCOPE_GLOBAL)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error flushing file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Query the dataset's size on disk */
|
|
|
|
|
if((dset_size=H5Dget_storage_size(dsid))==0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error querying dataset size\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Verify that the size indicates data is uncompressed */
|
|
|
|
|
if((H5Tget_size(H5T_NATIVE_INT)*dims[0]*dims[1])!=dset_size) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Incorrect dataset size: %lu\n",__LINE__,(unsigned long)dset_size);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
|
if (H5Dread(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, check)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error reading dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Compare data */
|
|
|
|
|
/* Check that the values read are the same as the values written */
|
|
|
|
|
for (i=0; i<dims[0]; i++) {
|
|
|
|
|
for (j=0; j<dims[1]; j++) {
|
|
|
|
|
if (points[i][j] != check[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Read different values than written.\n",__LINE__);
|
|
|
|
|
printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j));
|
|
|
|
|
printf(" At original: %d\n",points[i][j]);
|
|
|
|
|
printf(" At returned: %d\n",check[i][j]);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
} /* end for */
|
|
|
|
|
} /* end for */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
|
if(H5Sclose(sid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset creation property list */
|
|
|
|
|
if(H5Pclose(dcpl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
} /* end test_can_apply() */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_can_apply_szip
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests library behavior when szip filter indicates it can't
|
|
|
|
|
* apply to certain combinations of creation parameters
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Monday, April 7, 2003
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2003-05-08 05:52:24 +08:00
|
|
|
|
test_can_apply_szip(hid_t
|
|
|
|
|
#ifndef H5_HAVE_FILTER_SZIP
|
|
|
|
|
UNUSED
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SSZIP */
|
|
|
|
|
file)
|
2003-04-09 10:37:27 +08:00
|
|
|
|
{
|
|
|
|
|
#ifdef H5_HAVE_FILTER_SZIP
|
|
|
|
|
hid_t dsid; /* Dataset ID */
|
|
|
|
|
hid_t sid; /* Dataspace ID */
|
|
|
|
|
hid_t dcpl; /* Dataspace creation property list ID */
|
2003-07-01 03:47:40 +08:00
|
|
|
|
unsigned szip_options_mask=H5_SZIP_NN_OPTION_MASK;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
unsigned szip_pixels_per_block;
|
2003-05-20 03:19:18 +08:00
|
|
|
|
const hsize_t dims[2] = {500, 4096}; /* Dataspace dimensions */
|
|
|
|
|
const hsize_t chunk_dims[2] = {250, 2048}; /* Chunk dimensions */
|
2003-04-09 10:37:27 +08:00
|
|
|
|
herr_t ret; /* Status value */
|
|
|
|
|
#else /* H5_HAVE_FILTER_SZIP */
|
|
|
|
|
const char *not_supported= " Szip filter is not enabled.";
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SSZIP */
|
|
|
|
|
|
|
|
|
|
TESTING("dataset szip filter 'can apply' callback");
|
|
|
|
|
|
|
|
|
|
#ifdef H5_HAVE_FILTER_SZIP
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
if ((sid = H5Screate_simple(2, dims, NULL))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create dcpl with special filter */
|
|
|
|
|
if((dcpl = H5Pcreate(H5P_DATASET_CREATE))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Pset_chunk(dcpl, 2, chunk_dims)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set chunk sizes\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Set (invalid at property set time) szip parameters */
|
|
|
|
|
szip_pixels_per_block=3;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
ret=H5Pset_szip (dcpl, szip_options_mask, szip_pixels_per_block);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(ret>=0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Shouldn't be able to set szip filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set (invalid at property set time) szip parameters */
|
|
|
|
|
szip_pixels_per_block=512;
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
ret=H5Pset_szip (dcpl, szip_options_mask, szip_pixels_per_block);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if(ret>=0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Shouldn't be able to set szip filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set (invalid at dataset creation time) szip parameters */
|
|
|
|
|
szip_pixels_per_block=2;
|
|
|
|
|
if(H5Pset_szip (dcpl, szip_options_mask, szip_pixels_per_block)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set szip filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
/* (Should fail because the 'can apply' filter should indicate inappropriate combination) */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
dsid = H5Dcreate(file, DSET_CAN_APPLY_SZIP_NAME, H5T_NATIVE_INT, sid, dcpl);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
if (dsid >=0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Shouldn't have created dataset!\n",__LINE__);
|
|
|
|
|
H5Dclose(dsid);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
|
if(H5Sclose(sid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset creation property list */
|
|
|
|
|
if(H5Pclose(dcpl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
#else /* H5_HAVE_FILTER_SZIP */
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif /* H5_HAVE_FILTER_SZIP */
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
2003-05-08 05:52:24 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SZIP
|
2003-04-09 10:37:27 +08:00
|
|
|
|
error:
|
|
|
|
|
return -1;
|
2003-06-26 10:10:33 +08:00
|
|
|
|
#endif /* H5_HAVE_FILTER_SZIP */
|
2003-04-09 10:37:27 +08:00
|
|
|
|
} /* end test_can_apply_szip() */
|
|
|
|
|
|
|
|
|
|
/* This message derives from H5Z */
|
|
|
|
|
const H5Z_class_t H5Z_SET_LOCAL[1] = {{
|
|
|
|
|
H5Z_FILTER_BOGUS2, /* Filter id number */
|
|
|
|
|
"bogus2", /* Filter name for debugging */
|
|
|
|
|
NULL, /* The "can apply" callback */
|
|
|
|
|
set_local_bogus2, /* The "set local" callback */
|
|
|
|
|
filter_bogus2, /* The actual filter function */
|
|
|
|
|
}};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_set_local
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests library behavior for "set local" filter callback
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Quincey Koziol
|
|
|
|
|
* Monday, April 7, 2003
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static herr_t
|
2003-05-06 22:21:42 +08:00
|
|
|
|
test_set_local(hid_t fapl)
|
2003-04-09 10:37:27 +08:00
|
|
|
|
{
|
2003-05-06 22:21:42 +08:00
|
|
|
|
char filename[32];
|
2003-04-09 10:37:27 +08:00
|
|
|
|
hid_t file; /* File ID */
|
|
|
|
|
hid_t dsid; /* Dataset ID */
|
|
|
|
|
hid_t sid; /* Dataspace ID */
|
|
|
|
|
hid_t dcpl; /* Dataspace creation property list ID */
|
|
|
|
|
const hsize_t dims[2] = {DSET_DIM1, DSET_DIM2}; /* Dataspace dimensions */
|
|
|
|
|
const hsize_t chunk_dims[2] = {2, 25}; /* Chunk dimensions */
|
|
|
|
|
hsize_t dset_size; /* Dataset size */
|
|
|
|
|
unsigned cd_values[2]={BOGUS2_PARAM_1, BOGUS2_PARAM_2}; /* Parameters for Bogus2 filter */
|
2003-04-16 06:38:18 +08:00
|
|
|
|
hsize_t i,j; /* Local index variables */
|
|
|
|
|
double n; /* Local index variables */
|
2003-04-09 10:37:27 +08:00
|
|
|
|
|
|
|
|
|
TESTING("dataset filter 'set local' callback");
|
|
|
|
|
|
2003-05-06 22:21:42 +08:00
|
|
|
|
h5_fixname(FILENAME[5], fapl, filename, sizeof filename);
|
|
|
|
|
|
2003-04-09 10:37:27 +08:00
|
|
|
|
/* Initialize the integer & floating-point dataset */
|
2003-05-08 05:52:24 +08:00
|
|
|
|
for (i = n = 0; i < DSET_DIM1; i++)
|
|
|
|
|
for (j = 0; j < DSET_DIM2; j++) {
|
2003-04-09 10:37:27 +08:00
|
|
|
|
points[i][j] = n++;
|
2003-04-16 06:38:18 +08:00
|
|
|
|
points_dbl[i][j] = (double)1.5*n++;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Open file */
|
2003-05-06 22:21:42 +08:00
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) {
|
2003-04-09 10:37:27 +08:00
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open file\n",__LINE__);
|
2003-05-06 22:21:42 +08:00
|
|
|
|
goto error;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create dcpl with special filter */
|
|
|
|
|
if((dcpl = H5Pcreate(H5P_DATASET_CREATE))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Pset_chunk(dcpl, 2, chunk_dims)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set chunk sizes\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
if(H5Zregister (H5Z_SET_LOCAL)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't register 'set local' filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if(H5Pset_filter (dcpl, H5Z_FILTER_BOGUS2, 0, BOGUS2_PERM_NPARMS, cd_values)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't set bogus2 filter\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Create the data space */
|
|
|
|
|
if ((sid = H5Screate_simple(2, dims, NULL))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
if ((dsid = H5Dcreate(file, DSET_SET_LOCAL_NAME, H5T_NATIVE_INT, sid, dcpl))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Write data */
|
|
|
|
|
if (H5Dwrite(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, points)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error writing dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Create new dataset */
|
|
|
|
|
/* (Shouldn't get modified by output filter) */
|
|
|
|
|
if ((dsid = H5Dcreate(file, DSET_SET_LOCAL_NAME_2, H5T_NATIVE_DOUBLE, sid, dcpl))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't create dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Write data */
|
|
|
|
|
if (H5Dwrite(dsid, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, points_dbl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error writing dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataspace */
|
|
|
|
|
if(H5Sclose(sid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataspace\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close dataset creation property list */
|
|
|
|
|
if(H5Pclose(dcpl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dcpl\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close file (flushes & empties cache) */
|
|
|
|
|
if (H5Fclose(file)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Open file */
|
|
|
|
|
if ((file=H5Fopen(filename, H5F_ACC_RDWR, fapl))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Re-open dataset */
|
|
|
|
|
if ((dsid = H5Dopen(file, DSET_SET_LOCAL_NAME))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Query the dataset's size on disk */
|
|
|
|
|
if((dset_size=H5Dget_storage_size(dsid))==0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error querying dataset size\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Verify that the size indicates data is uncompressed */
|
|
|
|
|
if((H5Tget_size(H5T_NATIVE_INT)*dims[0]*dims[1])!=dset_size) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Incorrect dataset size: %lu\n",__LINE__,(unsigned long)dset_size);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
|
if (H5Dread(dsid, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, check)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error reading dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Compare data */
|
|
|
|
|
/* Check that the values read are the modified version of what was written */
|
|
|
|
|
for (i=0; i<dims[0]; i++) {
|
|
|
|
|
for (j=0; j<dims[1]; j++) {
|
|
|
|
|
if ((points[i][j]+(int)sizeof(int)) != check[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Read different values than written.\n",__LINE__);
|
|
|
|
|
printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j));
|
|
|
|
|
printf(" At original: %d\n",points[i][j]);
|
|
|
|
|
printf(" At returned: %d\n",check[i][j]);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
} /* end for */
|
|
|
|
|
} /* end for */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Re-open second dataset */
|
|
|
|
|
if ((dsid = H5Dopen(file, DSET_SET_LOCAL_NAME_2))<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't open dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Query the dataset's size on disk */
|
|
|
|
|
if((dset_size=H5Dget_storage_size(dsid))==0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error querying dataset size\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Verify that the size indicates data is uncompressed */
|
|
|
|
|
if((H5Tget_size(H5T_NATIVE_DOUBLE)*dims[0]*dims[1])!=dset_size) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Incorrect dataset size: %lu\n",__LINE__,(unsigned long)dset_size);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Read data */
|
|
|
|
|
if (H5Dread(dsid, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, check_dbl)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Error reading dataset data\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Compare data */
|
|
|
|
|
/* Check that the values read are the modified version of what was written */
|
|
|
|
|
for (i=0; i<dims[0]; i++) {
|
|
|
|
|
for (j=0; j<dims[1]; j++) {
|
|
|
|
|
if (points_dbl[i][j] != check_dbl[i][j]) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Read different values than written.\n",__LINE__);
|
|
|
|
|
printf(" At index %lu,%lu\n", (unsigned long)(i), (unsigned long)(j));
|
|
|
|
|
printf(" At original: %f\n",points_dbl[i][j]);
|
|
|
|
|
printf(" At returned: %f\n",check_dbl[i][j]);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
} /* end for */
|
|
|
|
|
} /* end for */
|
|
|
|
|
|
|
|
|
|
/* Close dataset */
|
|
|
|
|
if(H5Dclose(dsid)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close dataset\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
/* Close file */
|
|
|
|
|
if (H5Fclose(file)<0) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf(" Line %d: Can't close file\n",__LINE__);
|
|
|
|
|
goto error;
|
|
|
|
|
} /* end if */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
return -1;
|
|
|
|
|
} /* end test_set_local() */
|
|
|
|
|
|
1998-05-29 07:02:29 +08:00
|
|
|
|
|
1997-12-11 06:41:56 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Function: main
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Purpose: Tests the dataset interface (H5D)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Return: Success: exit(0)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Failure: exit(1)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
1998-03-06 05:27:38 +08:00
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, December 9, 1997
|
1997-12-11 06:41:56 +08:00
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
1998-01-17 06:23:43 +08:00
|
|
|
|
main(void)
|
1997-12-11 06:41:56 +08:00
|
|
|
|
{
|
1998-08-19 01:14:43 +08:00
|
|
|
|
hid_t file, grp, fapl;
|
1999-02-25 23:40:27 +08:00
|
|
|
|
int nerrors=0;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
char filename[1024];
|
1998-01-17 06:23:43 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
h5_reset();
|
|
|
|
|
fapl = h5_fileaccess();
|
|
|
|
|
|
1999-01-19 01:54:16 +08:00
|
|
|
|
#if 0
|
1999-02-25 23:40:27 +08:00
|
|
|
|
{
|
|
|
|
|
/* Turn off raw data cache */
|
|
|
|
|
int mdc_nelmts;
|
|
|
|
|
if (H5Pget_cache(fapl, &mdc_nelmts, NULL, NULL, NULL)<0) goto error;
|
|
|
|
|
if (H5Pset_cache(fapl, mdc_nelmts, 0, 0, 0.0)<0) goto error;
|
|
|
|
|
}
|
1998-08-19 01:14:43 +08:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-04-14 19:18:55 +08:00
|
|
|
|
/* Set the random # seed */
|
|
|
|
|
HDsrandom((unsigned long)time(NULL));
|
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
1999-08-18 03:12:59 +08:00
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0) {
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
1998-04-18 05:29:43 +08:00
|
|
|
|
/* Cause the library to emit initial messages */
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if ((grp = H5Gcreate (file, "emit diagnostics", 0))<0) goto error;
|
|
|
|
|
if (H5Gset_comment(grp, ".", "Causes diagnostic messages to be emitted")<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if (H5Gclose (grp)<0) goto error;
|
1998-06-10 22:43:15 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
nerrors += test_create(file)<0 ?1:0;
|
2003-05-06 22:21:42 +08:00
|
|
|
|
nerrors += test_simple_io(fapl)<0 ?1:0;
|
2002-10-15 03:46:13 +08:00
|
|
|
|
nerrors += test_compact_io(fapl)<0 ?1:0;
|
2003-04-23 00:23:42 +08:00
|
|
|
|
nerrors += test_max_compact(fapl)<0 ?1:0;
|
2003-05-14 00:49:38 +08:00
|
|
|
|
nerrors += test_conv_buffer(file)<0 ?1:0;
|
2003-04-02 00:00:25 +08:00
|
|
|
|
nerrors += test_tconv(file)<0 ?1:0;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
nerrors += test_filters(file)<0 ?1:0;
|
2002-11-14 00:38:43 +08:00
|
|
|
|
nerrors += test_onebyte_shuffle(file)<0 ?1:0;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
nerrors += test_multiopen (file)<0 ?1:0;
|
1999-06-08 04:20:32 +08:00
|
|
|
|
nerrors += test_types(file)<0 ?1:0;
|
2002-12-03 03:47:57 +08:00
|
|
|
|
nerrors += test_userblock_offset(fapl)<0 ?1:0;
|
2003-04-30 03:49:49 +08:00
|
|
|
|
nerrors += test_missing_filter(file)<0 ?1:0;
|
2003-04-09 10:37:27 +08:00
|
|
|
|
nerrors += test_can_apply(file)<0 ?1:0;
|
2003-05-06 22:21:42 +08:00
|
|
|
|
nerrors += test_set_local(fapl)<0 ?1:0;
|
2003-04-30 03:49:49 +08:00
|
|
|
|
nerrors += test_can_apply_szip(file)<0 ?1:0;
|
2003-02-05 02:50:56 +08:00
|
|
|
|
|
1998-11-21 11:36:51 +08:00
|
|
|
|
if (H5Fclose(file)<0) goto error;
|
|
|
|
|
if (nerrors) goto error;
|
1998-01-17 06:23:43 +08:00
|
|
|
|
printf("All dataset tests passed.\n");
|
2003-04-02 00:00:25 +08:00
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
1998-02-10 03:37:40 +08:00
|
|
|
|
return 0;
|
1998-11-21 11:36:51 +08:00
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
nerrors = MAX(1, nerrors);
|
|
|
|
|
printf("***** %d DATASET TEST%s FAILED! *****\n",
|
|
|
|
|
nerrors, 1 == nerrors ? "" : "S");
|
|
|
|
|
return 1;
|
1997-12-11 06:41:56 +08:00
|
|
|
|
}
|