2003-04-01 01:59:04 +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. *
|
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
/*
|
|
|
|
|
* Programmer: Robb Matzke <matzke@llnl.gov>
|
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test local heaps used by symbol tables (groups).
|
|
|
|
|
*/
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "h5test.h"
|
|
|
|
|
#include "H5HLprivate.h"
|
|
|
|
|
#include "H5Iprivate.h"
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"lheap",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define NOBJS 40
|
|
|
|
|
|
2004-07-17 04:48:40 +08:00
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: main
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Create a file, create a local heap, write data into the local
|
|
|
|
|
* heap, close the file, open the file, read data out of the
|
|
|
|
|
* local heap, close the file.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: zero
|
|
|
|
|
*
|
|
|
|
|
* Failure: non-zero
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(void)
|
|
|
|
|
{
|
2001-10-25 02:02:27 +08:00
|
|
|
|
hid_t fapl=H5P_DEFAULT; /*file access properties */
|
1998-11-25 22:58:22 +08:00
|
|
|
|
hid_t file=-1; /*hdf5 file */
|
|
|
|
|
H5F_t *f=NULL; /*hdf5 file pointer */
|
|
|
|
|
char filename[1024]; /*file name */
|
|
|
|
|
haddr_t heap_addr; /*local heap address */
|
|
|
|
|
size_t obj[NOBJS]; /*offsets within the heap */
|
|
|
|
|
int i, j; /*miscellaneous counters */
|
|
|
|
|
char buf[1024]; /*the value to store */
|
|
|
|
|
const char *s; /*value to read */
|
|
|
|
|
|
|
|
|
|
/* Reset library */
|
|
|
|
|
h5_reset();
|
|
|
|
|
fapl = h5_fileaccess();
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test writing to the heap...
|
|
|
|
|
*/
|
|
|
|
|
TESTING("local heap write");
|
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
if (NULL==(f=H5I_object(file))) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if (H5HL_create(f, H5P_DATASET_XFER_DEFAULT, 0, &heap_addr/*out*/)<0) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < NOBJS; i++) {
|
|
|
|
|
sprintf(buf, "%03d-", i);
|
|
|
|
|
for (j=4; j<i; j++) buf[j] = '0' + j%10;
|
|
|
|
|
if (j>4) buf[j] = '\0';
|
|
|
|
|
|
2003-02-11 01:26:09 +08:00
|
|
|
|
if ((size_t)(-1)==(obj[i]=H5HL_insert(f, H5P_DATASET_XFER_DEFAULT, heap_addr, strlen(buf)+1,
|
1998-11-25 22:58:22 +08:00
|
|
|
|
buf))) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (H5Fclose(file)<0) goto error;
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Test reading from the heap...
|
|
|
|
|
*/
|
2001-10-25 02:02:27 +08:00
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
TESTING("local heap read");
|
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
|
|
|
|
if ((file=H5Fopen(filename, H5F_ACC_RDONLY, fapl))<0) goto error;
|
|
|
|
|
if (NULL==(f=H5I_object(file))) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
for (i=0; i<NOBJS; i++) {
|
2003-10-01 00:20:46 +08:00
|
|
|
|
const H5HL_t *heap = NULL;
|
2003-09-19 03:27:45 +08:00
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
sprintf(buf, "%03d-", i);
|
|
|
|
|
for (j=4; j<i; j++) buf[j] = '0' + j%10;
|
|
|
|
|
if (j>4) buf[j] = '\0';
|
2003-09-19 03:27:45 +08:00
|
|
|
|
|
|
|
|
|
if (NULL == (heap = H5HL_protect(f, H5P_DATASET_XFER_DEFAULT, heap_addr))) {
|
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
2003-09-19 03:27:45 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL == (s = H5HL_offset_into(f, heap, obj[i]))) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
2003-09-19 03:27:45 +08:00
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
if (strcmp(s, buf)) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-25 22:58:22 +08:00
|
|
|
|
printf(" i=%d, heap offset=%lu\n", i, (unsigned long)(obj[i]));
|
|
|
|
|
printf(" got: \"%s\"\n", s);
|
|
|
|
|
printf(" ans: \"%s\"\n", buf);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
2003-09-19 03:27:45 +08:00
|
|
|
|
|
|
|
|
|
if (H5HL_unprotect(f, H5P_DATASET_XFER_DEFAULT, heap, heap_addr) < 0) {
|
|
|
|
|
H5_FAILED();
|
2004-09-02 01:43:30 +08:00
|
|
|
|
H5Eprint_stack(H5E_DEFAULT, stdout);
|
2003-09-19 03:27:45 +08:00
|
|
|
|
goto error;
|
|
|
|
|
}
|
1998-11-25 22:58:22 +08:00
|
|
|
|
}
|
|
|
|
|
if (H5Fclose(file)<0) goto error;
|
|
|
|
|
PASSED();
|
|
|
|
|
|
|
|
|
|
puts("All local heap tests passed.");
|
2000-09-10 08:08:27 +08:00
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
puts("*** TESTS FAILED ***");
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|