2021-09-24 10:05:56 +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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _TD_EXECUTOR_H_
|
|
|
|
|
#define _TD_EXECUTOR_H_
|
|
|
|
|
|
2025-05-09 02:03:35 +00:00
|
|
|
#include <stdint.h>
|
2025-05-14 09:41:51 +00:00
|
|
|
#include "tarray.h"
|
2021-09-24 10:05:56 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-03-10 11:05:58 +00:00
|
|
|
#include "query.h"
|
2025-04-28 11:21:47 +00:00
|
|
|
#include "storageapi.h"
|
2022-03-29 07:24:25 +00:00
|
|
|
#include "tcommon.h"
|
2022-05-07 12:19:40 +00:00
|
|
|
#include "tmsgcb.h"
|
2025-04-29 07:31:17 +00:00
|
|
|
#include "storageapi.h"
|
|
|
|
|
#include "functionMgt.h"
|
2022-01-18 06:12:25 +00:00
|
|
|
|
2022-01-08 08:28:44 +00:00
|
|
|
typedef void* qTaskInfo_t;
|
2022-01-11 02:51:23 +00:00
|
|
|
typedef void* DataSinkHandle;
|
2023-04-08 17:39:09 +00:00
|
|
|
|
2022-01-25 07:18:56 +00:00
|
|
|
struct SRpcMsg;
|
2022-01-11 02:51:23 +00:00
|
|
|
struct SSubplan;
|
|
|
|
|
|
2024-11-05 02:57:44 +00:00
|
|
|
typedef int32_t (*localFetchFp)(void*, uint64_t, uint64_t, uint64_t, uint64_t, int64_t, int32_t, void**, SArray*);
|
2022-09-09 11:03:42 +00:00
|
|
|
|
|
|
|
|
typedef struct {
|
2022-09-28 02:38:49 +00:00
|
|
|
void* handle;
|
2022-09-15 08:30:21 +00:00
|
|
|
bool localExec;
|
2022-09-09 11:03:42 +00:00
|
|
|
localFetchFp fp;
|
2022-09-28 02:38:49 +00:00
|
|
|
SArray* explainRes;
|
2022-09-09 11:03:42 +00:00
|
|
|
} SLocalFetch;
|
|
|
|
|
|
2022-08-23 11:25:17 +00:00
|
|
|
typedef struct {
|
2023-07-13 02:16:57 +00:00
|
|
|
void* tqReader; // todo remove it
|
2023-07-12 03:38:13 +00:00
|
|
|
void* vnode;
|
|
|
|
|
void* mnd;
|
|
|
|
|
SMsgCb* pMsgCb;
|
|
|
|
|
int64_t version;
|
2023-07-13 02:16:57 +00:00
|
|
|
uint64_t checkpointId;
|
2023-07-12 03:38:13 +00:00
|
|
|
bool initTableReader;
|
|
|
|
|
bool initTqReader;
|
2023-11-07 11:59:05 +00:00
|
|
|
bool skipRollup;
|
2023-07-12 03:38:13 +00:00
|
|
|
int32_t numOfVgroups;
|
|
|
|
|
void* sContext; // SSnapContext*
|
|
|
|
|
void* pStateBackend;
|
2025-03-14 12:14:01 +00:00
|
|
|
void* pOtherBackend;
|
2023-07-12 03:38:13 +00:00
|
|
|
int8_t fillHistory;
|
|
|
|
|
STimeWindow winRange;
|
2025-05-13 02:53:39 +00:00
|
|
|
bool winRangeValid;
|
2022-08-04 07:01:59 +00:00
|
|
|
|
2023-05-23 10:29:23 +00:00
|
|
|
struct SStorageAPI api;
|
2024-06-24 10:28:56 +00:00
|
|
|
void* pWorkerCb;
|
2024-11-15 02:16:15 +00:00
|
|
|
bool localExec;
|
2022-01-28 02:44:02 +00:00
|
|
|
} SReadHandle;
|
2022-02-17 10:37:43 +00:00
|
|
|
|
2025-05-08 06:58:41 +00:00
|
|
|
typedef struct SStreamInserterParam {
|
2025-05-09 09:05:56 +00:00
|
|
|
SArray* pFields; // SArray<SFieldWithOptions>
|
2025-05-14 09:41:51 +00:00
|
|
|
SArray* pTagFields; // SArray<SFieldWithOptions>
|
|
|
|
|
SArray* pTagVals; // SArray<STagVal>
|
2025-05-09 09:05:56 +00:00
|
|
|
int64_t suid;
|
|
|
|
|
int32_t sver;
|
|
|
|
|
char* tbname;
|
2025-05-14 09:41:51 +00:00
|
|
|
char* stbname;
|
2025-05-09 09:05:56 +00:00
|
|
|
int8_t tbType;
|
|
|
|
|
char* dbFName;
|
|
|
|
|
void* pSinkHandle;
|
|
|
|
|
int32_t vgid;
|
|
|
|
|
STSchema* pSchema;
|
2025-05-08 06:58:41 +00:00
|
|
|
} SStreamInserterParam;
|
|
|
|
|
|
2025-04-29 07:31:17 +00:00
|
|
|
typedef struct {
|
|
|
|
|
SStreamRuntimeFuncInfo funcInfo;
|
|
|
|
|
int32_t execId;
|
|
|
|
|
bool resetFlag;
|
|
|
|
|
const SArray* pForceOutputCols;
|
2025-05-08 06:58:41 +00:00
|
|
|
SStreamInserterParam inserterParams;
|
2025-04-29 07:31:17 +00:00
|
|
|
} SStreamRuntimeInfo;
|
|
|
|
|
|
2022-07-12 06:10:22 +00:00
|
|
|
// in queue mode, data streams are seperated by msg
|
2022-03-30 06:54:00 +00:00
|
|
|
typedef enum {
|
2022-05-18 08:13:58 +00:00
|
|
|
OPTR_EXEC_MODEL_BATCH = 0x1,
|
2022-03-30 06:54:00 +00:00
|
|
|
OPTR_EXEC_MODEL_STREAM = 0x2,
|
2022-07-12 06:10:22 +00:00
|
|
|
OPTR_EXEC_MODEL_QUEUE = 0x3,
|
2022-03-30 06:54:00 +00:00
|
|
|
} EOPTR_EXEC_MODEL;
|
|
|
|
|
|
2022-03-22 10:00:03 +00:00
|
|
|
/**
|
2022-07-12 06:10:22 +00:00
|
|
|
* Create the exec task for stream mode
|
2022-03-22 10:00:03 +00:00
|
|
|
* @param pMsg
|
2022-07-12 06:10:22 +00:00
|
|
|
* @param SReadHandle
|
2023-03-19 02:49:30 +00:00
|
|
|
* @param vgId
|
2022-03-22 10:00:03 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2025-05-08 06:58:41 +00:00
|
|
|
int32_t qCreateStreamExecTaskInfo(qTaskInfo_t* pInfo, void* msg, SReadHandle* readers, SStreamInserterParam* pInsertParams, int32_t vgId, int32_t taskId);
|
2022-01-21 06:21:13 +00:00
|
|
|
|
2022-06-23 05:35:24 +00:00
|
|
|
/**
|
2022-07-12 06:10:22 +00:00
|
|
|
* Create the exec task for queue mode
|
|
|
|
|
* @param pMsg
|
|
|
|
|
* @param SReadHandle
|
2022-06-23 05:35:24 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2023-04-04 06:50:58 +00:00
|
|
|
qTaskInfo_t qCreateQueueExecTaskInfo(void* msg, SReadHandle* pReaderHandle, int32_t vgId, int32_t* numOfCols,
|
|
|
|
|
uint64_t id);
|
2022-06-23 05:35:24 +00:00
|
|
|
|
2025-05-10 10:34:01 +00:00
|
|
|
int32_t qGetColumnsFromNodeList(void* data, bool isList, SArray** pColList);
|
|
|
|
|
SSDataBlock* createDataBlockFromDescNode(void* pNode);
|
2025-05-10 13:22:11 +00:00
|
|
|
void printDataBlock(SSDataBlock* pBlock, const char* flag, const char* taskIdStr);
|
2025-05-10 10:34:01 +00:00
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
int32_t qGetTableList(int64_t suid, void* pVnode, void* node, SArray** tableList, void* pTaskInfo);
|
2023-05-24 10:26:55 +00:00
|
|
|
|
2023-03-19 11:06:28 +00:00
|
|
|
/**
|
|
|
|
|
* set the task Id, usually used by message queue process
|
|
|
|
|
* @param tinfo
|
|
|
|
|
* @param taskId
|
|
|
|
|
* @param queryId
|
|
|
|
|
*/
|
2024-09-13 15:04:41 +00:00
|
|
|
int32_t qSetTaskId(qTaskInfo_t tinfo, uint64_t taskId, uint64_t queryId);
|
2022-06-23 05:35:24 +00:00
|
|
|
|
2022-10-27 03:06:16 +00:00
|
|
|
/**
|
|
|
|
|
* Set block for sma
|
|
|
|
|
* @param tinfo
|
|
|
|
|
* @param pBlocks
|
|
|
|
|
* @param numOfInputBlock
|
|
|
|
|
* @param type
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
int32_t qSetSMAInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type);
|
|
|
|
|
|
2022-02-17 10:37:43 +00:00
|
|
|
/**
|
|
|
|
|
* Update the table id list, add or remove.
|
|
|
|
|
*
|
|
|
|
|
* @param tinfo
|
|
|
|
|
* @param id
|
|
|
|
|
* @param isAdd
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2023-04-14 04:00:09 +00:00
|
|
|
int32_t qUpdateTableListForStreamScanner(qTaskInfo_t tinfo, const SArray* tableIdList, bool isAdd);
|
2022-02-17 10:37:43 +00:00
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
bool qIsDynamicExecTask(qTaskInfo_t tinfo);
|
2023-07-05 11:24:06 +00:00
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
void qDestroyOperatorParam(SOperatorParam* pParam);
|
2025-03-19 09:15:17 +00:00
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
void qUpdateOperatorParam(qTaskInfo_t tinfo, void* pParam);
|
2023-07-06 02:52:28 +00:00
|
|
|
|
2022-03-22 10:00:03 +00:00
|
|
|
/**
|
|
|
|
|
* Create the exec task object according to task json
|
|
|
|
|
* @param readHandle
|
|
|
|
|
* @param vgId
|
|
|
|
|
* @param pTaskInfoMsg
|
|
|
|
|
* @param pTaskInfo
|
|
|
|
|
* @param qId
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2024-06-04 07:07:02 +00:00
|
|
|
int32_t qCreateExecTask(SReadHandle* readHandle, int32_t vgId, uint64_t taskId, struct SSubplan* pSubplan,
|
|
|
|
|
qTaskInfo_t* pTaskInfo, DataSinkHandle* handle, int8_t compressResult, char* sql,
|
|
|
|
|
EOPTR_EXEC_MODEL model);
|
2021-10-06 15:34:38 +00:00
|
|
|
|
2022-05-18 12:39:00 +00:00
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* @param tinfo
|
|
|
|
|
* @param sversion
|
|
|
|
|
* @param tversion
|
2025-05-10 02:34:54 +00:00
|
|
|
* @param rversion
|
2022-05-18 12:39:00 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2024-10-25 05:47:09 +00:00
|
|
|
int32_t qGetQueryTableSchemaVersion(qTaskInfo_t tinfo, char* dbName, int32_t dbNameBuffLen, char* tableName,
|
2025-05-10 02:34:54 +00:00
|
|
|
int32_t tbaleNameBuffLen, int32_t* sversion, int32_t* tversion, int32_t* rversion,
|
|
|
|
|
int32_t idx, bool* tbGet);
|
2022-05-18 12:39:00 +00:00
|
|
|
|
2021-10-06 15:34:38 +00:00
|
|
|
/**
|
2022-01-11 02:51:23 +00:00
|
|
|
* The main task execution function, including query on both table and multiple tables,
|
2021-10-06 15:34:38 +00:00
|
|
|
* which are decided according to the tag or table name query conditions
|
|
|
|
|
*
|
2022-01-11 02:51:23 +00:00
|
|
|
* @param tinfo
|
|
|
|
|
* @param handle
|
2021-10-06 15:34:38 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2025-04-28 11:21:47 +00:00
|
|
|
int32_t qExecTaskOpt(qTaskInfo_t tinfo, SArray* pResList, uint64_t* useconds, bool* hasMore, SLocalFetch* pLocal,
|
|
|
|
|
bool processOneBlock);
|
2022-11-27 06:57:44 +00:00
|
|
|
|
2022-08-09 05:55:51 +00:00
|
|
|
int32_t qExecTask(qTaskInfo_t tinfo, SSDataBlock** pBlock, uint64_t* useconds);
|
2021-10-06 15:34:38 +00:00
|
|
|
|
2024-07-02 11:25:33 +00:00
|
|
|
int32_t qExecutorInit(void);
|
2025-04-28 11:21:47 +00:00
|
|
|
void qResetTaskCode(qTaskInfo_t tinfo);
|
2024-07-02 11:25:33 +00:00
|
|
|
|
2022-11-27 06:57:44 +00:00
|
|
|
void qCleanExecTaskBlockBuf(qTaskInfo_t tinfo);
|
|
|
|
|
|
2022-01-20 11:34:46 +00:00
|
|
|
/**
|
|
|
|
|
* kill the ongoing query asynchronously
|
2022-01-21 07:16:17 +00:00
|
|
|
* @param tinfo qhandle
|
2022-01-20 11:34:46 +00:00
|
|
|
* @return
|
|
|
|
|
*/
|
2022-11-29 08:17:05 +00:00
|
|
|
int32_t qAsyncKillTask(qTaskInfo_t tinfo, int32_t rspCode);
|
2023-04-08 17:39:09 +00:00
|
|
|
|
2025-02-17 02:06:09 +00:00
|
|
|
int32_t qKillTask(qTaskInfo_t tinfo, int32_t rspCode, int64_t waitDuration);
|
2022-01-20 11:34:46 +00:00
|
|
|
|
2023-01-03 10:07:18 +00:00
|
|
|
bool qTaskIsExecuting(qTaskInfo_t qinfo);
|
|
|
|
|
|
2021-10-06 15:34:38 +00:00
|
|
|
/**
|
|
|
|
|
* destroy query info structure
|
|
|
|
|
* @param qHandle
|
|
|
|
|
*/
|
2022-01-21 07:16:17 +00:00
|
|
|
void qDestroyTask(qTaskInfo_t tinfo);
|
2021-10-06 15:34:38 +00:00
|
|
|
|
2022-07-06 08:29:51 +00:00
|
|
|
void qProcessRspMsg(void* parent, struct SRpcMsg* pMsg, struct SEpSet* pEpSet);
|
2022-01-25 07:18:56 +00:00
|
|
|
|
2023-11-03 01:30:50 +00:00
|
|
|
int32_t qGetExplainExecInfo(qTaskInfo_t tinfo, SArray* pExecInfoList);
|
2022-06-17 12:09:49 +00:00
|
|
|
|
2024-12-03 11:25:30 +00:00
|
|
|
TSKEY getNextTimeWindowStart(const SInterval* pInterval, TSKEY start, int32_t order);
|
|
|
|
|
void getNextTimeWindow(const SInterval* pInterval, STimeWindow* tw, int32_t order);
|
|
|
|
|
void getInitialStartTimeWindow(SInterval* pInterval, TSKEY ts, STimeWindow* w, bool ascQuery);
|
2023-02-17 10:31:32 +00:00
|
|
|
STimeWindow getAlignQueryTimeWindow(const SInterval* pInterval, int64_t key);
|
2022-06-29 08:19:19 +00:00
|
|
|
|
2023-04-08 17:39:09 +00:00
|
|
|
SArray* qGetQueriedTableListInfo(qTaskInfo_t tinfo);
|
2022-07-08 09:48:34 +00:00
|
|
|
|
2022-08-04 07:01:59 +00:00
|
|
|
int32_t qStreamPrepareScan(qTaskInfo_t tinfo, STqOffsetVal* pOffset, int8_t subType);
|
2022-07-08 09:48:34 +00:00
|
|
|
|
2023-04-03 11:54:52 +00:00
|
|
|
void qStreamSetOpen(qTaskInfo_t tinfo);
|
|
|
|
|
|
2024-02-05 09:07:50 +00:00
|
|
|
void qStreamSetSourceExcluded(qTaskInfo_t tinfo, int8_t sourceExcluded);
|
|
|
|
|
|
2024-07-29 02:29:40 +00:00
|
|
|
int32_t qStreamExtractOffset(qTaskInfo_t tinfo, STqOffsetVal* pOffset);
|
2022-07-08 09:48:34 +00:00
|
|
|
|
2024-05-23 09:35:54 +00:00
|
|
|
SMqBatchMetaRsp* qStreamExtractMetaMsg(qTaskInfo_t tinfo);
|
2022-06-30 06:41:50 +00:00
|
|
|
|
2022-08-09 11:06:24 +00:00
|
|
|
const SSchemaWrapper* qExtractSchemaFromTask(qTaskInfo_t tinfo);
|
|
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
const char* qExtractTbnameFromTask(qTaskInfo_t tinfo);
|
2022-08-09 11:06:24 +00:00
|
|
|
|
2022-07-13 08:37:33 +00:00
|
|
|
void* qExtractReaderFromStreamScanner(void* scanner);
|
2025-03-14 12:14:01 +00:00
|
|
|
void qExtractStreamScanner(qTaskInfo_t tinfo, void** scanner);
|
2022-07-07 09:16:12 +00:00
|
|
|
|
2025-04-28 11:21:47 +00:00
|
|
|
int32_t qSetStreamOperatorOptionForScanHistory(qTaskInfo_t tinfo);
|
|
|
|
|
int32_t qStreamSourceScanParamForHistoryScanStep1(qTaskInfo_t tinfo, SVersionRange* pVerRange, STimeWindow* pWindow);
|
|
|
|
|
int32_t qStreamSourceScanParamForHistoryScanStep2(qTaskInfo_t tinfo, SVersionRange* pVerRange, STimeWindow* pWindow);
|
|
|
|
|
int32_t qStreamRecoverFinish(qTaskInfo_t tinfo);
|
|
|
|
|
bool qStreamScanhistoryFinished(qTaskInfo_t tinfo);
|
|
|
|
|
int32_t qStreamInfoResetTimewindowFilter(qTaskInfo_t tinfo);
|
|
|
|
|
int32_t qGetStreamIntervalExecInfo(qTaskInfo_t tinfo, int64_t* pWaterMark, SInterval* pInterval,
|
|
|
|
|
STimeWindow* pLastWindow, TSKEY* pRecInteral);
|
|
|
|
|
int32_t qStreamOperatorReleaseState(qTaskInfo_t tInfo);
|
|
|
|
|
int32_t qStreamOperatorReloadState(qTaskInfo_t tInfo);
|
|
|
|
|
int32_t streamCollectExprsForReplace(qTaskInfo_t tInfo, SArray* pExprs);
|
|
|
|
|
int32_t streamClearStatesForOperators(qTaskInfo_t tInfo);
|
2025-05-13 05:46:12 +00:00
|
|
|
int32_t streamExecuteTask(qTaskInfo_t tInfo, SSDataBlock** ppBlock, uint64_t* ts, bool* finished);
|
2025-04-28 11:21:47 +00:00
|
|
|
void streamDestroyExecTask(qTaskInfo_t tInfo);
|
|
|
|
|
int32_t qStreamCreateTableListForReader(void* pVnode, uint64_t suid, uint64_t uid, int8_t tableType,
|
|
|
|
|
SNodeList* pGroupTags, bool groupSort, SNode* pTagCond, SNode* pTagIndexCond,
|
2025-05-15 02:03:57 +00:00
|
|
|
SStorageAPI* storageAPI, void** pTableListInfo, SHashObj* groupIdMap);
|
2025-04-28 11:21:47 +00:00
|
|
|
int32_t qStreamGetTableList(void* pTableListInfo, int32_t currentGroupId, STableKeyInfo** pKeyInfo, int32_t* size);
|
2025-04-28 06:37:05 +00:00
|
|
|
uint64_t qStreamGetGroupId(void* pTableListInfo, int64_t uid);
|
2025-04-28 11:21:47 +00:00
|
|
|
void qStreamDestroyTableList(void* pTableListInfo);
|
|
|
|
|
int32_t qStreamGetTableListGroupNum(const void* pTableList);
|
|
|
|
|
int32_t qStreamGetGroupIndex(void* pTableListInfo, int64_t gid);
|
|
|
|
|
int32_t qStreamFilter(SSDataBlock* pBlock, void* pFilterInfo);
|
|
|
|
|
bool qStreamUidInTableList(void* pTableListInfo, uint64_t uid);
|
|
|
|
|
void initStorageAPI(SStorageAPI* pAPI);
|
2025-04-24 01:11:54 +00:00
|
|
|
|
2025-04-29 07:31:17 +00:00
|
|
|
int32_t streamCalcOutputTbName(SNode *pExpr, char *tbname, const SStreamRuntimeFuncInfo *pPartColVals);
|
|
|
|
|
void streamSetTaskRuntimeInfo(qTaskInfo_t tinfo, SStreamRuntimeInfo* pRuntimeInfo);
|
|
|
|
|
|
2025-05-08 01:48:53 +00:00
|
|
|
typedef void (*getMnodeEpset_f)(void *pDnode, SEpSet *pEpset);
|
|
|
|
|
typedef int32_t (*getDnodeId_f)(void *pData);
|
|
|
|
|
typedef void (*taskUndeplyCallback)(void*);
|
|
|
|
|
|
|
|
|
|
typedef struct SGlobalExecInfo {
|
|
|
|
|
void* dnode;
|
|
|
|
|
int32_t dnodeId;
|
|
|
|
|
int32_t snodeId;
|
|
|
|
|
getMnodeEpset_f getMnode;
|
|
|
|
|
getDnodeId_f getDnodeId;
|
|
|
|
|
|
|
|
|
|
} SGlobalExecInfo;
|
|
|
|
|
|
|
|
|
|
extern SGlobalExecInfo gExecInfo;
|
|
|
|
|
|
|
|
|
|
void gExecInfoInit(void* pDnode, getDnodeId_f getDnodeId, getMnodeEpset_f getMnode);
|
|
|
|
|
int32_t getCurrentMnodeEpset(SEpSet* pEpSet);
|
2025-05-08 15:00:37 +00:00
|
|
|
int32_t cloneStreamInserterParam(SStreamInserterParam** pDst, SStreamInserterParam* pSrc);
|
|
|
|
|
void destoryStreamInserterParam(SStreamInserterParam* pParam);
|
2025-05-08 01:48:53 +00:00
|
|
|
|
2021-09-24 10:05:56 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-01-21 05:45:24 +00:00
|
|
|
#endif /*_TD_EXECUTOR_H_*/
|