refactor(sync): syncUtilJson2Line
This commit is contained in:
parent
2547e8d02e
commit
77cd6f44f4
|
@ -61,6 +61,7 @@ bool syncUtilIsData(tmsg_t msgType);
|
|||
bool syncUtilUserPreCommit(tmsg_t msgType);
|
||||
bool syncUtilUserCommit(tmsg_t msgType);
|
||||
bool syncUtilUserRollback(tmsg_t msgType);
|
||||
void syncUtilJson2Line(char* jsonStr);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -438,7 +438,8 @@ int32_t syncNodeOnSnapshotSendCb(SSyncNode *pSyncNode, SyncSnapshotSend *pMsg) {
|
|||
needRsp = true;
|
||||
|
||||
char *msgStr = syncSnapshotSend2Str(pMsg);
|
||||
sTrace("snapshot recv begin ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
sTrace("snapshot recv begin ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex,
|
||||
pMsg->lastTerm, msgStr);
|
||||
taosMemoryFree(msgStr);
|
||||
|
||||
} else if (pMsg->seq == SYNC_SNAPSHOT_SEQ_END) {
|
||||
|
@ -450,7 +451,10 @@ int32_t syncNodeOnSnapshotSendCb(SSyncNode *pSyncNode, SyncSnapshotSend *pMsg) {
|
|||
char * logSimpleStr = logStoreSimple2Str(pSyncNode->pLogStore);
|
||||
SSnapshot snapshot;
|
||||
pSyncNode->pFsm->FpGetSnapshot(pSyncNode->pFsm, &snapshot);
|
||||
sInfo("snapshot recv finish, update log begin index:%ld, snapshot.lastApplyIndex:%ld, snapshot.lastApplyTerm:%lu, raft log:%s", pMsg->lastIndex + 1, snapshot.lastApplyIndex, snapshot.lastApplyTerm, logSimpleStr);
|
||||
sInfo(
|
||||
"snapshot recv finish, update log begin index:%ld, snapshot.lastApplyIndex:%ld, "
|
||||
"snapshot.lastApplyTerm:%lu, raft log:%s",
|
||||
pMsg->lastIndex + 1, snapshot.lastApplyIndex, snapshot.lastApplyTerm, logSimpleStr);
|
||||
taosMemoryFree(logSimpleStr);
|
||||
|
||||
// walRestoreFromSnapshot(pSyncNode->pWal, pMsg->lastIndex);
|
||||
|
@ -462,7 +466,8 @@ int32_t syncNodeOnSnapshotSendCb(SSyncNode *pSyncNode, SyncSnapshotSend *pMsg) {
|
|||
needRsp = true;
|
||||
|
||||
char *msgStr = syncSnapshotSend2Str(pMsg);
|
||||
sTrace("snapshot recv end ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
sTrace("snapshot recv end ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex,
|
||||
pMsg->lastTerm, msgStr);
|
||||
taosMemoryFree(msgStr);
|
||||
|
||||
} else if (pMsg->seq == SYNC_SNAPSHOT_SEQ_FORCE_CLOSE) {
|
||||
|
@ -471,8 +476,8 @@ int32_t syncNodeOnSnapshotSendCb(SSyncNode *pSyncNode, SyncSnapshotSend *pMsg) {
|
|||
needRsp = false;
|
||||
|
||||
char *msgStr = syncSnapshotSend2Str(pMsg);
|
||||
sTrace("snapshot recv force close ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
|
||||
sTrace("snapshot recv force close ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack,
|
||||
pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
|
||||
taosMemoryFree(msgStr);
|
||||
|
||||
|
@ -485,7 +490,8 @@ int32_t syncNodeOnSnapshotSendCb(SSyncNode *pSyncNode, SyncSnapshotSend *pMsg) {
|
|||
needRsp = true;
|
||||
|
||||
char *msgStr = syncSnapshotSend2Str(pMsg);
|
||||
sTrace("snapshot recv receiving ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack, pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
sTrace("snapshot recv receiving ack:%d, lastIndex:%ld, lastTerm:%lu, recv msg:%s", pReceiver->ack,
|
||||
pMsg->lastIndex, pMsg->lastTerm, msgStr);
|
||||
taosMemoryFree(msgStr);
|
||||
|
||||
} else {
|
||||
|
|
|
@ -241,3 +241,25 @@ bool syncUtilUserRollback(tmsg_t msgType) {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void syncUtilJson2Line(char* jsonStr) {
|
||||
int p, q, len;
|
||||
p = 0;
|
||||
q = 1;
|
||||
len = strlen(jsonStr);
|
||||
while (1) {
|
||||
if (jsonStr[q] == '\0') {
|
||||
jsonStr[p + 1] = '\0';
|
||||
break;
|
||||
}
|
||||
|
||||
if (jsonStr[q] == '\n' || jsonStr[q] == ' ' || jsonStr[q] == '\t') {
|
||||
q++;
|
||||
continue;
|
||||
} else {
|
||||
jsonStr[p + 1] = jsonStr[q];
|
||||
p++;
|
||||
q++;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -78,6 +78,26 @@ void test5() {
|
|||
syncTimeoutDestroy(pMsg2);
|
||||
}
|
||||
|
||||
void test6() {
|
||||
SyncTimeout *pMsg = createMsg();
|
||||
char * jsonStr = syncTimeout2Str(pMsg);
|
||||
sTrace("jsonStr: %s", jsonStr);
|
||||
|
||||
syncUtilJson2Line(jsonStr);
|
||||
sTrace("jsonStr: %s", jsonStr);
|
||||
|
||||
char str[10];
|
||||
snprintf(str, sizeof(str), "%s", "{}");
|
||||
sTrace("str: %s", str);
|
||||
syncUtilJson2Line(str);
|
||||
sTrace("str: %s", str);
|
||||
|
||||
snprintf(str, sizeof(str), "%s", "");
|
||||
sTrace("str: %s", str);
|
||||
syncUtilJson2Line(str);
|
||||
sTrace("str: %s", str);
|
||||
}
|
||||
|
||||
int main() {
|
||||
tsAsyncLog = 0;
|
||||
sDebugFlag = DEBUG_TRACE + DEBUG_SCREEN + DEBUG_FILE;
|
||||
|
@ -88,6 +108,7 @@ int main() {
|
|||
test3();
|
||||
test4();
|
||||
test5();
|
||||
test6();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue