ref
This commit is contained in:
parent
f680976d64
commit
7747ab2324
|
@ -14,8 +14,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _TD_UTIL_REF_H
|
||||
#define _TD_UTIL_REF_H
|
||||
#ifndef _TD_UTIL_REF_H_
|
||||
#define _TD_UTIL_REF_H_
|
||||
|
||||
#include "os.h"
|
||||
|
||||
|
@ -25,40 +25,40 @@ extern "C" {
|
|||
|
||||
// open a reference set, max is the mod used by hash, fp is the pointer to free resource function
|
||||
// return rsetId which will be used by other APIs. On error, -1 is returned, and terrno is set appropriately
|
||||
int taosOpenRef(int max, void (*fp)(void *));
|
||||
int32_t taosOpenRef(int32_t max, void (*fp)(void *));
|
||||
|
||||
// close the reference set, refId is the return value by taosOpenRef
|
||||
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
|
||||
int taosCloseRef(int refId);
|
||||
int32_t taosCloseRef(int32_t refId);
|
||||
|
||||
// add ref, p is the pointer to resource or pointer ID
|
||||
// return Reference ID(rid) allocated. On error, -1 is returned, and terrno is set appropriately
|
||||
int64_t taosAddRef(int refId, void *p);
|
||||
int64_t taosAddRef(int32_t refId, void *p);
|
||||
|
||||
// remove ref, rid is the reference ID returned by taosAddRef
|
||||
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
|
||||
int taosRemoveRef(int rsetId, int64_t rid);
|
||||
int32_t taosRemoveRef(int32_t rsetId, int64_t rid);
|
||||
|
||||
// acquire ref, rid is the reference ID returned by taosAddRef
|
||||
// return the resource p. On error, NULL is returned, and terrno is set appropriately
|
||||
void *taosAcquireRef(int rsetId, int64_t rid);
|
||||
void *taosAcquireRef(int32_t rsetId, int64_t rid);
|
||||
|
||||
// release ref, rid is the reference ID returned by taosAddRef
|
||||
// return 0 if success. On error, -1 is returned, and terrno is set appropriately
|
||||
int taosReleaseRef(int rsetId, int64_t rid);
|
||||
int32_t taosReleaseRef(int32_t rsetId, int64_t rid);
|
||||
|
||||
// return the first reference if rid is 0, otherwise return the next after current reference.
|
||||
// if return value is NULL, it means list is over(if terrno is set, it means error happens)
|
||||
void *taosIterateRef(int rsetId, int64_t rid);
|
||||
void *taosIterateRef(int32_t rsetId, int64_t rid);
|
||||
|
||||
// return the number of references in system
|
||||
int taosListRef();
|
||||
int32_t taosListRef();
|
||||
|
||||
#define RID_VALID(x) ((x) > 0)
|
||||
|
||||
/* sample code to iterate the refs
|
||||
|
||||
void demoIterateRefs(int rsetId) {
|
||||
void demoIterateRefs(int32_t rsetId) {
|
||||
|
||||
void *p = taosIterateRef(refId, 0);
|
||||
while (p) {
|
||||
|
@ -76,4 +76,4 @@ void demoIterateRefs(int rsetId) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /*_TD_UTIL_REF_H*/
|
||||
#endif /*_TD_UTIL_REF_H_*/
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "os.h"
|
||||
|
||||
#define _DEFAULT_SOURCE
|
||||
#include "tref.h"
|
||||
#include "taoserror.h"
|
||||
#include "tlog.h"
|
||||
#include "tutil.h"
|
||||
|
@ -30,15 +30,15 @@ typedef struct SRefNode {
|
|||
void *p; // pointer to resource protected,
|
||||
int64_t rid; // reference ID
|
||||
int32_t count; // number of references
|
||||
int removed; // 1: removed
|
||||
int32_t removed; // 1: removed
|
||||
} SRefNode;
|
||||
|
||||
typedef struct {
|
||||
SRefNode **nodeList; // array of SRefNode linked list
|
||||
int state; // 0: empty, 1: active; 2: deleted
|
||||
int rsetId; // refSet ID, global unique
|
||||
int32_t state; // 0: empty, 1: active; 2: deleted
|
||||
int32_t rsetId; // refSet ID, global unique
|
||||
int64_t rid; // increase by one for each new reference
|
||||
int max; // mod
|
||||
int32_t max; // mod
|
||||
int32_t count; // total number of SRefNodes in this set
|
||||
int64_t *lockedBy;
|
||||
void (*fp)(void *);
|
||||
|
@ -47,22 +47,21 @@ typedef struct {
|
|||
static SRefSet tsRefSetList[TSDB_REF_OBJECTS];
|
||||
static pthread_once_t tsRefModuleInit = PTHREAD_ONCE_INIT;
|
||||
static pthread_mutex_t tsRefMutex;
|
||||
static int tsRefSetNum = 0;
|
||||
static int tsNextId = 0;
|
||||
static int32_t tsRefSetNum = 0;
|
||||
static int32_t tsNextId = 0;
|
||||
|
||||
static void taosInitRefModule(void);
|
||||
static void taosLockList(int64_t *lockedBy);
|
||||
static void taosUnlockList(int64_t *lockedBy);
|
||||
static void taosIncRsetCount(SRefSet *pSet);
|
||||
static void taosDecRsetCount(SRefSet *pSet);
|
||||
static int taosDecRefCount(int rsetId, int64_t rid, int remove);
|
||||
static int32_t taosDecRefCount(int32_t rsetId, int64_t rid, int32_t remove);
|
||||
|
||||
int taosOpenRef(int max, void (*fp)(void *))
|
||||
{
|
||||
int32_t taosOpenRef(int32_t max, void (*fp)(void *)) {
|
||||
SRefNode **nodeList;
|
||||
SRefSet *pSet;
|
||||
int64_t *lockedBy;
|
||||
int i, rsetId;
|
||||
int32_t i, rsetId;
|
||||
|
||||
pthread_once(&tsRefModuleInit, taosInitRefModule);
|
||||
|
||||
|
@ -113,10 +112,9 @@ int taosOpenRef(int max, void (*fp)(void *))
|
|||
return rsetId;
|
||||
}
|
||||
|
||||
int taosCloseRef(int rsetId)
|
||||
{
|
||||
int32_t taosCloseRef(int32_t rsetId) {
|
||||
SRefSet *pSet;
|
||||
int deleted = 0;
|
||||
int32_t deleted = 0;
|
||||
|
||||
if (rsetId < 0 || rsetId >= TSDB_REF_OBJECTS) {
|
||||
uTrace("rsetId:%d is invalid, out of range", rsetId);
|
||||
|
@ -143,9 +141,8 @@ int taosCloseRef(int rsetId)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int64_t taosAddRef(int rsetId, void *p)
|
||||
{
|
||||
int hash;
|
||||
int64_t taosAddRef(int32_t rsetId, void *p) {
|
||||
int32_t hash;
|
||||
SRefNode *pNode;
|
||||
SRefSet *pSet;
|
||||
int64_t rid = 0;
|
||||
|
@ -191,15 +188,11 @@ int64_t taosAddRef(int rsetId, void *p)
|
|||
return rid;
|
||||
}
|
||||
|
||||
int taosRemoveRef(int rsetId, int64_t rid)
|
||||
{
|
||||
return taosDecRefCount(rsetId, rid, 1);
|
||||
}
|
||||
int32_t taosRemoveRef(int32_t rsetId, int64_t rid) { return taosDecRefCount(rsetId, rid, 1); }
|
||||
|
||||
// if rid is 0, return the first p in hash list, otherwise, return the next after current rid
|
||||
void *taosAcquireRef(int rsetId, int64_t rid)
|
||||
{
|
||||
int hash;
|
||||
void *taosAcquireRef(int32_t rsetId, int64_t rid) {
|
||||
int32_t hash;
|
||||
SRefNode *pNode;
|
||||
SRefSet *pSet;
|
||||
void *p = NULL;
|
||||
|
@ -259,13 +252,10 @@ void *taosAcquireRef(int rsetId, int64_t rid)
|
|||
return p;
|
||||
}
|
||||
|
||||
int taosReleaseRef(int rsetId, int64_t rid)
|
||||
{
|
||||
return taosDecRefCount(rsetId, rid, 0);
|
||||
}
|
||||
int32_t taosReleaseRef(int32_t rsetId, int64_t rid) { return taosDecRefCount(rsetId, rid, 0); }
|
||||
|
||||
// if rid is 0, return the first p in hash list, otherwise, return the next after current rid
|
||||
void *taosIterateRef(int rsetId, int64_t rid) {
|
||||
void *taosIterateRef(int32_t rsetId, int64_t rid) {
|
||||
SRefNode *pNode = NULL;
|
||||
SRefSet *pSet;
|
||||
|
||||
|
@ -293,7 +283,7 @@ void *taosIterateRef(int rsetId, int64_t rid) {
|
|||
|
||||
do {
|
||||
newP = NULL;
|
||||
int hash = 0;
|
||||
int32_t hash = 0;
|
||||
if (rid > 0) {
|
||||
hash = rid % pSet->max;
|
||||
taosLockList(pSet->lockedBy + hash);
|
||||
|
@ -359,22 +349,21 @@ void *taosIterateRef(int rsetId, int64_t rid) {
|
|||
return newP;
|
||||
}
|
||||
|
||||
int taosListRef() {
|
||||
int32_t taosListRef() {
|
||||
SRefSet *pSet;
|
||||
SRefNode *pNode;
|
||||
int num = 0;
|
||||
int32_t num = 0;
|
||||
|
||||
pthread_mutex_lock(&tsRefMutex);
|
||||
|
||||
for (int i = 0; i < TSDB_REF_OBJECTS; ++i) {
|
||||
for (int32_t i = 0; i < TSDB_REF_OBJECTS; ++i) {
|
||||
pSet = tsRefSetList + i;
|
||||
|
||||
if (pSet->state == TSDB_REF_STATE_EMPTY)
|
||||
continue;
|
||||
if (pSet->state == TSDB_REF_STATE_EMPTY) continue;
|
||||
|
||||
uInfo("rsetId:%d state:%d count::%d", i, pSet->state, pSet->count);
|
||||
|
||||
for (int j=0; j < pSet->max; ++j) {
|
||||
for (int32_t j = 0; j < pSet->max; ++j) {
|
||||
pNode = pSet->nodeList[j];
|
||||
|
||||
while (pNode) {
|
||||
|
@ -390,12 +379,12 @@ int taosListRef() {
|
|||
return num;
|
||||
}
|
||||
|
||||
static int taosDecRefCount(int rsetId, int64_t rid, int remove) {
|
||||
int hash;
|
||||
static int32_t taosDecRefCount(int32_t rsetId, int64_t rid, int32_t remove) {
|
||||
int32_t hash;
|
||||
SRefSet *pSet;
|
||||
SRefNode *pNode;
|
||||
int released = 0;
|
||||
int code = 0;
|
||||
int32_t released = 0;
|
||||
int32_t code = 0;
|
||||
|
||||
if (rsetId < 0 || rsetId >= TSDB_REF_OBJECTS) {
|
||||
uTrace("rsetId:%d rid:%" PRId64 " failed to remove, rsetId not valid", rsetId, rid);
|
||||
|
@ -421,8 +410,7 @@ static int taosDecRefCount(int rsetId, int64_t rid, int remove) {
|
|||
|
||||
pNode = pSet->nodeList[hash];
|
||||
while (pNode) {
|
||||
if (pNode->rid == rid)
|
||||
break;
|
||||
if (pNode->rid == rid) break;
|
||||
|
||||
pNode = pNode->next;
|
||||
}
|
||||
|
@ -454,7 +442,8 @@ static int taosDecRefCount(int rsetId, int64_t rid, int remove) {
|
|||
taosUnlockList(pSet->lockedBy + hash);
|
||||
|
||||
if (released) {
|
||||
uTrace("rsetId:%d p:%p rid:%" PRId64 " is removed, count:%d, free mem: %p", rsetId, pNode->p, rid, pSet->count, pNode);
|
||||
uTrace("rsetId:%d p:%p rid:%" PRId64 " is removed, count:%d, free mem: %p", rsetId, pNode->p, rid, pSet->count,
|
||||
pNode);
|
||||
(*pSet->fp)(pNode->p);
|
||||
free(pNode);
|
||||
|
||||
|
@ -466,7 +455,7 @@ static int taosDecRefCount(int rsetId, int64_t rid, int remove) {
|
|||
|
||||
static void taosLockList(int64_t *lockedBy) {
|
||||
int64_t tid = taosGetSelfPthreadId();
|
||||
int i = 0;
|
||||
int32_t i = 0;
|
||||
while (atomic_val_compare_exchange_64(lockedBy, 0, tid) != 0) {
|
||||
if (++i % 100 == 0) {
|
||||
sched_yield();
|
||||
|
@ -481,9 +470,7 @@ static void taosUnlockList(int64_t *lockedBy) {
|
|||
}
|
||||
}
|
||||
|
||||
static void taosInitRefModule(void) {
|
||||
pthread_mutex_init(&tsRefMutex, NULL);
|
||||
}
|
||||
static void taosInitRefModule(void) { pthread_mutex_init(&tsRefMutex, NULL); }
|
||||
|
||||
static void taosIncRsetCount(SRefSet *pSet) {
|
||||
atomic_add_fetch_32(&pSet->count, 1);
|
||||
|
@ -512,4 +499,3 @@ static void taosDecRsetCount(SRefSet *pSet) {
|
|||
|
||||
pthread_mutex_unlock(&tsRefMutex);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue