1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
|
/**************************************************************************\
*
* This file is part of the Coin 3D visualization library.
* Copyright (C) by Kongsberg Oil & Gas Technologies.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.GPL at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using Coin with software that can not be combined with the GNU
* GPL, and for taking advantage of the additional benefits of our
* support services, please contact Kongsberg Oil & Gas Technologies
* about acquiring a Coin Professional Edition License.
*
* See http://www.coin3d.org/ for more information.
*
* Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
* http://www.sim.no/ sales@sim.no coin-support@coin3d.org
*
\**************************************************************************/
#include <Inventor/C/threads/recmutex.h>
#include <stdlib.h>
#include <assert.h>
#include <Inventor/C/errors/debugerror.h>
#include <Inventor/C/threads/mutex.h>
#include <Inventor/C/threads/thread.h>
#include <Inventor/C/threads/condvar.h>
#include "tidbitsp.h"
#include "threads/recmutexp.h"
/* ********************************************************************** */
/* debugging. for instance useful for checking that there's not
excessive mutex construction. */
/* these are declared in mutex.cpp */
extern unsigned int cc_debug_mtxcount;
extern const char * COIN_DEBUG_MUTEX_COUNT;
/* ********************************************************************** */
/*!
\internal
*/
void
cc_recmutex_struct_init(cc_recmutex * recmutex)
{
cc_mutex_struct_init(&recmutex->mutex);
cc_condvar_struct_init(&recmutex->condvar);
recmutex->threadid = 0;
recmutex->level = 0;
recmutex->waiters = 0;
}
/*!
\internal
*/
void
cc_recmutex_struct_clean(cc_recmutex * recmutex)
{
cc_mutex_struct_clean(&recmutex->mutex);
cc_condvar_struct_clean(&recmutex->condvar);
}
/*
Construct a recursive mutex.
*/
cc_recmutex *
cc_recmutex_construct(void)
{
cc_recmutex * recmutex;
recmutex = (cc_recmutex *) malloc(sizeof(cc_recmutex));
assert(recmutex != NULL);
cc_recmutex_struct_init(recmutex);
{ /* debugging */
const char * env = coin_getenv(COIN_DEBUG_MUTEX_COUNT);
if (env && (atoi(env) > 0)) {
cc_debug_mtxcount += 1;
(void)fprintf(stderr, "DEBUG: live mutexes +1 => %u (recmutex++)\n",
cc_debug_mtxcount);
}
}
return recmutex;
}
/*
Destruct a recursive mutex.
*/
void
cc_recmutex_destruct(cc_recmutex * recmutex)
{
{ /* debugging */
const char * env = coin_getenv(COIN_DEBUG_MUTEX_COUNT);
if (env && (atoi(env) > 0)) {
assert((cc_debug_mtxcount > 0) && "skewed mutex construct/destruct pairing");
cc_debug_mtxcount -= 1;
(void)fprintf(stderr, "DEBUG: live mutexes -1 => %u (recmutex--)\n",
cc_debug_mtxcount);
}
}
assert(recmutex != NULL);
cc_recmutex_struct_clean(recmutex);
free(recmutex);
}
/*
Internal function used by cc_recmutex_lock() and cc_recmutex_try_lock().
*/
static int recmutex_lock_internal(cc_recmutex * recmutex, int wait)
{
int level = -1; /* return -1 for recmutex_try_lock() if we couldn't get the mutex */
unsigned long id = cc_thread_id();
assert(recmutex != NULL);
cc_mutex_lock(&recmutex->mutex);
if (recmutex->level == 0) {
recmutex->level++;
recmutex->threadid = id;
level = recmutex->level;
}
else if (id == recmutex->threadid) {
recmutex->level++;
level = recmutex->level;
}
else if (wait) {
recmutex->waiters++;
/* wait in loop, since some thread might snatch the mutex before
us when we receive a signal */
do {
cc_condvar_wait(&recmutex->condvar, &recmutex->mutex);
} while (recmutex->level > 0);
assert(recmutex->level == 0);
recmutex->waiters--;
recmutex->threadid = id;
recmutex->level++;
level = recmutex->level;
}
cc_mutex_unlock(&recmutex->mutex);
return level;
}
/*
Lock a recursive mutex. Returns the nesting level.
*/
int
cc_recmutex_lock(cc_recmutex * recmutex)
{
return recmutex_lock_internal(recmutex, TRUE);
}
/*
Attempts to lock a recursive mutex. Returns TRUE if thread got the lock
or already had the lock.
*/
int
cc_recmutex_try_lock(cc_recmutex * recmutex)
{
return recmutex_lock_internal(recmutex, FALSE) >= 0;
}
/*
Unlock a recursive mutex. Returns the nesting level after unlock.
*/
int
cc_recmutex_unlock(cc_recmutex * recmutex)
{
int level;
assert(recmutex != NULL);
assert(recmutex->threadid == cc_thread_id());
assert(recmutex->level > 0);
cc_mutex_lock(&recmutex->mutex);
recmutex->level--;
if (recmutex->level == 0 && recmutex->waiters) {
cc_condvar_wake_one(&recmutex->condvar);
}
level = recmutex->level;
cc_mutex_unlock(&recmutex->mutex);
return level;
}
/*
internal functions
*/
static cc_recmutex * recmutex_field_lock;
static cc_recmutex * recmutex_notify_lock;
static void
recmutex_cleanup(void)
{
cc_recmutex_destruct(recmutex_field_lock);
cc_recmutex_destruct(recmutex_notify_lock);
}
void
cc_recmutex_init(void)
{
recmutex_field_lock = cc_recmutex_construct();
recmutex_notify_lock = cc_recmutex_construct();
/* atexit priority makes this callback trigger after normal cleanup
functions which might still use a recmutex instance */
coin_atexit((coin_atexit_f*) recmutex_cleanup, CC_ATEXIT_THREADING_SUBSYSTEM);
}
int
cc_recmutex_internal_field_lock(void)
{
return cc_recmutex_lock(recmutex_field_lock);
}
int
cc_recmutex_internal_field_unlock(void)
{
return cc_recmutex_unlock(recmutex_field_lock);
}
int
cc_recmutex_internal_notify_lock(void)
{
return cc_recmutex_lock(recmutex_notify_lock);
}
int
cc_recmutex_internal_notify_unlock(void)
{
return cc_recmutex_unlock(recmutex_notify_lock);
}
|