2003-04-01 02:30:57 +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. *
|
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
2000-05-19 03:13:33 +08:00
|
|
|
|
|
|
|
|
|
/* private headers */
|
2001-04-06 01:29:14 +08:00
|
|
|
|
#include "H5private.h" /*library */
|
|
|
|
|
#include "H5Eprivate.h" /*error handling */
|
|
|
|
|
#include "H5MMprivate.h" /*memory management functions */
|
2000-05-19 03:13:33 +08:00
|
|
|
|
|
|
|
|
|
#ifdef H5_HAVE_THREADSAFE
|
|
|
|
|
|
2000-05-19 22:51:50 +08:00
|
|
|
|
/* Module specific data structures */
|
|
|
|
|
|
|
|
|
|
/* cancelability structure */
|
|
|
|
|
typedef struct H5TS_cancel_struct {
|
2000-05-20 06:02:24 +08:00
|
|
|
|
int previous_state;
|
|
|
|
|
unsigned int cancel_count;
|
2000-05-19 22:51:50 +08:00
|
|
|
|
} H5TS_cancel_t;
|
|
|
|
|
|
|
|
|
|
/* Global variable definitions */
|
|
|
|
|
pthread_once_t H5TS_first_init_g = PTHREAD_ONCE_INIT;
|
|
|
|
|
pthread_key_t H5TS_errstk_key_g;
|
2003-02-08 05:14:19 +08:00
|
|
|
|
pthread_key_t H5TS_funcstk_key_g;
|
2000-05-19 22:51:50 +08:00
|
|
|
|
pthread_key_t H5TS_cancel_key_g;
|
|
|
|
|
hbool_t H5TS_allow_concurrent_g = FALSE; /* concurrent APIs override this */
|
|
|
|
|
|
|
|
|
|
/* Local function definitions */
|
|
|
|
|
#ifdef NOT_USED
|
|
|
|
|
static void H5TS_mutex_init(H5TS_mutex_t *mutex);
|
|
|
|
|
#endif /* NOT_USED */
|
|
|
|
|
|
2003-02-08 05:14:19 +08:00
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
|
|
|
|
* H5TS_key_destructor
|
|
|
|
|
*
|
|
|
|
|
* USAGE
|
|
|
|
|
* H5TS_key_destructor()
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2003-02-08 05:14:19 +08:00
|
|
|
|
* RETURNS
|
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
|
|
|
|
* Frees the memory for a key. Called by each thread as it exits.
|
|
|
|
|
* Currently all the thread-specific information for all keys are simple
|
|
|
|
|
* structures allocated with malloc, so we can free them all uniformly.
|
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Quincey Koziol
|
|
|
|
|
* February 7, 2003
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
H5TS_key_destructor(void *key_val)
|
|
|
|
|
{
|
|
|
|
|
/* Use HDfree here instead of H5MM_xfree(), to avoid calling the H5FS routines */
|
|
|
|
|
if(key_val!=NULL)
|
|
|
|
|
HDfree(key_val);
|
|
|
|
|
}
|
|
|
|
|
|
2000-05-19 03:13:33 +08:00
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_first_thread_init
|
2000-05-20 06:02:24 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* USAGE
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_first_thread_init()
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* RETURNS
|
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* Initialization of global API lock, keys for per-thread error stacks and
|
|
|
|
|
* cancallability information. Called by the first thread that enters the
|
|
|
|
|
* library.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Chee Wai LEE
|
|
|
|
|
* May 2, 2000
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2000-05-19 22:51:50 +08:00
|
|
|
|
void
|
|
|
|
|
H5TS_first_thread_init(void)
|
|
|
|
|
{
|
|
|
|
|
H5_g.H5_libinit_g = FALSE;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
2005-11-16 09:01:37 +08:00
|
|
|
|
/* set the owner objects to initial values */
|
|
|
|
|
H5_g.init_lock.owner_thread = pthread_self();
|
|
|
|
|
H5_g.init_lock.owner_valid = FALSE;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
|
|
|
|
/* initialize global API mutex lock */
|
2000-05-19 22:51:50 +08:00
|
|
|
|
pthread_mutex_init(&H5_g.init_lock.atomic_lock, NULL);
|
|
|
|
|
pthread_cond_init(&H5_g.init_lock.cond_var, NULL);
|
|
|
|
|
H5_g.init_lock.lock_count = 0;
|
|
|
|
|
|
2003-08-09 02:58:50 +08:00
|
|
|
|
/* initialize key for thread-specific error stacks */
|
|
|
|
|
pthread_key_create(&H5TS_errstk_key_g, H5TS_key_destructor);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
|
2003-02-08 05:14:19 +08:00
|
|
|
|
/* initialize key for thread-specific function stacks */
|
|
|
|
|
pthread_key_create(&H5TS_funcstk_key_g, H5TS_key_destructor);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
|
2003-02-08 05:14:19 +08:00
|
|
|
|
/* initialize key for thread cancellability mechanism */
|
|
|
|
|
pthread_key_create(&H5TS_cancel_key_g, H5TS_key_destructor);
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_mutex_lock
|
2000-05-20 06:02:24 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* USAGE
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_mutex_lock(&mutex_var)
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* RETURNS
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 0 on success and non-zero on error.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* Recursive lock semantics for HDF5 (locking) -
|
|
|
|
|
* Multiple acquisition of a lock by a thread is permitted with a
|
|
|
|
|
* corresponding unlock operation required.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Chee Wai LEE
|
|
|
|
|
* May 2, 2000
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 19 May 2000, Bill Wendling
|
|
|
|
|
* Changed (*foo). form of accessing structure members to the -> form.
|
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t
|
2000-05-19 22:51:50 +08:00
|
|
|
|
H5TS_mutex_lock(H5TS_mutex_t *mutex)
|
|
|
|
|
{
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t ret_value;
|
|
|
|
|
|
|
|
|
|
ret_value = pthread_mutex_lock(&mutex->atomic_lock);
|
|
|
|
|
|
|
|
|
|
if (ret_value)
|
2003-08-09 02:58:50 +08:00
|
|
|
|
return ret_value;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
2005-11-16 09:01:37 +08:00
|
|
|
|
if (mutex->owner_valid && pthread_equal(pthread_self(), mutex->owner_thread)) {
|
2000-05-19 22:51:50 +08:00
|
|
|
|
/* already owned by self - increment count */
|
2000-05-20 06:02:24 +08:00
|
|
|
|
mutex->lock_count++;
|
2005-11-16 09:01:37 +08:00
|
|
|
|
} else if (!mutex->owner_valid) {
|
2000-05-20 06:02:24 +08:00
|
|
|
|
/* no one else has locked it - set owner and grab lock */
|
2005-11-16 09:01:37 +08:00
|
|
|
|
mutex->owner_thread = pthread_self();
|
|
|
|
|
mutex->owner_valid = TRUE;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
mutex->lock_count = 1;
|
2000-05-19 03:13:33 +08:00
|
|
|
|
} else {
|
2000-05-20 06:02:24 +08:00
|
|
|
|
/* if already locked by someone else */
|
|
|
|
|
for (;;) {
|
|
|
|
|
pthread_cond_wait(&mutex->cond_var, &mutex->atomic_lock);
|
|
|
|
|
|
2005-11-16 09:01:37 +08:00
|
|
|
|
if (!mutex->owner_valid) {
|
|
|
|
|
mutex->owner_thread = pthread_self();
|
|
|
|
|
mutex->owner_valid = TRUE;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
mutex->lock_count = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-05-19 22:51:50 +08:00
|
|
|
|
}
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
|
|
|
|
return pthread_mutex_unlock(&mutex->atomic_lock);
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_mutex_unlock
|
2000-05-20 06:02:24 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* USAGE
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_mutex_unlock(&mutex_var)
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* RETURNS
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 0 on success and non-zero on error.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* Recursive lock semantics for HDF5 (unlocking) -
|
|
|
|
|
* Multiple acquisition of a lock by a thread is permitted with a
|
|
|
|
|
* corresponding unlock operation required.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Chee Wai LEE
|
|
|
|
|
* May 2, 2000
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 19 May 2000, Bill Wendling
|
|
|
|
|
* Changed (*foo). form of accessing structure members to the -> form.
|
|
|
|
|
* Also gave the function a return value.
|
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t
|
2000-05-19 22:51:50 +08:00
|
|
|
|
H5TS_mutex_unlock(H5TS_mutex_t *mutex)
|
|
|
|
|
{
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t ret_value;
|
|
|
|
|
|
|
|
|
|
ret_value = pthread_mutex_lock(&mutex->atomic_lock);
|
|
|
|
|
|
|
|
|
|
if (ret_value)
|
|
|
|
|
return ret_value;
|
|
|
|
|
|
|
|
|
|
mutex->lock_count--;
|
|
|
|
|
|
|
|
|
|
if (mutex->lock_count == 0) {
|
2005-11-16 09:01:37 +08:00
|
|
|
|
mutex->owner_valid = FALSE;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
ret_value = pthread_cond_signal(&mutex->cond_var);
|
|
|
|
|
|
|
|
|
|
if (ret_value) {
|
|
|
|
|
pthread_mutex_unlock(&mutex->atomic_lock);
|
|
|
|
|
return ret_value;
|
|
|
|
|
}
|
2000-05-19 22:51:50 +08:00
|
|
|
|
}
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
|
|
|
|
return pthread_mutex_unlock(&mutex->atomic_lock);
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_cancel_count_inc
|
2000-05-20 06:02:24 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* USAGE
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_cancel_count_inc()
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* RETURNS
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 0 on success non-zero error code on error.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
|
|
|
|
* Creates a cancelation counter for a thread if it is the first time
|
|
|
|
|
* the thread is entering the library.
|
|
|
|
|
*
|
|
|
|
|
* if counter value is zero, then set cancelability type of the thread
|
|
|
|
|
* to PTHREAD_CANCEL_DISABLE as thread is entering the library and store
|
|
|
|
|
* the previous cancelability type into cancelation counter.
|
|
|
|
|
* Increase the counter value by 1.
|
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Chee Wai LEE
|
|
|
|
|
* May 2, 2000
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 19 May 2000, Bill Wendling
|
|
|
|
|
* Changed function to return a value. Also changed the malloc() call to
|
|
|
|
|
* the H5MM_malloc() call and checked the returned pointer.
|
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t
|
2000-05-19 22:51:50 +08:00
|
|
|
|
H5TS_cancel_count_inc(void)
|
2000-05-19 03:13:33 +08:00
|
|
|
|
{
|
2000-05-19 22:51:50 +08:00
|
|
|
|
H5TS_cancel_t *cancel_counter;
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t ret_value = 0;
|
2000-05-19 22:51:50 +08:00
|
|
|
|
|
2000-05-20 06:02:24 +08:00
|
|
|
|
cancel_counter = pthread_getspecific(H5TS_cancel_key_g);
|
|
|
|
|
|
|
|
|
|
if (!cancel_counter) {
|
|
|
|
|
/*
|
|
|
|
|
* First time thread calls library - create new counter and associate
|
|
|
|
|
* with key
|
2000-05-19 22:51:50 +08:00
|
|
|
|
*/
|
2003-07-26 10:55:47 +08:00
|
|
|
|
cancel_counter = H5MM_calloc(sizeof(H5TS_cancel_t));
|
2000-05-20 06:02:24 +08:00
|
|
|
|
|
|
|
|
|
if (!cancel_counter) {
|
2004-09-05 05:06:48 +08:00
|
|
|
|
H5E_push_stack(NULL, "H5TS_cancel_count_inc",
|
2003-07-26 10:55:47 +08:00
|
|
|
|
__FILE__, __LINE__, H5E_ERR_CLS_g, H5E_RESOURCE, H5E_NOSPACE, "memory allocation failed");
|
2000-05-20 06:02:24 +08:00
|
|
|
|
return FAIL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret_value = pthread_setspecific(H5TS_cancel_key_g,
|
|
|
|
|
(void *)cancel_counter);
|
2000-05-19 22:51:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-20 06:02:24 +08:00
|
|
|
|
if (cancel_counter->cancel_count == 0)
|
2000-05-19 22:51:50 +08:00
|
|
|
|
/* thread entering library */
|
2000-05-20 06:02:24 +08:00
|
|
|
|
ret_value = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE,
|
|
|
|
|
&cancel_counter->previous_state);
|
|
|
|
|
|
|
|
|
|
++cancel_counter->cancel_count;
|
|
|
|
|
return ret_value;
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------
|
|
|
|
|
* NAME
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_cancel_count_dec
|
2000-05-20 06:02:24 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* USAGE
|
2000-05-19 22:51:50 +08:00
|
|
|
|
* H5TS_cancel_count_dec()
|
2005-08-14 04:53:35 +08:00
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* RETURNS
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 0 on success and a non-zero error code on error.
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*
|
|
|
|
|
* DESCRIPTION
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* If counter value is one, then set cancelability type of the thread
|
2000-05-19 03:13:33 +08:00
|
|
|
|
* to the previous cancelability type stored in the cancelation counter.
|
|
|
|
|
* (the thread is leaving the library).
|
|
|
|
|
*
|
|
|
|
|
* Decrement the counter value by 1.
|
|
|
|
|
*
|
|
|
|
|
* PROGRAMMER: Chee Wai LEE
|
|
|
|
|
* May 2, 2000
|
|
|
|
|
*
|
|
|
|
|
* MODIFICATIONS:
|
|
|
|
|
*
|
2000-05-20 06:02:24 +08:00
|
|
|
|
* 19 May 2000, Bill Wendling
|
|
|
|
|
* Changed so that function returns a value. May be of limited usefulness.
|
|
|
|
|
*
|
2000-05-19 03:13:33 +08:00
|
|
|
|
*--------------------------------------------------------------------------
|
|
|
|
|
*/
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t
|
2000-05-19 22:51:50 +08:00
|
|
|
|
H5TS_cancel_count_dec(void)
|
2000-05-19 03:13:33 +08:00
|
|
|
|
{
|
2000-05-20 06:02:24 +08:00
|
|
|
|
herr_t ret_value = 0;
|
|
|
|
|
register H5TS_cancel_t *cancel_counter;
|
2000-05-19 03:13:33 +08:00
|
|
|
|
|
2000-05-20 06:02:24 +08:00
|
|
|
|
cancel_counter = pthread_getspecific(H5TS_cancel_key_g);
|
|
|
|
|
|
|
|
|
|
if (cancel_counter->cancel_count == 1)
|
|
|
|
|
ret_value = pthread_setcancelstate(cancel_counter->previous_state, NULL);
|
|
|
|
|
|
|
|
|
|
--cancel_counter->cancel_count;
|
|
|
|
|
return ret_value;
|
2000-05-19 03:13:33 +08:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-20 06:02:24 +08:00
|
|
|
|
#endif /* H5_HAVE_THREADSAFE */
|