2021-11-09 06:27:17 +00:00
|
|
|
/*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-11-30 07:28:51 +00:00
|
|
|
#ifndef _TD_MND_TRANS_H_
|
|
|
|
|
#define _TD_MND_TRANS_H_
|
2021-11-09 06:27:17 +00:00
|
|
|
|
2021-11-27 14:56:18 +00:00
|
|
|
#include "mndInt.h"
|
2021-11-09 06:27:17 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-12-20 03:51:18 +00:00
|
|
|
typedef struct {
|
|
|
|
|
SEpSet epSet;
|
2021-12-24 09:35:39 +00:00
|
|
|
tmsg_t msgType;
|
2021-12-20 11:44:12 +00:00
|
|
|
int8_t msgSent;
|
|
|
|
|
int8_t msgReceived;
|
|
|
|
|
int32_t errCode;
|
2021-12-20 03:51:18 +00:00
|
|
|
int32_t contLen;
|
|
|
|
|
void *pCont;
|
|
|
|
|
} STransAction;
|
|
|
|
|
|
2021-11-29 05:29:13 +00:00
|
|
|
int32_t mndInitTrans(SMnode *pMnode);
|
|
|
|
|
void mndCleanupTrans(SMnode *pMnode);
|
2021-11-09 06:27:17 +00:00
|
|
|
|
2021-12-25 06:09:23 +00:00
|
|
|
STrans *mndTransCreate(SMnode *pMnode, ETrnPolicy policy, SRpcMsg *pMsg);
|
2021-11-29 08:02:37 +00:00
|
|
|
void mndTransDrop(STrans *pTrans);
|
|
|
|
|
int32_t mndTransAppendRedolog(STrans *pTrans, SSdbRaw *pRaw);
|
|
|
|
|
int32_t mndTransAppendUndolog(STrans *pTrans, SSdbRaw *pRaw);
|
|
|
|
|
int32_t mndTransAppendCommitlog(STrans *pTrans, SSdbRaw *pRaw);
|
2021-12-20 03:51:18 +00:00
|
|
|
int32_t mndTransAppendRedoAction(STrans *pTrans, STransAction *pAction);
|
|
|
|
|
int32_t mndTransAppendUndoAction(STrans *pTrans, STransAction *pAction);
|
2021-12-20 11:44:12 +00:00
|
|
|
|
2021-12-14 09:13:18 +00:00
|
|
|
int32_t mndTransPrepare(SMnode *pMnode, STrans *pTrans);
|
2021-12-26 15:46:22 +00:00
|
|
|
void mndTransProcessRsp(SMnodeMsg *pMsg);
|
2021-11-29 08:02:37 +00:00
|
|
|
|
2021-11-09 06:27:17 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-11-30 07:28:51 +00:00
|
|
|
#endif /*_TD_MND_TRANS_H_*/
|