refact code

This commit is contained in:
yihaoDeng 2024-08-01 09:08:04 +08:00 committed by wangjiaming0909
parent 3c0114362b
commit e063a8092c
2 changed files with 12 additions and 7 deletions

View File

@ -225,6 +225,7 @@ int32_t asyncSendMsgToServerExt(void* pTransporter, SEpSet* epSet, int64_t* pTra
.code = 0
};
TRACE_SET_ROOTID(&rpcMsg.info.traceId, pInfo->requestId);
int code = rpcSendRequestWithCtx(pTransporter, epSet, &rpcMsg, pTransporterId, rpcCtx);
if (code) {
destroySendMsgInfo(pInfo);
@ -448,13 +449,13 @@ void parseTagDatatoJson(void* p, char** jsonStr) {
if (value == NULL) {
goto end;
}
if(!cJSON_AddItemToObject(json, tagJsonKey, value)){
if (!cJSON_AddItemToObject(json, tagJsonKey, value)) {
goto end;
}
} else if (type == TSDB_DATA_TYPE_NCHAR) {
cJSON* value = NULL;
if (pTagVal->nData > 0) {
char* tagJsonValue = taosMemoryCalloc(pTagVal->nData, 1);
char* tagJsonValue = taosMemoryCalloc(pTagVal->nData, 1);
if (tagJsonValue == NULL) {
goto end;
}
@ -479,7 +480,7 @@ void parseTagDatatoJson(void* p, char** jsonStr) {
goto end;
}
if(!cJSON_AddItemToObject(json, tagJsonKey, value)){
if (!cJSON_AddItemToObject(json, tagJsonKey, value)) {
goto end;
}
} else if (type == TSDB_DATA_TYPE_DOUBLE) {
@ -488,7 +489,7 @@ void parseTagDatatoJson(void* p, char** jsonStr) {
if (value == NULL) {
goto end;
}
if(!cJSON_AddItemToObject(json, tagJsonKey, value)){
if (!cJSON_AddItemToObject(json, tagJsonKey, value)) {
goto end;
}
} else if (type == TSDB_DATA_TYPE_BOOL) {
@ -497,7 +498,7 @@ void parseTagDatatoJson(void* p, char** jsonStr) {
if (value == NULL) {
goto end;
}
if(!cJSON_AddItemToObject(json, tagJsonKey, value)){
if (!cJSON_AddItemToObject(json, tagJsonKey, value)) {
goto end;
}
} else {

View File

@ -167,7 +167,11 @@ int32_t rpcSendRequest(void* shandle, const SEpSet* pEpSet, SRpcMsg* pMsg, int64
return transSendRequest(shandle, pEpSet, pMsg, NULL);
}
int32_t rpcSendRequestWithCtx(void* shandle, const SEpSet* pEpSet, SRpcMsg* pMsg, int64_t* pRid, SRpcCtx* pCtx) {
return transSendRequest(shandle, pEpSet, pMsg, pCtx);
if (pCtx != NULL) {
return transSendRequest(shandle, pEpSet, pMsg, pCtx);
} else {
return transSendRequestWithId(shandle, pEpSet, pMsg, pRid);
}
}
int32_t rpcSendRequestWithId(void* shandle, const SEpSet* pEpSet, STransMsg* pReq, int64_t* transpointId) {
@ -178,7 +182,7 @@ int32_t rpcSendRecv(void* shandle, SEpSet* pEpSet, SRpcMsg* pMsg, SRpcMsg* pRsp)
return transSendRecv(shandle, pEpSet, pMsg, pRsp);
}
int32_t rpcSendRecvWithTimeout(void* shandle, SEpSet* pEpSet, SRpcMsg* pMsg, SRpcMsg* pRsp, int8_t* epUpdated,
int32_t timeoutMs) {
int32_t timeoutMs) {
return transSendRecvWithTimeout(shandle, pEpSet, pMsg, pRsp, epUpdated, timeoutMs);
}
int32_t rpcFreeConnById(void* shandle, int64_t connId) { return transFreeConnById(shandle, connId); }