2003-04-01 01:59:04 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
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 *
|
2017-04-18 03:32:16 +08:00
|
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
|
|
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
|
|
|
|
* If you do not have access to either file, you may request a copy from *
|
|
|
|
* help@hdfgroup.org. *
|
2003-04-01 01:59:04 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2000-05-19 03:13:33 +08:00
|
|
|
/********************************************************************
|
|
|
|
*
|
|
|
|
* Testing for thread safety in H5A (dataset attribute) library
|
|
|
|
* operations. -- Threaded program --
|
|
|
|
* ------------------------------------------------------------------
|
|
|
|
*
|
[svn-r14187] Description:
Put H5Acreate() under API versioning, with all internal usage shifted
to H5Acreate2().
Add regression tests for H5Acreate1().
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-05 06:19:07 +08:00
|
|
|
* Plan: Attempt to break H5Acreate2 by making many simultaneous create
|
2000-05-19 03:13:33 +08:00
|
|
|
* calls.
|
|
|
|
*
|
[svn-r14187] Description:
Put H5Acreate() under API versioning, with all internal usage shifted
to H5Acreate2().
Add regression tests for H5Acreate1().
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-05 06:19:07 +08:00
|
|
|
* Claim: N calls to H5Acreate2 should create N attributes for a dataset
|
2000-05-19 03:13:33 +08:00
|
|
|
* if threadsafe. If some unprotected shared data exists for the
|
|
|
|
* dataset (eg, a count of the number of attributes in the
|
|
|
|
* dataset), there is a small chance that consecutive reads occur
|
|
|
|
* before a write to that shared variable.
|
|
|
|
*
|
|
|
|
* Created: Oct 5 1999
|
|
|
|
* Programmer: Chee Wai LEE
|
|
|
|
*
|
|
|
|
********************************************************************/
|
|
|
|
|
|
|
|
#include "ttsafe.h"
|
|
|
|
|
2003-06-26 10:10:33 +08:00
|
|
|
#ifdef H5_HAVE_THREADSAFE
|
2000-05-19 03:13:33 +08:00
|
|
|
|
2000-05-20 07:00:03 +08:00
|
|
|
#define FILENAME "ttsafe_acreate.h5"
|
|
|
|
#define DATASETNAME "IntData"
|
|
|
|
#define NUM_THREADS 16
|
|
|
|
|
2000-05-19 03:13:33 +08:00
|
|
|
void *tts_acreate_thread(void *);
|
|
|
|
|
|
|
|
typedef struct acreate_data_struct {
|
2000-05-20 07:00:03 +08:00
|
|
|
hid_t dataset;
|
|
|
|
hid_t datatype;
|
|
|
|
hid_t dataspace;
|
|
|
|
int current_index;
|
2000-05-19 03:13:33 +08:00
|
|
|
} ttsafe_name_data_t;
|
|
|
|
|
2018-05-14 15:44:02 +08:00
|
|
|
void
|
|
|
|
tts_acreate(void)
|
2000-05-20 07:00:03 +08:00
|
|
|
{
|
2010-09-11 00:15:34 +08:00
|
|
|
/* Thread declarations */
|
|
|
|
H5TS_thread_t threads[NUM_THREADS];
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* HDF5 data declarations */
|
2018-05-14 15:44:02 +08:00
|
|
|
hid_t file = H5I_INVALID_HID;
|
|
|
|
hid_t dataset = H5I_INVALID_HID;
|
|
|
|
hid_t dataspace = H5I_INVALID_HID;
|
|
|
|
hid_t datatype = H5I_INVALID_HID;
|
|
|
|
hid_t attribute = H5I_INVALID_HID;
|
2004-01-10 09:41:13 +08:00
|
|
|
hsize_t dimsf[1]; /* dataset dimensions */
|
|
|
|
|
|
|
|
/* data declarations */
|
|
|
|
int data; /* data to write */
|
2018-05-14 15:44:02 +08:00
|
|
|
int buffer, i;
|
|
|
|
herr_t status;
|
2004-01-10 09:41:13 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
ttsafe_name_data_t *attrib_data;
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Create an HDF5 file using H5F_ACC_TRUNC access, default file
|
|
|
|
* creation plist and default file access plist
|
|
|
|
*/
|
|
|
|
file = H5Fcreate(FILENAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(file, H5I_INVALID_HID, "H5Fcreate");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* create a simple dataspace for the dataset */
|
|
|
|
dimsf[0] = 1;
|
|
|
|
dataspace = H5Screate_simple(1, dimsf, NULL);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(dataspace, H5I_INVALID_HID, "H5Screate_simple");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* define datatype for the data using native little endian integers */
|
|
|
|
datatype = H5Tcopy(H5T_NATIVE_INT);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(datatype, H5I_INVALID_HID, "H5Tcopy");
|
|
|
|
status = H5Tset_order(datatype, H5T_ORDER_LE);
|
|
|
|
CHECK(status, FAIL, "H5Tset_order");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* create a new dataset within the file */
|
[svn-r14199] Description:
Add H5Dcreate to API versioned routines, replacing internal usage with
H5Dcreate2
Fix thread-safe error stack initialization for API versioned error
stack printing routines.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-12 00:24:11 +08:00
|
|
|
dataset = H5Dcreate2(file, DATASETNAME, datatype, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(dataset, H5I_INVALID_HID, "H5Dcreate2");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* initialize data for dataset and write value to dataset */
|
|
|
|
data = NUM_THREADS;
|
2018-05-14 15:44:02 +08:00
|
|
|
status = H5Dwrite(dataset, H5T_NATIVE_INT, H5S_ALL, H5S_ALL, H5P_DEFAULT, &data);
|
|
|
|
CHECK(status, FAIL, "H5Dwrite");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Simultaneously create a large number of attributes to be associated
|
|
|
|
* with the dataset
|
|
|
|
*/
|
[svn-r14185] Description:
Move H5Aopen_name() routine to deprecated symbol section and replace
internal usage with H5Aopen().
Add simple regression test for H5Aopen_name() to deprecated routine
test.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-05 03:29:58 +08:00
|
|
|
for(i = 0; i < NUM_THREADS; i++) {
|
2016-06-29 05:53:48 +08:00
|
|
|
attrib_data = (ttsafe_name_data_t *)HDmalloc(sizeof(ttsafe_name_data_t));
|
2004-01-10 09:41:13 +08:00
|
|
|
attrib_data->dataset = dataset;
|
|
|
|
attrib_data->datatype = datatype;
|
|
|
|
attrib_data->dataspace = dataspace;
|
|
|
|
attrib_data->current_index = i;
|
2010-09-11 00:15:34 +08:00
|
|
|
threads[i] = H5TS_create_thread(tts_acreate_thread, NULL, attrib_data);
|
2018-05-14 15:44:02 +08:00
|
|
|
}
|
2004-01-10 09:41:13 +08:00
|
|
|
|
2018-05-14 15:44:02 +08:00
|
|
|
for(i = 0; i < NUM_THREADS; i++)
|
2010-09-11 00:15:34 +08:00
|
|
|
H5TS_wait_for_thread(threads[i]);
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* verify the correctness of the test */
|
[svn-r14185] Description:
Move H5Aopen_name() routine to deprecated symbol section and replace
internal usage with H5Aopen().
Add simple regression test for H5Aopen_name() to deprecated routine
test.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-05 03:29:58 +08:00
|
|
|
for(i = 0; i < NUM_THREADS; i++) {
|
[svn-r14217] Description:
Change H5Aopen -> H5Aopen_by_name, in order to be more consistent with
other new API routines.
Re-add H5Aopen as a simpler routine, to open attributes on a particular
object. (Much like the old H5Aopen_name routine).
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-31 00:07:20 +08:00
|
|
|
attribute = H5Aopen(dataset, gen_name(i), H5P_DEFAULT);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(attribute, H5I_INVALID_HID, "H5Aopen");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
[svn-r14185] Description:
Move H5Aopen_name() routine to deprecated symbol section and replace
internal usage with H5Aopen().
Add simple regression test for H5Aopen_name() to deprecated routine
test.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-05 03:29:58 +08:00
|
|
|
if(attribute < 0)
|
2004-01-10 09:41:13 +08:00
|
|
|
TestErrPrintf("unable to open appropriate attribute. Test failed!\n");
|
|
|
|
else {
|
2018-05-14 15:44:02 +08:00
|
|
|
status = H5Aread(attribute, H5T_NATIVE_INT, &buffer);
|
|
|
|
CHECK(status, FAIL, "H5Aread");
|
|
|
|
VERIFY(buffer, i, "data values don't match");
|
2004-01-10 09:41:13 +08:00
|
|
|
|
2018-05-14 15:44:02 +08:00
|
|
|
status = H5Aclose(attribute);
|
|
|
|
CHECK(status, FAIL, "H5Aclose");
|
|
|
|
}
|
|
|
|
}
|
2004-01-10 09:41:13 +08:00
|
|
|
|
|
|
|
/* close remaining resources */
|
2018-05-14 15:44:02 +08:00
|
|
|
status = H5Sclose(dataspace);
|
|
|
|
CHECK(status, FAIL, "H5Sclose");
|
|
|
|
status = H5Tclose(datatype);
|
|
|
|
CHECK(status, FAIL, "H5Sclose");
|
|
|
|
status = H5Dclose(dataset);
|
|
|
|
CHECK(status, FAIL, "H5Dclose");
|
|
|
|
status = H5Fclose(file);
|
|
|
|
CHECK(status, FAIL, "H5Fclose");
|
|
|
|
} /* end tts_acreate() */
|
|
|
|
|
|
|
|
void *
|
|
|
|
tts_acreate_thread(void *client_data)
|
2000-05-20 07:00:03 +08:00
|
|
|
{
|
2018-05-14 15:44:02 +08:00
|
|
|
hid_t attribute = H5I_INVALID_HID;
|
2004-12-29 22:26:20 +08:00
|
|
|
char *attribute_name;
|
|
|
|
int *attribute_data; /* data for attributes */
|
2018-05-14 15:44:02 +08:00
|
|
|
herr_t status;
|
2004-12-29 22:26:20 +08:00
|
|
|
|
|
|
|
ttsafe_name_data_t *attrib_data;
|
|
|
|
|
|
|
|
attrib_data = (ttsafe_name_data_t *)client_data;
|
|
|
|
|
|
|
|
/* Create attribute */
|
|
|
|
attribute_name = gen_name(attrib_data->current_index);
|
[svn-r14218] Description:
Changed H5Acreate2 -> H5Acreate_by_name, to be more consistent with
other new API routines.
Re-added simpler form of H5Acreate2, which creates attributes directly
on an object.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-31 02:13:48 +08:00
|
|
|
attribute = H5Acreate2(attrib_data->dataset, attribute_name,
|
2004-12-29 22:26:20 +08:00
|
|
|
attrib_data->datatype, attrib_data->dataspace,
|
[svn-r14218] Description:
Changed H5Acreate2 -> H5Acreate_by_name, to be more consistent with
other new API routines.
Re-added simpler form of H5Acreate2, which creates attributes directly
on an object.
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-31 02:13:48 +08:00
|
|
|
H5P_DEFAULT, H5P_DEFAULT);
|
2018-05-14 15:44:02 +08:00
|
|
|
CHECK(attribute, H5I_INVALID_HID, "H5Acreate2");
|
2004-12-29 22:26:20 +08:00
|
|
|
|
|
|
|
/* Write data to the attribute */
|
2016-06-29 05:53:48 +08:00
|
|
|
attribute_data = (int *)HDmalloc(sizeof(int));
|
2004-12-29 22:26:20 +08:00
|
|
|
*attribute_data = attrib_data->current_index;
|
2018-05-14 15:44:02 +08:00
|
|
|
status = H5Awrite(attribute, H5T_NATIVE_INT, attribute_data);
|
|
|
|
CHECK(status, FAIL, "H5Awrite");
|
|
|
|
status = H5Aclose(attribute);
|
|
|
|
CHECK(status, FAIL, "H5Aclose");
|
2004-12-29 22:26:20 +08:00
|
|
|
return NULL;
|
2018-05-14 15:44:02 +08:00
|
|
|
} /* end tts_acreate_thread() */
|
2000-05-19 03:13:33 +08:00
|
|
|
|
2018-05-14 15:44:02 +08:00
|
|
|
void
|
|
|
|
cleanup_acreate(void)
|
2000-05-20 07:00:03 +08:00
|
|
|
{
|
2004-12-29 22:26:20 +08:00
|
|
|
HDunlink(FILENAME);
|
2000-05-19 03:13:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /*H5_HAVE_THREADSAFE*/
|
2018-05-14 15:44:02 +08:00
|
|
|
|