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
|
|
|
|
|
*/
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "h5test.h"
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This file needs to access private datatypes from the H5G package.
|
|
|
|
|
*/
|
|
|
|
|
#define H5G_PACKAGE
|
2001-04-04 02:09:16 +08:00
|
|
|
|
#include "H5Gpkg.h"
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"stab1",
|
|
|
|
|
"stab2",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_misc
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test miscellaneous group stuff.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: number of errors
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2002-03-29 03:27:45 +08:00
|
|
|
|
* Robb Matzke, 2002-03-28
|
|
|
|
|
* File is opened by parent instead of here.
|
1998-11-25 22:58:22 +08:00
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2002-03-29 03:27:45 +08:00
|
|
|
|
test_misc(hid_t file)
|
1998-11-25 22:58:22 +08:00
|
|
|
|
{
|
|
|
|
|
hid_t g1=-1, g2=-1, g3=-1;
|
2002-03-29 03:27:45 +08:00
|
|
|
|
char comment[64];
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
/* Test current working groups */
|
|
|
|
|
TESTING("miscellaneous group tests");
|
|
|
|
|
|
2002-03-29 03:27:45 +08:00
|
|
|
|
/* Create initial groups for testing, then close */
|
1998-11-25 22:58:22 +08:00
|
|
|
|
if ((g1=H5Gcreate(file, "test_1a", 0))<0) goto error;
|
|
|
|
|
if ((g2=H5Gcreate(g1, "sub_1", 0))<0) goto error;
|
|
|
|
|
if ((g3=H5Gcreate(file, "test_1b", 0))<0) goto error;
|
|
|
|
|
if (H5Gset_comment(g3, ".", "hello world")<0) goto error;
|
|
|
|
|
if (H5Gclose(g1)<0) goto error;
|
|
|
|
|
if (H5Gclose(g2)<0) goto error;
|
|
|
|
|
if (H5Gclose(g3)<0) goto error;
|
|
|
|
|
|
|
|
|
|
/* Open all groups with absolute names to check for exsistence */
|
|
|
|
|
if ((g1=H5Gopen(file, "/test_1a"))<0) goto error;
|
|
|
|
|
if ((g2=H5Gopen(file, "/test_1a/sub_1"))<0) goto error;
|
|
|
|
|
if ((g3=H5Gopen(file, "/test_1b"))<0) goto error;
|
|
|
|
|
if (H5Gget_comment(g3, "././.", sizeof comment, comment)<0) goto error;
|
|
|
|
|
if (strcmp(comment, "hello world")) {
|
2001-01-26 01:03:29 +08:00
|
|
|
|
H5_FAILED();
|
1998-11-25 22:58:22 +08:00
|
|
|
|
puts(" Read the wrong comment string from the group.");
|
|
|
|
|
printf(" got: \"%s\"\n ans: \"hello world\"\n", comment);
|
|
|
|
|
goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Gclose(g1)<0) goto error;
|
|
|
|
|
if (H5Gclose(g2)<0) goto error;
|
|
|
|
|
if (H5Gclose(g3)<0) goto error;
|
2002-03-29 03:27:45 +08:00
|
|
|
|
|
2004-07-20 08:47:37 +08:00
|
|
|
|
/* Check that creating groups with no-op names isn't allowed */
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
g1=H5Gcreate(file, "/", 0);
|
|
|
|
|
} H5E_END_TRY
|
|
|
|
|
if(g1 >= 0) goto error;
|
|
|
|
|
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
g1=H5Gcreate(file, "./././", 0);
|
|
|
|
|
} H5E_END_TRY
|
|
|
|
|
if(g1 >= 0) goto error;
|
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Gclose(g1);
|
|
|
|
|
H5Gclose(g2);
|
|
|
|
|
H5Gclose(g3);
|
2002-03-29 03:27:45 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Purpose: Creates a group with a very long name
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: number of errors
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke <matzke@llnl.gov> 2002-03-28
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
test_long(hid_t file)
|
|
|
|
|
{
|
|
|
|
|
hid_t g1=-1, g2=-1;
|
|
|
|
|
char *name1=NULL, *name2=NULL;
|
|
|
|
|
size_t namesize=40960, i;
|
|
|
|
|
|
|
|
|
|
TESTING("long names");
|
|
|
|
|
|
|
|
|
|
/* Group names */
|
|
|
|
|
name1 = malloc(namesize);
|
|
|
|
|
for (i=0; i<namesize; i++)
|
2002-05-21 02:43:31 +08:00
|
|
|
|
name1[i] = (char)('A' + i%26);
|
2002-03-29 03:27:45 +08:00
|
|
|
|
name1[namesize-1] = '\0';
|
|
|
|
|
name2 = malloc(2*namesize + 2);
|
|
|
|
|
sprintf(name2, "%s/%s", name1, name1);
|
|
|
|
|
|
|
|
|
|
/* Create groups */
|
|
|
|
|
if ((g1=H5Gcreate(file, name1, 0))<0) goto error;
|
|
|
|
|
if ((g2=H5Gcreate(g1, name1, 0))<0) goto error;
|
|
|
|
|
H5Gclose(g1);
|
|
|
|
|
H5Gclose(g2);
|
|
|
|
|
|
|
|
|
|
/* Open groups */
|
|
|
|
|
if ((g1=H5Gopen(file, name1))<0) goto error;
|
|
|
|
|
if ((g2=H5Gopen(file, name2))<0) goto error;
|
|
|
|
|
H5Gclose(g1);
|
|
|
|
|
H5Gclose(g2);
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Gclose(g1);
|
|
|
|
|
H5Gclose(g2);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: test_large
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Creates a really large directory.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
*
|
|
|
|
|
* Failure: number of errors
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* robb@maya.nuance.com
|
|
|
|
|
* Aug 29 1997
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
2002-03-29 03:27:45 +08:00
|
|
|
|
* Robb Matzke, 2002-03-28
|
|
|
|
|
* File is opened by parent instead of here.
|
1998-11-25 22:58:22 +08:00
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2002-03-29 03:27:45 +08:00
|
|
|
|
test_large(hid_t file)
|
1998-11-25 22:58:22 +08:00
|
|
|
|
{
|
2002-03-29 03:27:45 +08:00
|
|
|
|
hid_t cwg=-1, dir=-1;
|
1998-11-25 22:58:22 +08:00
|
|
|
|
int i;
|
|
|
|
|
char name[1024];
|
|
|
|
|
int nsyms = 5000;
|
|
|
|
|
|
|
|
|
|
TESTING("large directories");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Create a directory that has so many entries that the root
|
|
|
|
|
* of the B-tree ends up splitting.
|
|
|
|
|
*/
|
|
|
|
|
if ((cwg=H5Gcreate(file, "/big", (size_t)nsyms*16+2))<0) goto error;
|
|
|
|
|
for (i=0; i<nsyms; i++) {
|
|
|
|
|
sprintf(name, "%05d%05d", rand()%100000, i);
|
1999-08-11 04:21:32 +08:00
|
|
|
|
#if 0
|
|
|
|
|
fprintf(stderr, "%s\n", name);
|
|
|
|
|
#endif
|
1998-11-25 22:58:22 +08:00
|
|
|
|
if ((dir=H5Gcreate(cwg, name, 0))<0) goto error;
|
|
|
|
|
if (H5Gclose(dir)<0) goto error;
|
|
|
|
|
}
|
|
|
|
|
if (H5Gclose(cwg)<0) goto error;
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Gclose(dir);
|
|
|
|
|
H5Gclose(cwg);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: main
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Test groups
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: zero
|
|
|
|
|
*
|
|
|
|
|
* Failure: non-zero
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Robb Matzke
|
|
|
|
|
* Tuesday, November 24, 1998
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
main(void)
|
|
|
|
|
{
|
2002-03-29 03:27:45 +08:00
|
|
|
|
hid_t fapl, fcpl, file;
|
1998-11-25 22:58:22 +08:00
|
|
|
|
int nerrors=0;
|
2002-03-29 03:27:45 +08:00
|
|
|
|
char filename[1024];
|
1998-11-25 22:58:22 +08:00
|
|
|
|
|
|
|
|
|
/* Reset library */
|
|
|
|
|
h5_reset();
|
|
|
|
|
fapl = h5_fileaccess();
|
|
|
|
|
|
2002-03-29 03:27:45 +08:00
|
|
|
|
/*
|
|
|
|
|
* Use larger symbol table data structures to be more efficient, use
|
|
|
|
|
* defaults to bang harder on the library for testing.
|
|
|
|
|
*/
|
|
|
|
|
fcpl = H5Pcreate(H5P_FILE_CREATE);
|
|
|
|
|
#if 0
|
|
|
|
|
H5Pset_sym_k(fcpl, 16, 16);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Open the file */
|
|
|
|
|
h5_fixname(FILENAME[0], fapl, filename, sizeof filename);
|
|
|
|
|
if ((file=H5Fcreate(filename, H5F_ACC_TRUNC, fcpl, fapl))<0)
|
|
|
|
|
goto error;
|
|
|
|
|
|
1998-11-25 22:58:22 +08:00
|
|
|
|
/* Perform tests */
|
2002-03-29 03:27:45 +08:00
|
|
|
|
nerrors += test_misc(file);
|
|
|
|
|
nerrors += test_long(file);
|
|
|
|
|
nerrors += test_large(file);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
if (nerrors) goto error;
|
|
|
|
|
|
|
|
|
|
/* Cleanup */
|
2002-03-29 03:27:45 +08:00
|
|
|
|
H5Fclose(file);
|
1998-11-25 22:58:22 +08:00
|
|
|
|
puts("All symbol table 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 ***");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|