提交 49e85525 编写于 作者: dengyihao's avatar dengyihao

add trace base func

上级 418be575
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TD_TRACE_H_
#define _TD_TRACE_H_
#include <stdlib.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef int64_t STraceId;
typedef int32_t STraceSubId;
STraceId traceInitId(STraceSubId *h, STraceSubId *l);
void traceId2Str(STraceId *id, char *buf);
void traceSetSubId(STraceId *id, int32_t *subId);
STraceSubId traceGetParentId(STraceId *id);
STraceSubId traceGenSubId();
#ifdef __cplusplus
}
#endif
#endif
...@@ -56,7 +56,7 @@ typedef struct SHashEntry { ...@@ -56,7 +56,7 @@ typedef struct SHashEntry {
} SHashEntry; } SHashEntry;
struct SHashObj { struct SHashObj {
SHashEntry **hashList; SHashEntry ** hashList;
size_t capacity; // number of slots size_t capacity; // number of slots
int64_t size; // number of elements in hash table int64_t size; // number of elements in hash table
_hash_fn_t hashFp; // hash function _hash_fn_t hashFp; // hash function
...@@ -65,7 +65,7 @@ struct SHashObj { ...@@ -65,7 +65,7 @@ struct SHashObj {
SRWLatch lock; // read-write spin lock SRWLatch lock; // read-write spin lock
SHashLockTypeE type; // lock type SHashLockTypeE type; // lock type
bool enableUpdate; // enable update bool enableUpdate; // enable update
SArray *pMemBlock; // memory block allocated for SHashEntry SArray * pMemBlock; // memory block allocated for SHashEntry
_hash_before_fn_t callbackFp; // function invoked before return the value to caller _hash_before_fn_t callbackFp; // function invoked before return the value to caller
}; };
...@@ -633,7 +633,7 @@ void taosHashTableResize(SHashObj *pHashObj) { ...@@ -633,7 +633,7 @@ void taosHashTableResize(SHashObj *pHashObj) {
} }
int64_t st = taosGetTimestampUs(); int64_t st = taosGetTimestampUs();
void *pNewEntryList = taosMemoryRealloc(pHashObj->hashList, sizeof(void *) * newCapacity); void * pNewEntryList = taosMemoryRealloc(pHashObj->hashList, sizeof(void *) * newCapacity);
if (pNewEntryList == NULL) { if (pNewEntryList == NULL) {
// uDebug("cache resize failed due to out of memory, capacity remain:%zu", pHashObj->capacity); // uDebug("cache resize failed due to out of memory, capacity remain:%zu", pHashObj->capacity);
return; return;
...@@ -642,7 +642,7 @@ void taosHashTableResize(SHashObj *pHashObj) { ...@@ -642,7 +642,7 @@ void taosHashTableResize(SHashObj *pHashObj) {
pHashObj->hashList = pNewEntryList; pHashObj->hashList = pNewEntryList;
size_t inc = newCapacity - pHashObj->capacity; size_t inc = newCapacity - pHashObj->capacity;
void *p = taosMemoryCalloc(inc, sizeof(SHashEntry)); void * p = taosMemoryCalloc(inc, sizeof(SHashEntry));
for (int32_t i = 0; i < inc; ++i) { for (int32_t i = 0; i < inc; ++i) {
pHashObj->hashList[i + pHashObj->capacity] = (void *)((char *)p + i * sizeof(SHashEntry)); pHashObj->hashList[i + pHashObj->capacity] = (void *)((char *)p + i * sizeof(SHashEntry));
...@@ -653,9 +653,9 @@ void taosHashTableResize(SHashObj *pHashObj) { ...@@ -653,9 +653,9 @@ void taosHashTableResize(SHashObj *pHashObj) {
pHashObj->capacity = newCapacity; pHashObj->capacity = newCapacity;
for (int32_t idx = 0; idx < pHashObj->capacity; ++idx) { for (int32_t idx = 0; idx < pHashObj->capacity; ++idx) {
SHashEntry *pe = pHashObj->hashList[idx]; SHashEntry *pe = pHashObj->hashList[idx];
SHashNode *pNode; SHashNode * pNode;
SHashNode *pNext; SHashNode * pNext;
SHashNode *pPrev = NULL; SHashNode * pPrev = NULL;
if (pe->num == 0) { if (pe->num == 0) {
assert(pe->next == NULL); assert(pe->next == NULL);
......
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "ttrace.h"
#include "taos.h"
#include "thash.h"
#include "tuuid.h"
// clang-format off
static TdThreadOnce init = PTHREAD_ONCE_INIT;
static void * ids = NULL;
static TdThreadMutex mtx;
void traceInit() {
ids = taosHashInit(4096, taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT), true, HASH_ENTRY_LOCK);
taosThreadMutexInit(&mtx, NULL);
}
void traceCreateEnv() {
taosThreadOnce(&init, traceInit);
}
void traceDestroyEnv() {
taosThreadMutexDestroy(&mtx);
taosHashCleanup(ids);
}
STraceId traceInitId(STraceSubId *h, STraceSubId *l) {
STraceId id = *h;
id = ((id << 32) & 0xFFFFFFFF) | ((*l) & 0xFFFFFFFF);
return id;
}
void traceId2Str(STraceId *id, char *buf) {
int32_t f = (*id >> 32) & 0xFFFFFFFF;
int32_t s = (*id) & 0xFFFFFFFF;
sprintf(buf, "%d:%d", f, s);
}
void traceSetSubId(STraceId *id, STraceSubId *subId) {
int32_t parent = ((*id >> 32) & 0xFFFFFFFF);
taosThreadMutexLock(&mtx);
taosHashPut(ids, subId, sizeof(*subId), &parent, sizeof(parent));
taosThreadMutexUnlock(&mtx);
}
STraceSubId traceGetParentId(STraceId *id) {
int32_t parent = ((*id >> 32) & 0xFFFFFFFF);
taosThreadMutexLock(&mtx);
STraceSubId *p = taosHashGet(ids, (void *)&parent, sizeof(parent));
parent = *p;
taosThreadMutexUnlock(&mtx);
return parent;
}
STraceSubId traceGenSubId() {
return tGenIdPI32();
}
// clang-format on
...@@ -49,7 +49,7 @@ int64_t tGenIdPI64(void) { ...@@ -49,7 +49,7 @@ int64_t tGenIdPI64(void) {
} }
int64_t id; int64_t id;
while (true) { while (true) {
int64_t ts = taosGetTimestampMs(); int64_t ts = taosGetTimestampMs();
uint64_t pid = taosGetPId(); uint64_t pid = taosGetPId();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册