提交 7259a356 编写于 作者: dengyihao's avatar dengyihao

enh: refactor trans free ctx

上级 1ea2eec5
...@@ -89,19 +89,18 @@ typedef struct SRpcInit { ...@@ -89,19 +89,18 @@ typedef struct SRpcInit {
typedef struct { typedef struct {
void *val; void *val;
int32_t (*clone)(void *src, void **dst); int32_t (*clone)(void *src, void **dst);
void (*freeFunc)(const void *arg);
} SRpcCtxVal; } SRpcCtxVal;
typedef struct { typedef struct {
int32_t msgType; int32_t msgType;
void * val; void * val;
int32_t (*clone)(void *src, void **dst); int32_t (*clone)(void *src, void **dst);
void (*freeFunc)(const void *arg);
} SRpcBrokenlinkVal; } SRpcBrokenlinkVal;
typedef struct { typedef struct {
SHashObj * args; SHashObj * args;
SRpcBrokenlinkVal brokenVal; SRpcBrokenlinkVal brokenVal;
void (*freeFunc)(const void *arg);
} SRpcCtx; } SRpcCtx;
int32_t rpcInit(); int32_t rpcInit();
......
...@@ -131,6 +131,19 @@ static void destroyThrdObj(SCliThrdObj* pThrd); ...@@ -131,6 +131,19 @@ static void destroyThrdObj(SCliThrdObj* pThrd);
static void cliWalkCb(uv_handle_t* handle, void* arg); static void cliWalkCb(uv_handle_t* handle, void* arg);
static void cliReleaseUnfinishedMsg(SCliConn* conn) {
SCliMsg* pMsg = NULL;
for (int i = 0; i < transQueueSize(&conn->cliMsgs); i++) {
pMsg = transQueueGet(&conn->cliMsgs, i);
if (pMsg != NULL && pMsg->ctx != NULL) {
if (conn->ctx.freeFunc != NULL) {
conn->ctx.freeFunc(pMsg->ctx->ahandle);
}
}
destroyCmsg(pMsg);
}
}
#define CLI_RELEASE_UV(loop) \ #define CLI_RELEASE_UV(loop) \
do { \ do { \
uv_walk(loop, cliWalkCb, NULL); \ uv_walk(loop, cliWalkCb, NULL); \
...@@ -161,6 +174,7 @@ static void cliWalkCb(uv_handle_t* handle, void* arg); ...@@ -161,6 +174,7 @@ static void cliWalkCb(uv_handle_t* handle, void* arg);
transUnrefCliHandle(conn); \ transUnrefCliHandle(conn); \
} \ } \
destroyCmsg(pMsg); \ destroyCmsg(pMsg); \
cliReleaseUnfinishedMsg(conn); \
addConnToPool(((SCliThrdObj*)conn->hostThrd)->pool, conn); \ addConnToPool(((SCliThrdObj*)conn->hostThrd)->pool, conn); \
return; \ return; \
} \ } \
...@@ -465,8 +479,8 @@ static void addConnToPool(void* pool, SCliConn* conn) { ...@@ -465,8 +479,8 @@ static void addConnToPool(void* pool, SCliConn* conn) {
STrans* pTransInst = ((SCliThrdObj*)conn->hostThrd)->pTransInst; STrans* pTransInst = ((SCliThrdObj*)conn->hostThrd)->pTransInst;
conn->expireTime = taosGetTimestampMs() + CONN_PERSIST_TIME(pTransInst->idleTime); conn->expireTime = taosGetTimestampMs() + CONN_PERSIST_TIME(pTransInst->idleTime);
transCtxCleanup(&conn->ctx);
transQueueClear(&conn->cliMsgs); transQueueClear(&conn->cliMsgs);
transCtxCleanup(&conn->ctx);
conn->status = ConnInPool; conn->status = ConnInPool;
char key[128] = {0}; char key[128] = {0};
......
...@@ -233,7 +233,7 @@ void transCtxCleanup(STransCtx* ctx) { ...@@ -233,7 +233,7 @@ void transCtxCleanup(STransCtx* ctx) {
STransCtxVal* iter = taosHashIterate(ctx->args, NULL); STransCtxVal* iter = taosHashIterate(ctx->args, NULL);
while (iter) { while (iter) {
iter->freeFunc(iter->val); ctx->freeFunc(iter->val);
iter = taosHashIterate(ctx->args, iter); iter = taosHashIterate(ctx->args, iter);
} }
...@@ -257,7 +257,7 @@ void transCtxMerge(STransCtx* dst, STransCtx* src) { ...@@ -257,7 +257,7 @@ void transCtxMerge(STransCtx* dst, STransCtx* src) {
STransCtxVal* dVal = taosHashGet(dst->args, key, klen); STransCtxVal* dVal = taosHashGet(dst->args, key, klen);
if (dVal) { if (dVal) {
dVal->freeFunc(dVal->val); dst->freeFunc(dVal->val);
} }
taosHashPut(dst->args, key, klen, sVal, sizeof(*sVal)); taosHashPut(dst->args, key, klen, sVal, sizeof(*sVal));
iter = taosHashIterate(src->args, iter); iter = taosHashIterate(src->args, iter);
......
...@@ -156,80 +156,80 @@ int32_t cloneVal(void *src, void **dst) { ...@@ -156,80 +156,80 @@ int32_t cloneVal(void *src, void **dst) {
memcpy(*dst, src, sz); memcpy(*dst, src, sz);
return 0; return 0;
} }
TEST_F(TransCtxEnv, mergeTest) { // TEST_F(TransCtxEnv, mergeTest) {
int key = 1; // int key = 1;
{ // {
STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx)); // STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx));
transCtxInit(src); // transCtxInit(src);
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryMalloc(12); // val1.val = taosMemoryMalloc(12);
//
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryMalloc(12); // val1.val = taosMemoryMalloc(12);
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
transCtxMerge(ctx, src); // transCtxMerge(ctx, src);
taosMemoryFree(src); // taosMemoryFree(src);
} // }
EXPECT_EQ(2, taosHashGetSize(ctx->args)); // EXPECT_EQ(2, taosHashGetSize(ctx->args));
{ // {
STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx)); // STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx));
transCtxInit(src); // transCtxInit(src);
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryMalloc(12); // val1.val = taosMemoryMalloc(12);
//
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryMalloc(12); // val1.val = taosMemoryMalloc(12);
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
transCtxMerge(ctx, src); // transCtxMerge(ctx, src);
taosMemoryFree(src); // taosMemoryFree(src);
} // }
std::string val("Hello"); // std::string val("Hello");
EXPECT_EQ(4, taosHashGetSize(ctx->args)); // EXPECT_EQ(4, taosHashGetSize(ctx->args));
{ // {
key = 1; // key = 1;
STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx)); // STransCtx *src = (STransCtx *)taosMemoryCalloc(1, sizeof(STransCtx));
transCtxInit(src); // transCtxInit(src);
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryCalloc(1, 11); // val1.val = taosMemoryCalloc(1, 11);
val1.clone = cloneVal; // val1.clone = cloneVal;
memcpy(val1.val, val.c_str(), val.size()); // memcpy(val1.val, val.c_str(), val.size());
//
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
{ // {
STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree}; // STransCtxVal val1 = {NULL, NULL, (void (*)(const void *))taosMemoryFree};
val1.val = taosMemoryCalloc(1, 11); // val1.val = taosMemoryCalloc(1, 11);
val1.clone = cloneVal; // val1.clone = cloneVal;
memcpy(val1.val, val.c_str(), val.size()); // memcpy(val1.val, val.c_str(), val.size());
taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1)); // taosHashPut(src->args, &key, sizeof(key), &val1, sizeof(val1));
key++; // key++;
} // }
transCtxMerge(ctx, src); // transCtxMerge(ctx, src);
taosMemoryFree(src); // taosMemoryFree(src);
} // }
EXPECT_EQ(4, taosHashGetSize(ctx->args)); // EXPECT_EQ(4, taosHashGetSize(ctx->args));
//
char *skey = (char *)transCtxDumpVal(ctx, 1); // char *skey = (char *)transCtxDumpVal(ctx, 1);
EXPECT_EQ(0, strcmp(skey, val.c_str())); // EXPECT_EQ(0, strcmp(skey, val.c_str()));
taosMemoryFree(skey); // taosMemoryFree(skey);
//
skey = (char *)transCtxDumpVal(ctx, 2); // skey = (char *)transCtxDumpVal(ctx, 2);
EXPECT_EQ(0, strcmp(skey, val.c_str())); // EXPECT_EQ(0, strcmp(skey, val.c_str()));
} //}
#endif #endif
...@@ -892,7 +892,7 @@ uint32_t taosGetIpv4FromFqdn(const char *fqdn) { ...@@ -892,7 +892,7 @@ uint32_t taosGetIpv4FromFqdn(const char *fqdn) {
int iResult; int iResult;
iResult = WSAStartup(MAKEWORD(2, 2), &wsaData); iResult = WSAStartup(MAKEWORD(2, 2), &wsaData);
if (iResult != 0) { if (iResult != 0) {
printf("WSAStartup failed: %d\n", iResult); // printf("WSAStartup failed: %d\n", iResult);
return 1; return 1;
} }
#endif #endif
...@@ -913,12 +913,12 @@ uint32_t taosGetIpv4FromFqdn(const char *fqdn) { ...@@ -913,12 +913,12 @@ uint32_t taosGetIpv4FromFqdn(const char *fqdn) {
} else { } else {
#ifdef EAI_SYSTEM #ifdef EAI_SYSTEM
if (ret == EAI_SYSTEM) { if (ret == EAI_SYSTEM) {
printf("failed to get the ip address, fqdn:%s, errno:%d, since:%s", fqdn, errno, strerror(errno)); // printf("failed to get the ip address, fqdn:%s, errno:%d, since:%s", fqdn, errno, strerror(errno));
} else { } else {
printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret)); // printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret));
} }
#else #else
printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret)); // printf("failed to get the ip address, fqdn:%s, ret:%d, since:%s", fqdn, ret, gai_strerror(ret));
#endif #endif
return 0xFFFFFFFF; return 0xFFFFFFFF;
} }
...@@ -928,7 +928,7 @@ int32_t taosGetFqdn(char *fqdn) { ...@@ -928,7 +928,7 @@ int32_t taosGetFqdn(char *fqdn) {
char hostname[1024]; char hostname[1024];
hostname[1023] = '\0'; hostname[1023] = '\0';
if (gethostname(hostname, 1023) == -1) { if (gethostname(hostname, 1023) == -1) {
printf("failed to get hostname, reason:%s", strerror(errno)); // printf("failed to get hostname, reason:%s", strerror(errno));
assert(0); assert(0);
return -1; return -1;
} }
...@@ -946,7 +946,7 @@ int32_t taosGetFqdn(char *fqdn) { ...@@ -946,7 +946,7 @@ int32_t taosGetFqdn(char *fqdn) {
#endif // __APPLE__ #endif // __APPLE__
int32_t ret = getaddrinfo(hostname, NULL, &hints, &result); int32_t ret = getaddrinfo(hostname, NULL, &hints, &result);
if (!result) { if (!result) {
printf("failed to get fqdn, code:%d, reason:%s", ret, gai_strerror(ret)); // printf("failed to get fqdn, code:%d, reason:%s", ret, gai_strerror(ret));
assert(0); assert(0);
return -1; return -1;
} }
...@@ -993,9 +993,7 @@ void tinet_ntoa(char *ipstr, uint32_t ip) { ...@@ -993,9 +993,7 @@ void tinet_ntoa(char *ipstr, uint32_t ip) {
sprintf(ipstr, "%d.%d.%d.%d", ip & 0xFF, (ip >> 8) & 0xFF, (ip >> 16) & 0xFF, ip >> 24); sprintf(ipstr, "%d.%d.%d.%d", ip & 0xFF, (ip >> 8) & 0xFF, (ip >> 16) & 0xFF, ip >> 24);
} }
void taosIgnSIGPIPE() { void taosIgnSIGPIPE() { signal(SIGPIPE, SIG_IGN); }
signal(SIGPIPE, SIG_IGN);
}
void taosSetMaskSIGPIPE() { void taosSetMaskSIGPIPE() {
#ifdef WINDOWS #ifdef WINDOWS
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册