streamInc.h 2.2 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

L
Liu Jicong 已提交
16 17 18
#ifndef _STREAM_INC_H_
#define _STREAM_INC_H_

dengyihao's avatar
dengyihao 已提交
19
#include "executor.h"
dengyihao's avatar
dengyihao 已提交
20
#include "query.h"
L
Liu Jicong 已提交
21 22
#include "tstream.h"

dengyihao's avatar
dengyihao 已提交
23 24
#include "trpc.h"

L
Liu Jicong 已提交
25 26 27 28
#ifdef __cplusplus
extern "C" {
#endif

29
typedef struct {
30 31
  int8_t inited;
  void*  timer;
32 33
} SStreamGlobalEnv;

34
extern SStreamGlobalEnv streamEnv;
35

36
void    streamRetryDispatchStreamBlock(SStreamTask* pTask, int64_t waitDuration);
37 38 39
int32_t streamDispatchStreamBlock(SStreamTask* pTask);

SStreamDataBlock* createStreamDataFromDispatchMsg(const SStreamDispatchReq* pReq, int32_t blockType, int32_t srcVg);
dengyihao's avatar
dengyihao 已提交
40 41 42
SStreamDataBlock* createStreamBlockFromResults(SStreamQueueItem* pItem, SStreamTask* pTask, int64_t resultSize,
                                               SArray* pRes);
void              destroyStreamDataBlock(SStreamDataBlock* pBlock);
43

L
Liu Jicong 已提交
44 45 46 47 48
int32_t streamRetrieveReqToData(const SStreamRetrieveReq* pReq, SStreamDataBlock* pData);
int32_t streamBroadcastToChildren(SStreamTask* pTask, const SSDataBlock* pBlock);

int32_t tEncodeStreamRetrieveReq(SEncoder* pEncoder, const SStreamRetrieveReq* pReq);

49
int32_t streamDispatchAllBlocks(SStreamTask* pTask, const SStreamDataBlock* pData);
50
int32_t streamDispatchCheckMsg(SStreamTask* pTask, const SStreamTaskCheckReq* pReq, int32_t nodeId, SEpSet* pEpSet);
51

52
int32_t streamDoDispatchScanHistoryFinishMsg(SStreamTask* pTask, const SStreamRecoverFinishReq* pReq, int32_t vgId,
L
Liu Jicong 已提交
53 54
                                          SEpSet* pEpSet);

55
SStreamQueueItem* streamMergeQueueItem(SStreamQueueItem* dst, SStreamQueueItem* pElem);
L
Liu Jicong 已提交
56

dengyihao's avatar
dengyihao 已提交
57 58
extern int32_t streamBackendId;

L
Liu Jicong 已提交
59 60 61 62
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
63
#endif /* ifndef _STREAM_INC_H_ */