refact code
This commit is contained in:
parent
3c0114362b
commit
e063a8092c
|
@ -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,7 +449,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_NCHAR) {
|
||||
|
@ -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 {
|
||||
|
|
|
@ -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) {
|
||||
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) {
|
||||
|
|
Loading…
Reference in New Issue