gecko-dev/xpcom/threads/nsAutoLock.cpp

297 строки
8.3 KiB
C++
Исходник Обычный вид История

1999-09-06 23:16:25 +04:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
1999-09-06 23:16:25 +04:00
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
1999-09-06 23:16:25 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-09-06 23:16:25 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-09-06 23:16:25 +04:00
*/
#include "nsAutoLock.h"
#ifdef DEBUG
#include "plhash.h"
#include "prprf.h"
1999-09-18 03:21:29 +04:00
#include "prlock.h"
1999-09-06 23:16:25 +04:00
#include "prthread.h"
#include "nsDebug.h"
#include "nsVoidArray.h"
1999-09-06 23:16:25 +04:00
static PRUintn LockStackTPI = (PRUintn)-1;
static PLHashTable* OrderTable = 0;
1999-09-18 03:21:29 +04:00
static PRLock* OrderTableLock = 0;
1999-09-06 23:16:25 +04:00
static const char* LockTypeNames[] = {"Lock", "Monitor", "CMonitor"};
struct nsNamedVector : public nsVoidArray {
1999-09-06 23:16:25 +04:00
const char* mName;
1999-09-18 03:21:29 +04:00
nsNamedVector(const char* name = 0, PRUint32 initialSize = 0)
: nsVoidArray(initialSize),
1999-09-06 23:16:25 +04:00
mName(name)
{
}
};
1999-09-18 03:21:29 +04:00
PR_STATIC_CALLBACK(PRIntn)
_purge_one(PLHashEntry* he, PRIntn cnt, void* arg)
{
nsNamedVector* vec = (nsNamedVector*) he->value;
if (he->key == arg) {
he->value = 0;
delete vec;
return HT_ENUMERATE_REMOVE;
}
vec->RemoveElement(arg);
1999-09-18 03:21:29 +04:00
return HT_ENUMERATE_NEXT;
}
PR_STATIC_CALLBACK(void)
OnMonitorRecycle(void* addr)
{
PR_Lock(OrderTableLock);
PL_HashTableEnumerateEntries(OrderTable, _purge_one, addr);
PR_Unlock(OrderTableLock);
}
1999-09-06 23:16:25 +04:00
PR_STATIC_CALLBACK(PLHashNumber)
1999-09-18 03:21:29 +04:00
_hash_pointer(const void* key)
1999-09-06 23:16:25 +04:00
{
return PLHashNumber(key) >> 2;
}
1999-09-18 03:21:29 +04:00
// Must be single-threaded here, early in primordial thread.
static void InitAutoLockStatics()
{
(void) PR_NewThreadPrivateIndex(&LockStackTPI, 0);
OrderTable = PL_NewHashTable(64, _hash_pointer,
PL_CompareValues, PL_CompareValues,
0, 0);
if (OrderTable && !(OrderTableLock = PR_NewLock())) {
PL_HashTableDestroy(OrderTable);
OrderTable = 0;
}
PR_CSetOnMonitorRecycle(OnMonitorRecycle);
}
PR_STATIC_CALLBACK(PRIntn)
_purge_all(PLHashEntry* he, PRIntn cnt, void* arg)
{
nsNamedVector* vec = (nsNamedVector*) he->value;
he->value = 0;
delete vec;
return HT_ENUMERATE_REMOVE;
}
void _FreeAutoLockStatics()
{
PLHashTable* table = OrderTable;
if (!table) return;
// Called at shutdown, so we don't need to lock.
PR_CSetOnMonitorRecycle(0);
PR_DestroyLock(OrderTableLock);
OrderTableLock = 0;
PL_HashTableEnumerateEntries(table, _purge_all, 0);
PL_HashTableDestroy(table);
OrderTable = 0;
}
1999-09-06 23:16:25 +04:00
static nsNamedVector* GetVector(PLHashTable* table, const void* key)
{
PLHashNumber hash = _hash_pointer(key);
PLHashEntry** hep = PL_HashTableRawLookup(table, hash, key);
PLHashEntry* he = *hep;
if (he)
return (nsNamedVector*) he->value;
1999-09-18 03:21:29 +04:00
nsNamedVector* vec = new nsNamedVector();
1999-09-06 23:16:25 +04:00
if (vec)
PL_HashTableRawAdd(table, hep, hash, key, vec);
return vec;
}
1999-09-18 03:21:29 +04:00
// We maintain an acyclic graph in order table, so recursion can't diverge
static PRBool Reachable(PLHashTable* table, const void* goal, const void* start)
{
PR_ASSERT(goal);
PR_ASSERT(start);
nsNamedVector* vec = GetVector(table, start);
for (PRUint32 i = 0, n = vec->Count(); i < n; i++) {
void* addr = vec->ElementAt(i);
1999-09-18 03:21:29 +04:00
if (addr == goal || Reachable(table, goal, addr))
return PR_TRUE;
}
return PR_FALSE;
}
1999-09-06 23:16:25 +04:00
static PRBool WellOrdered(const void* addr1, const void* addr2,
nsNamedVector** vec1p, nsNamedVector** vec2p)
{
1999-09-18 03:21:29 +04:00
PRBool rv = PR_TRUE;
1999-09-06 23:16:25 +04:00
PLHashTable* table = OrderTable;
1999-09-18 03:21:29 +04:00
if (!table) return rv;
PR_Lock(OrderTableLock);
1999-09-06 23:16:25 +04:00
PRUint32 i, n;
1999-09-06 23:16:25 +04:00
// Check whether we've already asserted (addr1 < addr2).
nsNamedVector* vec1 = GetVector(table, addr1);
1999-09-18 03:21:29 +04:00
if (vec1) {
for (i = 0, n = vec1->Count(); i < n; i++)
if (vec1->ElementAt(i) == addr2)
1999-09-18 03:21:29 +04:00
break;
if (i == n) {
// Now check for (addr2 < addr1) and return false if so.
nsNamedVector* vec2 = GetVector(table, addr2);
if (vec2) {
for (i = 0, n = vec2->Count(); i < n; i++) {
void* addri = vec2->ElementAt(i);
1999-09-18 03:21:29 +04:00
PR_ASSERT(addri);
if (addri == addr1 || Reachable(table, addr1, addri)) {
*vec1p = vec1;
*vec2p = vec2;
rv = PR_FALSE;
break;
}
}
1999-09-06 23:16:25 +04:00
1999-09-18 03:21:29 +04:00
if (rv) {
// Assert (addr1 < addr2) into the order table.
// XXX fix plvector/nsVector to use const void*
vec1->AppendElement((void*) addr2);
1999-09-18 03:21:29 +04:00
}
}
1999-09-06 23:16:25 +04:00
}
1999-09-18 03:21:29 +04:00
}
1999-09-06 23:16:25 +04:00
1999-09-18 03:21:29 +04:00
PR_Unlock(OrderTableLock);
return rv;
1999-09-06 23:16:25 +04:00
}
nsAutoLockBase::nsAutoLockBase(void* addr, nsAutoLockType type)
{
1999-09-18 03:21:29 +04:00
if (LockStackTPI == PRUintn(-1))
InitAutoLockStatics();
1999-09-06 23:16:25 +04:00
nsAutoLockBase* stackTop =
(nsAutoLockBase*) PR_GetThreadPrivate(LockStackTPI);
if (stackTop) {
if (stackTop->mAddr == addr) {
// Ignore reentry: it's legal for monitors, and NSPR will assert
// if you reenter a PRLock.
} else {
nsNamedVector* vec1;
nsNamedVector* vec2;
if (!WellOrdered(stackTop->mAddr, addr, &vec1, &vec2)) {
1999-09-18 03:21:29 +04:00
char buf[128];
1999-09-06 23:16:25 +04:00
PR_snprintf(buf, sizeof buf,
"potential deadlock between %s%s@%p and %s%s@%p",
vec1->mName ? vec1->mName : "",
LockTypeNames[stackTop->mType],
stackTop->mAddr,
vec2->mName ? vec2->mName : "",
LockTypeNames[type],
addr);
NS_ERROR(buf);
}
}
}
mAddr = addr;
mDown = stackTop;
mType = type;
(void) PR_SetThreadPrivate(LockStackTPI, this);
}
nsAutoLockBase::~nsAutoLockBase()
{
(void) PR_SetThreadPrivate(LockStackTPI, mDown);
}
#endif /* DEBUG */
PRMonitor* nsAutoMonitor::NewMonitor(const char* name)
{
PRMonitor* mon = PR_NewMonitor();
#ifdef DEBUG
if (mon && OrderTable) {
1999-09-18 03:21:29 +04:00
nsNamedVector* value = new nsNamedVector(name);
if (value) {
PR_Lock(OrderTableLock);
1999-09-06 23:16:25 +04:00
PL_HashTableAdd(OrderTable, mon, value);
1999-09-18 03:21:29 +04:00
PR_Unlock(OrderTableLock);
}
1999-09-06 23:16:25 +04:00
}
#endif
return mon;
}
void nsAutoMonitor::DestroyMonitor(PRMonitor* mon)
{
#ifdef DEBUG
if (OrderTable)
1999-09-18 03:21:29 +04:00
OnMonitorRecycle(mon);
1999-09-06 23:16:25 +04:00
#endif
PR_DestroyMonitor(mon);
}
void nsAutoMonitor::Enter()
{
#ifdef DEBUG
nsAutoLockBase* stackTop =
(nsAutoLockBase*) PR_GetThreadPrivate(LockStackTPI);
NS_ASSERTION(stackTop == mDown, "non-LIFO nsAutoMonitor::Enter");
mDown = stackTop;
(void) PR_SetThreadPrivate(LockStackTPI, this);
#endif
PR_EnterMonitor(mMonitor);
}
void nsAutoMonitor::Exit()
{
#ifdef DEBUG
(void) PR_SetThreadPrivate(LockStackTPI, mDown);
#endif
PRStatus status = PR_ExitMonitor(mMonitor);
NS_ASSERTION(status == PR_SUCCESS, "PR_ExitMonitor failed");
}
// XXX we don't worry about cached monitors being destroyed behind our back.
// XXX current NSPR (mozilla/nsprpub/pr/src/threads/prcmon.c) never destroys
// XXX a cached monitor! potential resource pig in conjunction with necko...
void nsAutoCMonitor::Enter()
{
#ifdef DEBUG
nsAutoLockBase* stackTop =
(nsAutoLockBase*) PR_GetThreadPrivate(LockStackTPI);
NS_ASSERTION(stackTop == mDown, "non-LIFO nsAutoCMonitor::Enter");
mDown = stackTop;
(void) PR_SetThreadPrivate(LockStackTPI, this);
#endif
PR_CEnterMonitor(mLockObject);
}
void nsAutoCMonitor::Exit()
{
#ifdef DEBUG
(void) PR_SetThreadPrivate(LockStackTPI, mDown);
#endif
PRStatus status = PR_CExitMonitor(mLockObject);
NS_ASSERTION(status == PR_SUCCESS, "PR_CExitMonitor failed");
}